diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-30 07:11:46 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-30 07:11:46 +0000 |
| commit | 05a0ec1de7339049e6e41684efe86e92a8e62f00 (patch) | |
| tree | 411a98c392c9ea489c2305127d45af66061828eb | |
| parent | 6ae4a3f8c51706364b85936f7b001abdc3768db5 (diff) | |
| download | baldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.tar.gz baldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.tar.xz baldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.zip | |
Adding metadata
862 files changed, 6324 insertions, 10234 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index c4fcb2b4bca4..3aea945bba4b 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -6,3 +6,4 @@ DIST aws-cli-1.44.78.gh.tar.gz 3113712 BLAKE2B 058bb5fd747eec76a6713f7171f6dd280 DIST aws-cli-1.44.81.gh.tar.gz 3117732 BLAKE2B f23eae79b632a8d0ff142cd856bb97aa563c56ac4748f5473b23f3af05310f37fe94d2c89e1b748917c0b5969ad4112acb4dc3493752541e536462e08cf932b1 SHA512 fac30c729b9133caf0f03745e8c2a1b7b1168f00f132026ec0c709aa4e3332dec723a59639caa39c50acdd563d6de01d74bc8082b770477d6f2c9c7b31de6e2a DIST aws-cli-1.44.86.gh.tar.gz 3124407 BLAKE2B 035d024aae7f582b2fba521c886753ec5b9aeed5c21d1207b45d3706174d68be340b5ed0b1835e12ed575b0ccbf05dd216930738e77bd3730593e91ffdb8fbae SHA512 03bbf772caa3f8a445538b8c7a04c217b2458b9def1803826511c1ca906f3e6a4525d074f81e92825e675a8414b85e11be447764b83e4339b1a648b8a611df57 DIST aws-cli-1.44.87.gh.tar.gz 3127113 BLAKE2B 78681375801285547fc0e904f08b3dfa009e582e3eac93b921d3f2931c2a03045d50c0767e771f4c92427e333fa47b2ba66768cb32daf31b0f277e45eba11838 SHA512 3fb799b23b56c1684747302200f4dd2017d5f9923552e8315ae9849f6b14eb86b1eb17becd7130a2ee06ab1e8ef48929b41f5c721eb16e73dc184f6d76de4631 +DIST aws-cli-1.45.0.gh.tar.gz 3127389 BLAKE2B d91694b44d6abbab486fce9905e52743fbcd8d1040b856c4e00d44c1aa3c041fe0daf03d03c8160643155aae583fb6fadc8eaad90c11524b072bd54ac6f2e02d SHA512 1293204f4d34d77ed75599b427bd03e6b8403d75cfb57da29c3fcb667377f2bc0a71e082e2ba6404464da6de1bd10598450ea77e93b741715f0f887d9966228c diff --git a/app-admin/awscli/awscli-1.45.0.ebuild b/app-admin/awscli/awscli-1.45.0.ebuild new file mode 100644 index 000000000000..dc405c3516fe --- /dev/null +++ b/app-admin/awscli/awscli-1.45.0.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)" +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.17.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-arch/rar/Manifest b/app-arch/rar/Manifest index be1c84616874..8aeabcd58e57 100644 --- a/app-arch/rar/Manifest +++ b/app-arch/rar/Manifest @@ -1,5 +1,7 @@ DIST rarlinux-x32-701.tar.gz 739420 BLAKE2B 9550c74d2f9a5bbd821fc2d313a1aa3fdca1f88675056e42507e9b40f7c456e20e0834149e6a925abc88d04aa23d5ccecb0f6efa7ba2d21629f030531b9e84d2 SHA512 2d8488106ed8ed5a67a1de114414a7fe58ab8a139b4f5fd78d5f334e59339e192d51574e3d36fdc7e5d4068cc9e33ec03e4ef6c0907193b407167c616f1ab357 DIST rarlinux-x64-701.tar.gz 730436 BLAKE2B 271b18f636250876adf924752298e283922c87d1ea71084ebd4263f5c8db189b093faf0b66362db781ad0fd9c6154a9a3a1e7d013c7c6cee56ad8fd7fb772fa7 SHA512 3effdc32f5dbad414d4a434b4ec430c0dc29fd6a758036395712f61c588067547c3919025545d27e9a7fef6ba8de1773f2dd9a7e20dfa2178b2b9f9bd2440ff9 DIST rarlinux-x64-720.tar.gz 745894 BLAKE2B 3e9f9eba90ef4a13ba9321ec795af2deb903ee177af1c13ee8931335a9e68746cc496ad0337360de4f8e7d5a683532b5adb8e6ee855e5491da6d965e6c60b161 SHA512 1d3816156ee08ecf286f853b2d3d5b7cd0008e3ed05e228bd94c92a409ede4cd8388883a52b9e00c3c54496720ff507ebc6c29d8a4aa106f3a9f65cb7298f435 +DIST rarlinux-x64-721.tar.gz 746658 BLAKE2B e2daa5f72eb4be1fb87bcde195d33a588dd66b40e8a665db006785f4b87acab65837631b6dc71be23c8c2ae272582c50a29c3ff05620545aecdec77468597953 SHA512 f198a0868448aef33a1cdc318397b14c360895ebcf4d8beee1df10c5788fb0127d8560713099b02c938c4ce911446abf445a3d31e205aabaf119fc485f31cfc3 DIST winrar-x64-701.exe 3912088 BLAKE2B 46d379c51d6c2eba1b632c3f4e6f56529a0218db3cf4d4a4e52de08103d1de15dd6974c5375885dd19d1a29279f664d6df49056f57c71d8d3858bb0266d4eb99 SHA512 61daee2ce82c3b8e79f7598a79d72e337220ced7607e3ed878a3059ac03257542147dbd377e902cc95f04324e2fb7c5e07d1410f0a1815d5a05c5320e5715ef6 DIST winrar-x64-720.exe 3771504 BLAKE2B 1a6b82ea4eb54d7dff52f744f499424ff9af634226fbaa2e7454545bbfc09afda6d23797f326a7f519090005d17aa644a7bbec9b086cbb02b37d06146f945d35 SHA512 24e2565a3f74369125838f59b07a9a3441a8b83dcd40c16358ef54419f4ae239f9df3e5b05e84e08ef390c1b879f215e63a427719753663ab7a627e81d042231 +DIST winrar-x64-721.exe 3770368 BLAKE2B 2dd264b58de43a3fac5352184bbd7eb3e78cca2862d0b38e1ad6aa8b777b55083fc3c6a972ba7ff4f17590d111db29a430d003f2da17cef390e83740ac7c2b4a SHA512 77397ba842a80007413fc4c4f3e5ed963f02678c57ff751b9e0c5aaf9e0bc649ff05612ff8d55814f7452d5ff2ac14ada54830971c98a98161e5fced00760e59 diff --git a/app-arch/rar/rar-7.21.ebuild b/app-arch/rar/rar-7.21.ebuild new file mode 100644 index 000000000000..cf17087301f3 --- /dev/null +++ b/app-arch/rar/rar-7.21.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="${PV/./}" +URI_AMD64="https://www.rarlab.com/rar/rarlinux-x64-${MY_PV}.tar.gz" +URI_WIN64="https://www.rarlab.com/rar/winrar-x64-${MY_PV}.exe" + +inherit unpacker + +DESCRIPTION="RAR compressor/uncompressor" +HOMEPAGE="https://www.rarlab.com/" +SRC_URI=" + all-sfx? ( + ${URI_AMD64} + ${URI_WIN64} + ) + amd64? ( ${URI_AMD64} ) +" +S="${WORKDIR}/${PN}" + +LICENSE="BSD BSD-2 RAR" +SLOT="0" +KEYWORDS="-* ~amd64" +IUSE="all-sfx" +RESTRICT="bindist mirror" + +RDEPEND="sys-libs/glibc" +BDEPEND="all-sfx? ( app-arch/unrar )" + +DOCS=( "acknow.txt" "rar.txt" "readme.txt" "whatsnew.txt" ) + +QA_PREBUILT=" + opt/rar/default.sfx + opt/rar/default-elf32.sfx + opt/rar/default-elf64.sfx + opt/rar/default-win32.sfx + opt/rar/default-win64.sfx + opt/rar/unrar + opt/rar/rar + opt/rar/WinCon.SFX + opt/rar/WinCon64.SFX + opt/rar/Zip.SFX + opt/rar/Zip64.SFX +" + +src_unpack() { + local _file + + for _file in ${A}; do + if [[ "${_file}" == rarli* ]]; then + if [[ "${_file}" =~ x64 ]]; then + if ! use amd64; then + continue + fi + + unpack "${_file}" + elif [[ ! "${_file}" =~ x64 ]]; then + if ! use x86; then + continue + fi + + unpack "${_file}" + else + die "Unknown SRC file '${_file}'!" + fi + fi + done + + if use all-sfx ; then + mkdir sfx + cd sfx + for _file in ${A}; do + if [[ "${_file}" == rarli* ]]; then + unpack "${_file}" + if [[ "${_file}" =~ x64 ]]; then + mv rar/default.sfx default-elf64.sfx || die + else + mv rar/default.sfx default-elf32.sfx || die + fi + elif [[ "${_file}" == winrar* ]]; then + ln -s "${DISTDIR}"/${_file} w64.rar || die + # Use shipped unrar, as current version in tree segfaults + # Bug #932666 + # unpack_rar ./w64.rar + "${S}"/unrar x ./w64.rar || die + mv Default.SFX default-win64.sfx || die + mv Default32.SFX default-win32.sfx || die + else + die "Unknown SFX file '${_file}'!" + fi + done + fi +} + +src_compile() { :; } + +src_install() { + exeinto /opt/rar + doexe rar unrar + + insinto /opt/rar + doins rarfiles.lst + + if use all-sfx; then + doins "${WORKDIR}"/sfx/*.{sfx,SFX} + else + doins default.sfx + fi + + dodir /opt/bin + dosym ../rar/rar /opt/bin/rar + dosym ../rar/unrar /opt/bin/unrar + + docinto html + dodoc order.htm + + einstalldocs +} diff --git a/app-arch/unrar/Manifest b/app-arch/unrar/Manifest index 2255b6bc9af0..c2cce63821ab 100644 --- a/app-arch/unrar/Manifest +++ b/app-arch/unrar/Manifest @@ -1,2 +1,3 @@ DIST unrar-7.2.4.tar.gz 270064 BLAKE2B 8c20bfff29293932435ccd46e5e3b648db1be70cef6ca0b81d11fe7f8d59cc111d7a493ef611bc669093cf8594646dc54df249faba5be3d3840dc3ef9bef9088 SHA512 5761f1ed34c889fa9c644a00eb5388b7b25fa4369f8cb8fadb2473d8aa35a46b656cf642ef36028cfc7d47274fd42da7707a845659eda6a986b9ca2328dc9dc0 DIST unrar-7.2.5.tar.gz 270227 BLAKE2B 97e27a3c05d5f02f304b119be273965ff81a74f367c1a54f2c5d2921b556759605f1fe53ed68c3e3db15a6ae0292989e488028ad50a95387c89b1d914a1b1ed3 SHA512 8e2b7e801e1e1f8861657e7e613b4540c46938af377e43383ec2b509db1a59073d1e970fa20ee923db73a6c93777d677e7488ca6696177625cc1020922504346 +DIST unrar-7.2.6.tar.gz 270264 BLAKE2B dd96f738c4840c78c52b390cf00b10888aa85e2ef01e078d9cdfe16228cc8258b67618587d1e6b8aea1f49d9953b11df00b7b39fce34102de207f51047104d06 SHA512 e0a317418fa9c853295f69f0fbb53d1caae493405b8785ab04ac612c87b9e294f4331108ca3650a75bca91acfb5f6907d00360a9579425b2f2eae12dcae40f96 diff --git a/app-arch/unrar/unrar-7.2.6.ebuild b/app-arch/unrar/unrar-7.2.6.ebuild new file mode 100644 index 000000000000..35f51c82931f --- /dev/null +++ b/app-arch/unrar/unrar-7.2.6.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib toolchain-funcs + +MY_PN="${PN}src" + +DESCRIPTION="Uncompress rar files" +HOMEPAGE="https://www.rarlab.com/rar_add.htm" +SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/unrar" + +LICENSE="unRAR" +SLOT="0/7" # subslot = soname version +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +PATCHES=( "${FILESDIR}/${PN}-6.2.6-honor-flags.patch" ) + +src_prepare() { + default + + local sed_args=( -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" ) + if [[ ${CHOST} == *-darwin* ]] ; then + sed_args+=( -e "s:-shared:-dynamiclib -install_name ${EPREFIX}/usr/$(get_libdir)/libunrar$(get_libname ${PV%.*.*}):" ) + else + sed_args+=( -e "s:-shared:& -Wl,-soname -Wl,libunrar$(get_libname ${PV%.*.*}):" ) + fi + sed -i "${sed_args[@]}" makefile || die +} + +src_configure() { + mkdir -p build-{lib,bin} || die + printf 'VPATH = ..\ninclude ../makefile' > build-lib/Makefile || die + cp build-{lib,bin}/Makefile || die +} + +src_compile() { + unrar_make() { + emake AR="$(tc-getAR)" CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@" + } + + unrar_make CXXFLAGS+=" -fPIC" -C build-lib lib + ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname) || die + ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname ${PV}) || die + + unrar_make -C build-bin +} + +src_install() { + dobin build-bin/unrar + dodoc readme.txt + + dolib.so build-lib/libunrar* + + # unrar doesn't officially install headers, but unofficially, software + # depends on it anyway. There is no standard for where to install them, + # but the most common location (shared by nearly all vendors) is "unrar". + # FreeBSD alone uses "libunrar". Gentoo formerly used "libunrar6" and + # had a compat symlink for FreeBSD, then passed the compat location in + # ./configure scripts e.g. for sys-fs/rar2fs. Software in the wild + # seems to expect either "unrar" or "libunrar". + # See: https://bugs.gentoo.org/916036 + # + # We now use the "standard" (hah) location, and keep the compat symlink but + # change the destination. The version-suffixed location lacks utility, but + # we would keep it if we could, just in case -- unfortunately portage is + # buggy: https://bugs.gentoo.org/834600 + # + # Hopefully, no one has ever actually used it and therefore this does not + # matter. The odds are on our side, since it periodically changed location + # arbitrarily. + insinto /usr/include/unrar + doins *.hpp + dosym unrar /usr/include/libunrar + + find "${ED}" -type f -name "*.a" -delete || die +} diff --git a/app-benchmarks/geekbench/Manifest b/app-benchmarks/geekbench/Manifest index b7d42c9424fe..6c7557c2a199 100644 --- a/app-benchmarks/geekbench/Manifest +++ b/app-benchmarks/geekbench/Manifest @@ -6,3 +6,5 @@ DIST Geekbench-5.5.1-Linux.tar.gz 93199992 BLAKE2B e2ff24da19134778dd1b3036ac3fb DIST Geekbench-5.5.1-LinuxARMPreview.tar.gz 111581640 BLAKE2B be413e306a77c0612be380d0ec0d589067365ac1c4091b55a08b722d469180c9cf9126cc0597e3f3c8a75acf77d2a0423bc43b753f30a219924b1a7df640243d SHA512 1d76b9a7928f89f1fdfa0e3cc9859c305e109cbbe72b013b4c249b03722273c985ad1e5d818341a6e399e9e7b3c61136856df87c9f5e61bcc9e7e0455f80e61b DIST Geekbench-6.6.0-Linux.tar.gz 228186726 BLAKE2B d13b016d7fe6a328aa3633c8c84404d4962939871d6aafc29743613d6c0aaf3e827ebf7d597f9f4e8384a9e827e72cc28b335e79d43db00345db5d281f7b56bb SHA512 da662fa7543438984571f44e67d750aafa01dc2a9982677b46e5ff4d0a2bdca0f12a9a3925f62ae836c4b7888c23709ffc7b90f4da73f273a970d166afb42f63 DIST Geekbench-6.6.0-LinuxARMPreview.tar.gz 192111410 BLAKE2B 1948a2c312c47e7267f35e68dc2b2c9c8d0f23174abc9a792ff8e7670b1ace6f315d4d5e97f8d0a457bd63da845b12a4f593c34858557450b6a04bfb6a9f8c33 SHA512 7455dc8e64e4047d5aaa5dfa0ad94ca78f0be6fb8225eaaea6dec2baa4209294799f0c90119deea96bf1d1d66f548a4ca3caaa8a1141a5c6452007521b7fb2d6 +DIST Geekbench-6.7.1-Linux.tar.gz 228093838 BLAKE2B 48a8dbcbcec21253b92dfd460e9bf32b203f18b3d141bb242d1f335e40acda7df2ec70a04711cddbc5727755b3445d358dbf8e90f21a145412acef2e06ae03cb SHA512 be38a8152a0ed9fc0c2e90ec0c7666326d8b416eb6d19a1aaccf6c18537f096fa57737eb7986f37d2429386944e00789127d4e7751301a89de82cbe0ecda22b7 +DIST Geekbench-6.7.1-LinuxARMPreview.tar.gz 192088662 BLAKE2B 57b9d904c16e5201bdd954cbaea6bfd2afdf33ac0c22be3a720dfe710812400d9a30f995512fd86e6d5ce546cf166af4a089eea207dab47aac074730d812f49a SHA512 d05897bcff3361e3b064dafe7f87e692ea860a952f3c0037cda74f31b2150228ef565a369e91d2b0305df2e663a8cd3a68ba022d7319e1f75ad7698dc6a62753 diff --git a/app-benchmarks/geekbench/geekbench-6.7.1.ebuild b/app-benchmarks/geekbench/geekbench-6.7.1.ebuild new file mode 100644 index 000000000000..58899a32595b --- /dev/null +++ b/app-benchmarks/geekbench/geekbench-6.7.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and Windows" +HOMEPAGE="https://www.geekbench.com/" +SRC_URI=" + amd64? ( https://cdn.geekbench.com/Geekbench-${PV}-Linux.tar.gz ) + arm64? ( https://cdn.geekbench.com/Geekbench-${PV}-LinuxARMPreview.tar.gz ) +" +S="${WORKDIR}" + +LICENSE="geekbench" +SLOT="6" +KEYWORDS="-* ~amd64 ~arm64" + +RESTRICT="bindist mirror" + +QA_PREBUILT=" + opt/geekbench6/geekbench_aarch64 + opt/geekbench6/geekbench_avx2 + opt/geekbench6/geekbench_x86_64 + opt/geekbench6/geekbench6 +" + +pkg_nofetch() { + elog "Please download ${A} from ${HOMEPAGE}/download/linux" + elog "and place it in your DISTDIR directory." +} + +src_install() { + local MY_S="Geekbench-${PV}-Linux$(usex arm64 'ARMPreview' '')" + + exeinto /opt/geekbench6 + use amd64 && doexe "${MY_S}"/geekbench_avx2 "${MY_S}"/geekbench_x86_64 + use arm64 && doexe "${MY_S}"/geekbench_aarch64 + doexe "${MY_S}"/geekbench6 + + insinto /opt/geekbench6 + doins "${MY_S}"/geekbench.plar "${MY_S}"/geekbench-workload.plar + + dodir /opt/bin + dosym ../geekbench6/geekbench6 /opt/bin/geekbench6 +} + +pkg_postinst() { + elog "If you have purchased a commercial license, you can enter" + elog "your email address and your license key with the following command:" + elog "geekbench6 -r <email address> <license key>" +} diff --git a/app-containers/distrobox/Manifest b/app-containers/distrobox/Manifest index ad268f461c8f..53c6dc820067 100644 --- a/app-containers/distrobox/Manifest +++ b/app-containers/distrobox/Manifest @@ -1,3 +1,2 @@ -DIST distrobox-1.8.2.2.gh.tar.gz 2002827 BLAKE2B 48524ea86bb7c0a9631f385e146dfbba4ab752115f06e03de85264d3ecf61d55f889f6d64ffd265bc28aee82a6808394bfb5e15579cb70431c1ff78606eef197 SHA512 98379fb14b20c70a56fb6e1bfe4ff938fab34d9bc47f7b0b6d1cff703d1c725e3bd5feb330bfa3e7102e23c04ecdb94ce5e660ef4ac72a0c61b3b63e9a397b6d -DIST distrobox-1.8.2.3.gh.tar.gz 2002934 BLAKE2B 5c19aa99cff2891de121c985abff4484327d8a716c46fed04052fa301c91d8779d887ed3e1213ad9e6f90acfeba85f489e2b45bbbf3d73865c3d57313b6e00c9 SHA512 a16e5c67f279c068e34330626285f0c0d9a5af3a3b845a936d248c1e42b5ccccbb14b9b4f4b854b5e27fcf63f6ccc3f6f4a2bc5b45b2f3e39bafe1e217605b72 DIST distrobox-1.8.2.4.gh.tar.gz 2004397 BLAKE2B 36aff4e87eae2108cce5ebdb8c5ff754af32c57caa3d01ec38f8106d141acca876967a39648c86753897bcabe4ae1e69782f754afe060f7d99df5c3713f3b48c SHA512 c7c567a6006dd0657da46640598cbe02e8bb432db8b181de0b13f04f85966d2eeff35b6dcdb8bb8592573bb81518bdc8d3b63b0ae6288c0c3f1a83937fa948e0 +DIST distrobox-1.8.2.5.gh.tar.gz 2047489 BLAKE2B 5fa251eb0fbfcfc24f4e123fbbe891a312a3bf4ed852f379b88c7f5bb9c59de6e908aae13e66788404edf92717bff41aa1e26d4e0e8b1ceb5c338d8fa82334a6 SHA512 f4dcd9a2edd2db8de6af50e3b6df4e43e793d9baff28529879dcbe3a05cbebf8ad02bef1c8a6b8951c9855e82e6991bd17a8cf2025e1ca285b7dbe80396b1da6 diff --git a/app-containers/distrobox/distrobox-1.8.2.2.ebuild b/app-containers/distrobox/distrobox-1.8.2.2.ebuild deleted file mode 100644 index 47585b230d20..000000000000 --- a/app-containers/distrobox/distrobox-1.8.2.2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit xdg-utils - -DESCRIPTION="Use any Linux distribution inside your terminal (powered by docker/podman)" -HOMEPAGE="https://distrobox.it/ - https://github.com/89luca89/distrobox/" - -if [[ "${PV}" == *9999* ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/89luca89/${PN}" -else - SRC_URI="https://github.com/89luca89/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - - KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" -fi - -LICENSE="GPL-3" # GPL-3.0-only ! -SLOT="0" -IUSE="gui" - -RDEPEND=" - || ( - app-containers/docker - app-containers/podman - ) -" - -src_install() { - sh ./install --prefix "${ED}/usr" || die "${PN} install script failed" - - if use gui ; then - : - else - rm -r "${ED}/usr/share/icons" || die - fi - - dodoc *.md -} - -pkg_postinst() { - if use gui ; then - xdg_icon_cache_update - xdg_desktop_database_update - fi -} - -pkg_postrm() { - if use gui ; then - xdg_icon_cache_update - xdg_desktop_database_update - fi -} diff --git a/app-containers/distrobox/distrobox-1.8.2.3.ebuild b/app-containers/distrobox/distrobox-1.8.2.5.ebuild index e5fa37e43534..aa019f993b23 100644 --- a/app-containers/distrobox/distrobox-1.8.2.3.ebuild +++ b/app-containers/distrobox/distrobox-1.8.2.5.ebuild @@ -17,7 +17,7 @@ else SRC_URI="https://github.com/89luca89/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" fi LICENSE="GPL-3" # GPL-3.0-only ! diff --git a/app-crypt/acme-sh/Manifest b/app-crypt/acme-sh/Manifest index 380c6dd91db4..c5ffa5e2d67d 100644 --- a/app-crypt/acme-sh/Manifest +++ b/app-crypt/acme-sh/Manifest @@ -1 +1 @@ -DIST acme.sh-3.1.2.tar.gz 338572 BLAKE2B 345c15aa0034573cfd2bf177de1722a3beba906a6c4522550bd331c4c372b88b4bef2a1c1b3dec23432668661805f821eecb8bbf9939404ac1f2a140dd1e77eb SHA512 b7ea3ef8dd68f47f9770e2cebbacd9ab12a1b8a2ccc3bf85ff28141b7ac54c8b2ec68d6fbc245ef117bc41e00c6a5e3d8128bf401e07d12d7e0cf6e36f70966f +DIST acme.sh-3.1.3.tar.gz 381679 BLAKE2B ef9b5cefe83aee3b5d694db4f22cc15a4f207c287a18c7407c59811c4366203f65fc0496734f92d43a6f88cea9336b920d542852f31dfc14b46bb1d753fe0def SHA512 7e82ee43ea7c45badc5df1e288fba5c5d4f02e4b52550288f7e0a6ee54f7a72032a3dd0bdd5351ce684bb023f1a7be47a189ef71466faa65eb1818b3f3ce6de0 diff --git a/app-crypt/acme-sh/acme-sh-3.1.2.ebuild b/app-crypt/acme-sh/acme-sh-3.1.3.ebuild index e4f3f9f973ce..271f5fc80d8f 100644 --- a/app-crypt/acme-sh/acme-sh-3.1.2.ebuild +++ b/app-crypt/acme-sh/acme-sh-3.1.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 diff --git a/app-crypt/keepsecret/Manifest b/app-crypt/keepsecret/Manifest index 1d2066b3ce26..1795f10cf837 100644 --- a/app-crypt/keepsecret/Manifest +++ b/app-crypt/keepsecret/Manifest @@ -1 +1,2 @@ DIST keepsecret-1.0.0.tar.xz 77448 BLAKE2B c002a9c1c3ccd0610841ac5a9812a5b5a477f6c352455a0102d4b10d97d38a4f269fb0c505b11a22f955ff929cecc1809b7c293d13fc325bb0d0391a75875410 SHA512 6c00163f78bd5a9ae758f425b8fcc61558c051a2f3b742211c7adaf8b65cf60793b83ab5e5a128b3ab4c8f0428e0fc3d44f6e1f12cb3e8d3dd9a873d118e9eab +DIST keepsecret-1.1.0.tar.xz 82100 BLAKE2B 39a4e0d43cdaf4e9f86421c9a998be571c8bc332ed71d7ab8543738f253dee4213bfa4c423208753aa1ded6af3901c4c52dbbf176cfa978ef07fd3f690af2b5f SHA512 a25ce3a65962887b02ea235fcd45bfcfa6f793f1568a22a9201b710e0d103b8811df89ba25c2a5d6b03e9125ace427f953bc1141a591c7730fa7c56d6f64c479 diff --git a/app-crypt/keepsecret/keepsecret-1.1.0.ebuild b/app-crypt/keepsecret/keepsecret-1.1.0.ebuild new file mode 100644 index 000000000000..1a29435417fc --- /dev/null +++ b/app-crypt/keepsecret/keepsecret-1.1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_CATEGORY="utilities" +KFMIN=6.22.0 +QTMIN=6.10.1 +inherit ecm kde.org xdg + +DESCRIPTION="Password manager GUI for SecretService providers" +HOMEPAGE="https://apps.kde.org/keepsecret/ +https://invent.kde.org/utilities/keepsecret" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2+" +SLOT="0" + +DEPEND=" + app-crypt/libsecret + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets] + >=dev-qt/qtdeclarative-${QTMIN}:6 + >=dev-qt/qtsvg-${QTMIN}:6 + >=kde-frameworks/kconfig-${KFMIN}:6[qml] + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/kcrash-${KFMIN}:6 + >=kde-frameworks/kdbusaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kirigami-${KFMIN}:6 + >=kde-frameworks/kitemmodels-${KFMIN}:6 +" +RDEPEND="${DEPEND} + dev-libs/kirigami-addons:6 + >=kde-frameworks/qqc2-desktop-style-${KFMIN}:6 +" diff --git a/app-dicts/aspell-da/Manifest b/app-dicts/aspell-da/Manifest index 01d499e1e54c..b8fb84833c56 100644 --- a/app-dicts/aspell-da/Manifest +++ b/app-dicts/aspell-da/Manifest @@ -1 +1,2 @@ DIST aspell-da-4.5.1.tar.gz 4306053 BLAKE2B 67c0c19debb2365201ef509ecd51dcd15c7c4d692444d19acd42025992caac1de677dfb49ba8a7b018a813cb70169412540d6e54192bf94fb1089b9573cffc1e SHA512 739c51010835672c0f68a2f77bbb2f60c51c82d10fb963ecfea1ddcb9b7f75ec86ebaa8370090796d2e1b88c1917052901089573b7239922511fa1700978c412 +DIST aspell-da-4.6.0.tar.gz 4308557 BLAKE2B ad297ecfb1d2ac5b3120d1665322fb8ad4b851f51a51f8beaa1ea9b2d94aa4f1e16381bfd0680b7136705a23b711c3b28c00c561b7e202e9269d1a039494eb2f SHA512 7f37c133e628fd9574ee24760709f9fc06745e706c9033f603e14dfc9586eaed95a936ed1b98356910710fd1d06074a2980c9afd01408c45afc33da7ff983021 diff --git a/app-dicts/aspell-da/aspell-da-4.6.0.ebuild b/app-dicts/aspell-da/aspell-da-4.6.0.ebuild new file mode 100644 index 000000000000..d23da6d35946 --- /dev/null +++ b/app-dicts/aspell-da/aspell-da-4.6.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ASPELL_LANG="Danish" + +inherit aspell-dict-r1 + +HOMEPAGE="https://github.com/mortenivar/aspell-da" +SRC_URI="https://github.com/mortenivar/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" diff --git a/app-emacs/emacs-crystal-mode/Manifest b/app-emacs/emacs-crystal-mode/Manifest index 2c9e23c7f0cd..4578a663fd5c 100644 --- a/app-emacs/emacs-crystal-mode/Manifest +++ b/app-emacs/emacs-crystal-mode/Manifest @@ -1 +1,2 @@ DIST emacs-crystal-mode-0.1.0_p20221008.tar.gz 38944 BLAKE2B 62e8a98bdf036a80dd227a00758146944869c9735867e31f9fc9c7edf01edd937c859d85a348e17fa29c55446309f4dd4958bec42ea23c19dbe4039e1a835bf2 SHA512 12445858a4f71620d9e785b16fa9562e54947f41fcf2ad3299b1e10359c241548686e34e14d7a80f116533bff0a08a3a333cc4616ccb3aa5dadee32ba8a7ae96 +DIST emacs-crystal-mode-0.2.0_p20260111.gh.tar.gz 39634 BLAKE2B 0fc03a1436f63bc8e5428a9df6050492d5c31ae63d45cf5881a0efa820fa715bc12a9105f813843ecfddcfbccf0ac6466796113cd148ed0accac05a128a4fe59 SHA512 9a364ee1eb1809034ce12b3da23db1ac43aefcbc5cf52b6ed626e5e5e18244ebbf44ddeb662f140ae846b38f26b8d8999607a3e82c15645540502d24429e5bbd diff --git a/app-emacs/emacs-crystal-mode/emacs-crystal-mode-0.2.0_p20260111.ebuild b/app-emacs/emacs-crystal-mode/emacs-crystal-mode-0.2.0_p20260111.ebuild new file mode 100644 index 000000000000..057744bea765 --- /dev/null +++ b/app-emacs/emacs-crystal-mode/emacs-crystal-mode-0.2.0_p20260111.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=9 + +[[ ${PV} == *p20260111 ]] && COMMIT=559e1d8ff9bb87a4e937978001386bfb58b113a0 + +inherit elisp + +DESCRIPTION="GNU Emacs major mode for editing Crystal programming language files" +HOMEPAGE="https://github.com/crystal-lang-tools/emacs-crystal-mode/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/crystal-lang-tools/${PN}" +else + SRC_URI="https://github.com/crystal-lang-tools/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.gh.tar.gz" + S="${WORKDIR}/${PN}-${COMMIT}" + + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/flycheck-30 +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert tests -l tests/crystal-mode-tests.el + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} diff --git a/app-office/joplin-desktop/Manifest b/app-office/joplin-desktop/Manifest index 97f5cfe0c27f..3ac641aa3a1f 100644 --- a/app-office/joplin-desktop/Manifest +++ b/app-office/joplin-desktop/Manifest @@ -1,3 +1,4 @@ +DIST Joplin-3.6.10.AppImage 159869839 BLAKE2B e37238b0ff1c634acb0883bdd647115ad325437f00d2f5f0e025ab6320717a23f3280f81737c6d407c3216f5c2fde519cd6b80f9c875bd2cef93ec072c538c0a SHA512 c3906aaee17988889247d1846aa37a95b896b1cddf3b6e0cf03db902ac6a42fdbd94b56e45dd1b8fad1418bb31ebf6018fc9460f73b5aae2cfbb2d0f5f134225 DIST Joplin-3.6.4.AppImage 158456161 BLAKE2B d3a06ca3ab782050b3478f789903f6e8a19bcd9e33fb55c7b1f60a7a1d3716a58192b8669a8edee7b64cf5263e706b1eaf964c85a9f8a79aba1f9f6689fec214 SHA512 71252b67c5f91d87005f63f74c42bd12175090b9427b3b50c1d87428a6e73c41388be34e4ec5cfebbc9b5ee32c2ed14d8962ecb9a1775f1b35e516a8d091acdf DIST Joplin-3.6.6.AppImage 158472364 BLAKE2B 950bc939af96be8b35960ce1da4e05acdb8935e76655be9d3d53c441ffdfa0cdd1bd629642d943ecc83dd5d7d33e9bab644e999692a4134d6031c26f28c47e0e SHA512 1a2c62bdd919b56dfd89e17862d19a55ac423e518bcf5fbe13e2006a5d2ebbe56d2c91286a628d709c9b6fbaf143b2c7967dda3ada44c3012613999ee37caf02 DIST Joplin-3.6.8.AppImage 159833042 BLAKE2B d33ce630c9b384b4040beafa0f4589baf8e45bdb0346a64f5bc50ab1a41be0376aa4796432254286d8a62fa6764bc89b556055a1238c387e8058dfa2181f7e99 SHA512 845cca41f1902f9ca533c0a06d76c8fb2c0f6102f25e6414feec2af687085dea61e0164068bce1b8e2202102d37a140c5a79d7bef2bf68aa236abbf5d0dd1176 diff --git a/app-office/joplin-desktop/joplin-desktop-3.6.10.ebuild b/app-office/joplin-desktop/joplin-desktop-3.6.10.ebuild new file mode 100644 index 000000000000..2c4bccf5d928 --- /dev/null +++ b/app-office/joplin-desktop/joplin-desktop-3.6.10.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop xdg + +DESCRIPTION="Secure note taking and to-do app with synchronization capabilities" +HOMEPAGE="https://joplinapp.org/ + https://github.com/laurent22/joplin/" + +# NOTICE: This is a Electron app (oh my) and the upstream only provides AppImages. +APPIMAGE="Joplin-${PV}.AppImage" +SRC_URI="https://github.com/laurent22/joplin/releases/download/v${PV}/${APPIMAGE}" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="-* ~amd64" +RESTRICT="bindist splitdebug" + +RDEPEND=" + >=app-accessibility/at-spi2-core-2.46.0:2 + app-crypt/libsecret[crypt] + app-misc/ca-certificates + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + || ( + media-libs/libcanberra-gtk3 + media-libs/libcanberra[gtk3(-)] + ) + media-libs/libglvnd + media-libs/mesa + net-misc/curl + net-print/cups + sys-apps/dbus + virtual/zlib:= + sys-process/lsof + x11-libs/cairo + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libnotify + x11-libs/libX11 + x11-libs/libxcb + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libxkbcommon + x11-libs/libxkbfile + x11-libs/libXrandr + x11-libs/libXScrnSaver + x11-libs/pango + x11-misc/xdg-utils +" + +QA_PREBUILT="*" + +src_unpack() { + mkdir -p "${S}" || die + cp "${DISTDIR}/${APPIMAGE}" "${S}" || die + + cd "${S}" || die # "appimage-extract" unpacks to current directory. + chmod +x "${S}/${APPIMAGE}" || die + "${S}/${APPIMAGE}" --appimage-extract || die +} + +src_prepare() { + # Fix permissions. + find "${S}" -type d -exec chmod a+rx {} + || die + find "${S}" -type f -exec chmod a+r {} + || die + + default +} + +src_install() { + cd "${S}/squashfs-root" || die + + insinto /usr/share + doins -r ./usr/share/icons + + local apphome="/opt/${PN}" + local -a toremove=( + .DirIcon + AppRun + LICENSE.electron.txt + LICENSES.chromium.html + joplin.png + resources/app.asar.unpacked/node_modules/7zip-bin-linux/arm + resources/app.asar.unpacked/node_modules/7zip-bin-linux/arm64 + resources/app.asar.unpacked/node_modules/node-notifier + usr + ) + rm -f -r "${toremove[@]}" || die + + mkdir -p "${ED}/${apphome}" || die + cp -r . "${ED}/${apphome}" || die + + dosym -r "${apphome}/joplin" "/usr/bin/${PN}" + make_desktop_entry "${PN}" Joplin joplin "Office;" \ + "StartupWMClass=Joplin\nMimeType=x-scheme-handler/joplin;" +} diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index f3d0f01632e4..83317df8af00 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,3 @@ -DIST getuto-1.16.tar.gz 10952 BLAKE2B 34a73fa06ef26a0a27526e7d88a5a8d7da73fd0ae6f23455686a29a2bf52214ddd2959c30c4ad5f150886d247be868af59b7d37e6f07d78442940c076a15e355 SHA512 530bb24d0f456feeda13de10f771665ac93f0689273b0e829c744dd95660471ef38544ba3263847fd4136b94322403f1123da1004fd887e4f751407ff57a45f2 DIST getuto-1.17.tar.gz 11066 BLAKE2B 57da720aea6cff6303ee277e3cd695079e44e54c5cfe08f482adccf6b2b0a4b392687ebbf038181e04df23dc16858bda5cd69024da7e805ba2b932b7af96396b SHA512 db191d04a0104179d05a25d52dfc14db66cc38d9053efbc7e2a3e64baa9fa8e56afd430d76b9c96d55b41dce90cbf1b8063dd63c013fe52a7c9058d71769b51a +DIST getuto-1.19.1.tar.gz 11149 BLAKE2B 8f3ea5378ae1741b7608457f7451d6a5b18b2752842a62d728690d33212746df81c595a068ddc1aad6f346f30497018a6aec09876563940333965c3fd4757505 SHA512 86dd4c53dffcb079825c51783a593d0fbed76134446fdd674fc98ab5f1beef3429c05ed2003b926efcaed29f93e0237a621648a738d64bce6b97f579eacf3229 DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.16.ebuild b/app-portage/getuto/getuto-1.19.1.ebuild index a53cfce819e6..a53cfce819e6 100644 --- a/app-portage/getuto/getuto-1.16.ebuild +++ b/app-portage/getuto/getuto-1.19.1.ebuild diff --git a/app-text/texlive-core/texlive-core-2024-r2.ebuild b/app-text/texlive-core/texlive-core-2024-r2.ebuild index 0ecbea8e573f..38017c8982dd 100644 --- a/app-text/texlive-core/texlive-core-2024-r2.ebuild +++ b/app-text/texlive-core/texlive-core-2024-r2.ebuild @@ -133,7 +133,7 @@ SRC_URI+=" )" S="${WORKDIR}/${MY_P}" LICENSE="BSD CC-BY-SA-4.0 GPL-1+ GPL-2 GPL-2+ GPL-3+ MIT TeX-other-free" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="cjk X doc source tk +luajittex xetex xindy" TEXMF_PATH=/usr/share/texmf-dist diff --git a/app-text/texlive/texlive-2024.ebuild b/app-text/texlive/texlive-2024.ebuild index f1dce72ea181..297986f96ef9 100644 --- a/app-text/texlive/texlive-2024.ebuild +++ b/app-text/texlive/texlive-2024.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 @@ -8,7 +8,7 @@ HOMEPAGE="https://tug.org/texlive/" LICENSE="metapackage" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="cjk context extra games graphics humanities luatex metapost music pdfannotextractor png pstricks publishers science tex4ht texi2html truetype xetex xml X" LANGS="af ar as bg bn br ca cs cy da de el en eo es et eu fa fi fr ga gl gu he diff --git a/dev-build/bazelisk/Manifest b/dev-build/bazelisk/Manifest index 6f156c0dae4d..51da714d6eb7 100644 --- a/dev-build/bazelisk/Manifest +++ b/dev-build/bazelisk/Manifest @@ -1,4 +1,2 @@ -DIST bazelisk-1.27.0-deps.tar.xz 2562664 BLAKE2B 405d7edfd322365762940c6fdcea891c56cab719a92b69483da6b9a38a0e2c914fdc0cfb1b838dfe7cf21896977cb85978b86eb83ee80debc6dd5c3b5f67bfc6 SHA512 0442f27536016179c175c5210504b30c7864f135531d2f670c7201d79360648391d8dccf0f16577e37785c926f9d3193482d82dc9915b49765d2d698e2718fb2 -DIST bazelisk-1.27.0.gh.tar.gz 158174 BLAKE2B 82770cd3fa3c1aebfc9eab3ce0cc705be36b50d7968855f554b11d7c97a1188eb2e88d00dbd9aa8e06019b19176ca4ad934971c31a7908a947ce9f1712a9f3b3 SHA512 f043ce5eac2fcc56b041f9c287336d183c7b0ec1891eafb9cf5342c35fd3aa598a387295e52957b1377f22c35d7a3a4948e1d1616e421d02bed74c121aa4f59e DIST bazelisk-1.28.1-deps.tar.xz 2578056 BLAKE2B ca076d248eb1655c62e345cd3cf45af20ee0564418ee6711879cf41a0584484bbc679baa238492a79720b2b9a91f74294d06be441974400ca011ef35970cb1aa SHA512 88a1c50e2db24f6037dbbddce72c9afd11435ddfbc7a2bf2b1352efcd9465856722609297c1169f00b10ae75647dd39566ddd1d5e4529606235fab0a03a8427b DIST bazelisk-1.28.1.gh.tar.gz 160928 BLAKE2B f04ba2feca37ad9ad1114a79f6905cb0bf3c16dfec0c8d282b52d449296e184645e0cbdfd135e53c372cc51d78aca5d626fec31d4530f7294364f4747c7ff4f2 SHA512 5bbc97ea7f8d61be1b42e58b3318a15bf1a2766a9d956617fb0f36b360b5c99cb6ed956a6330709ac644538ff466b1b26a15b2f18c07cfd61489f0cc89765b62 diff --git a/dev-build/bazelisk/bazelisk-1.27.0.ebuild b/dev-build/bazelisk/bazelisk-1.27.0.ebuild deleted file mode 100644 index 8754369d252d..000000000000 --- a/dev-build/bazelisk/bazelisk-1.27.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit go-module - -DESCRIPTION="A user-friendly launcher for Bazel written in Go" -HOMEPAGE="https://github.com/bazelbuild/bazelisk/" -SRC_URI=" - https://github.com/bazelbuild/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.gh.tar.gz - https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.xz -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm64" -IUSE="+bazel-symlink" - -DOCS=( CONTRIBUTING.md README.md ) - -src_compile() { - mkdir -p bin || die - - local go_ldflags="-X main.BazeliskVersion=${PV}" - local -a go_buildargs=( - -ldflags "${go_ldflags}" - -o bin - ) - ego build "${go_buildargs[@]}" -} - -src_install() { - exeinto /usr/bin - doexe "bin/${PN}" - - if use bazel-symlink ; then - dosym -r /usr/bin/bazelisk /usr/bin/bazel - fi - - einstalldocs -} diff --git a/dev-db/sqlcipher/Manifest b/dev-db/sqlcipher/Manifest index de2953ecefb6..1190b46122de 100644 --- a/dev-db/sqlcipher/Manifest +++ b/dev-db/sqlcipher/Manifest @@ -1,2 +1,2 @@ -DIST sqlcipher-4.13.0.tar.gz 19019453 BLAKE2B 8e1b39c04c894243f0e92a0a5bee02c1e3aed099189ade518f0cb9e4ad1bc4a725ff1b01ba12c1374657d1e03b455217bc0704ee5786a68a72b7bb4f4a30dfd7 SHA512 94d871afe872fac1668c93ba3be6bb4af5b8ac635ff3387fa1f589e112baf1822072353120e13102154142490fb7127868daf61fec6271137401d285b1183f52 DIST sqlcipher-4.14.0.tar.gz 19024067 BLAKE2B faf3f712d99c7102c45bceee8a39ea7a874b1eb775c3b83621976b55f9d9accf025005c97efa0864065876ec5e42edc9d86d041f6d011aeebcbf41f45b34c494 SHA512 42a08eb180df7cbb1fb9599b4203afb722587d9ead4cea7d615509ac72cb4d225ece62599c58bdb1b0600568c04206c44c3626e8d193bf394f682a70e2250d17 +DIST sqlcipher-4.15.0.tar.gz 19310855 BLAKE2B fb3dc45ec76560bc13fb8d43e11f4d17a5da52c5da849120c3c5e8677c6e778077397a9428ede1c8f379502ee96ad6139fa84f7c7593287e8a04de81d46b881d SHA512 c88a581d07c3bcd8af18ec0c5767ec81448998de20d395d6adcd7bf144a06319bb6a89068b951bb90828f90b59fd0415b2417e335a5a017fe0948e2ecce74998 diff --git a/dev-db/sqlcipher/sqlcipher-4.13.0.ebuild b/dev-db/sqlcipher/sqlcipher-4.15.0.ebuild index e1c2c73316ce..e1c2c73316ce 100644 --- a/dev-db/sqlcipher/sqlcipher-4.13.0.ebuild +++ b/dev-db/sqlcipher/sqlcipher-4.15.0.ebuild diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest index c3620eb67b70..63b7505d6b1d 100644 --- a/dev-lang/algol68g/Manifest +++ b/dev-lang/algol68g/Manifest @@ -1,4 +1,2 @@ DIST algol68g-3.10.13.tar.gz 673220 BLAKE2B 7af7bc4b03110df631c233cd671b1ea5c198248bb504db196c165e9acd65fef21a7796dc406fca9bb8b1fd7ba45256a240173ad5dfda8ca436d50f1045f32390 SHA512 bba6be70dddaec987f45946559f5bf1cde4da0d78c8847a87c2d9f7619c6c312ade2c0098e6187e610706a037f9d21d839a4b9567418f32aa45f5469f329aaba -DIST algol68g-3.11.0.tar.gz 680452 BLAKE2B dcf5c52641458025a49d4279a3f2c57cfbbf04fd294179e9db0b111fb7e0470cf57a4299b2786beb0980ee89bbd88ad488e55c6e0a99a94b99d07bb29ac0a777 SHA512 5bc303f4a65988724fde319209482900bf30bb5152a02660166f018d1e27007f1ba9bc55640da15b28d3be56c9d5a650f3d2ade53e11a0e10fb8fc690ab1ae48 -DIST algol68g-3.11.1.tar.gz 680752 BLAKE2B b6c661d8f5b160420f6a11ec54713e8c72bd7f8994dae4eacd4658ed870994e3068c6f9706e22d1b140455c14a6f2f0c7543fb81c5e0599db3660d1e77ebb0ec SHA512 f53f2344c964bdb8e9bbbc784a1b1f8134a6b07e2f14db89be95a53aa310f483b0757235b3ae9d897c6dbee40a9109101112a4c9c630f93e9094d9637b52173a DIST algol68g-3.11.3.tar.gz 681188 BLAKE2B e90ce4a057f4dc809b49552897da0b2c7bdeaf9f2c740a51c758635e61093bffa91b0b579c7ff1dbd5c53945f93fe12b2bf2d29d979eb02acce1644e1e1890dd SHA512 5e463202d1437d31a4a796fb8bd6c8e4e29f891b07a9eb28e4135270b32913c6dcdee70f487203b1df64899f363a4a41a32f4e782e1d00cd50b6a876b1d54e37 diff --git a/dev-lang/algol68g/algol68g-3.11.0.ebuild b/dev-lang/algol68g/algol68g-3.11.0.ebuild deleted file mode 100644 index c6d284ac6f0d..000000000000 --- a/dev-lang/algol68g/algol68g-3.11.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=9 - -DESCRIPTION="Algol 68 Genie compiler-interpreter" -HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html" -SRC_URI="https://dev.gentoo.org/~xgqt/distfiles/mirrored/${P}.tar.gz - https://jmvdveer.home.xs4all.nl/${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline" - -RDEPEND=" - curl? ( net-misc/curl ) - gsl? ( sci-libs/gsl:= ) - mpfr? ( dev-libs/mpfr:= ) - plotutils? ( media-libs/plotutils ) - postgres? ( dev-db/postgresql:* ) - readline? ( sys-libs/readline:= ) -" -DEPEND=" - ${RDEPEND} -" - -PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" ) - -src_configure() { - local -a myconf=( - $(use_enable curl) - $(use_enable gsl) - $(use_enable mpfr) - $(use_enable ncurses curses) - $(use_enable plotutils) - $(use_enable postgres postgresql) - $(use_enable readline) - $(use_with ncurses) - ) - econf "${myconf[@]}" -} diff --git a/dev-lang/algol68g/algol68g-3.11.1.ebuild b/dev-lang/algol68g/algol68g-3.11.1.ebuild deleted file mode 100644 index c6d284ac6f0d..000000000000 --- a/dev-lang/algol68g/algol68g-3.11.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=9 - -DESCRIPTION="Algol 68 Genie compiler-interpreter" -HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html" -SRC_URI="https://dev.gentoo.org/~xgqt/distfiles/mirrored/${P}.tar.gz - https://jmvdveer.home.xs4all.nl/${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline" - -RDEPEND=" - curl? ( net-misc/curl ) - gsl? ( sci-libs/gsl:= ) - mpfr? ( dev-libs/mpfr:= ) - plotutils? ( media-libs/plotutils ) - postgres? ( dev-db/postgresql:* ) - readline? ( sys-libs/readline:= ) -" -DEPEND=" - ${RDEPEND} -" - -PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" ) - -src_configure() { - local -a myconf=( - $(use_enable curl) - $(use_enable gsl) - $(use_enable mpfr) - $(use_enable ncurses curses) - $(use_enable plotutils) - $(use_enable postgres postgresql) - $(use_enable readline) - $(use_with ncurses) - ) - econf "${myconf[@]}" -} diff --git a/dev-lang/crystal/Manifest b/dev-lang/crystal/Manifest index 3e3b421afa04..2c3a98f40ecd 100644 --- a/dev-lang/crystal/Manifest +++ b/dev-lang/crystal/Manifest @@ -2,3 +2,5 @@ DIST crystal-1.19.1-1-linux-x86_64.tar.gz 57469667 BLAKE2B f1038d31ad30f7129d459 DIST crystal-1.19.1.gh.tar.gz 3955385 BLAKE2B 06c0b860337b5fd884f56d6c8ad7d3a52dc05bc93d37b2f97e2680d288e71b838966515d75d802fd8cfbbb0df777cefdee52db69bb02a7ce59d2a6bf655d6c46 SHA512 98638817764ab627c0e35f38079e81bf0ccece686478db82c891ef5a0cc1e83cc21d68e4ff45957a330110e3d08bafc62ab1740ff9d80303e8bfcf8dccca3da6 DIST crystal-1.20.0-1-linux-x86_64.tar.gz 57716758 BLAKE2B ac3d944284c72ef19e5bd7c87d1b00bbe6c25e0e348b23a1a64b2c765f8ef30ee6ec09346a1526d25c2354b070e640e46ed122a0604a2d5c823fdc16f9164e66 SHA512 457219c0c93216809ac989daf72586abfe01d8342d788ae988349193410bf575a5590dbe01780582013aae5ab29dd912284fbbaa9622f58d9433702a3dd2e318 DIST crystal-1.20.0.gh.tar.gz 4197814 BLAKE2B 35bad75ed24118aa89c6bdd6e34eed57057e494054e0cf0a67e335d685206e4760dc6cff68cfbbb4b3cd258745c316134b5b906c76fb008ee3ab691c10dab597 SHA512 344cea781be2e012003a4ff8526f6aac1d13ffc107d52dd5e7e1e80b2d19b7fb4379a0efe7e879fb7616aae8c70dce479d191910fe8cf5dac27e8d2ed6a17726 +DIST crystal-1.20.1-1-linux-x86_64.tar.gz 57694201 BLAKE2B a79ea90484109a121132d05b4ede770967b0537ab0a6520c65134cd16c432dda3d594de4d3e66ef57198a0b0aa4046d1dffde96d0041a905d1b15554a2caaa99 SHA512 9c3de45d10ba05da58d5ec32b17225797322839e3568061a3848920325891b06df232299624767ce95fe27dfd751f420ba8d8341022fe3bef4c0c97198b922a8 +DIST crystal-1.20.1.gh.tar.gz 4198258 BLAKE2B 47bea8eeb5fffe7a1f820cf76128a94531a8a938d700a8075aa7824827dbe219ba21266d6e0f15d4e16456bfc688dfd601031d9569f8a4b6e38654e21b90cdbb SHA512 1d2422854d3a9d634e2317bc6c06a137da78338a379d280b6a627f70831c773c3927632d25f6dfd05840a74a590704f55b7e27133cf3bc5db373b2a604daafb6 diff --git a/dev-lang/crystal/crystal-1.20.0.ebuild b/dev-lang/crystal/crystal-1.20.0-r1.ebuild index 3a89f3019a7d..129d61fc14a9 100644 --- a/dev-lang/crystal/crystal-1.20.0.ebuild +++ b/dev-lang/crystal/crystal-1.20.0-r1.ebuild @@ -86,11 +86,13 @@ src_configure() { CRYSTAL_CONFIG_PATH="lib:${EPREFIX}/usr/$(get_libdir)/crystal" $(usex debug "" release=1) - progress=true - stats=1 + interpreter="true" + threads="$(makeopts_jobs)" - verbose=1 - check_lld= # disable opportunistic lld + check_lld="" # disable opportunistic lld + progress="true" + stats="true" + verbose="true" AR="$(tc-getAR)" CC="$(tc-getCC)" diff --git a/dev-lang/crystal/crystal-1.20.1.ebuild b/dev-lang/crystal/crystal-1.20.1.ebuild new file mode 100644 index 000000000000..129d61fc14a9 --- /dev/null +++ b/dev-lang/crystal/crystal-1.20.1.ebuild @@ -0,0 +1,134 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +BV="${PV}-1" +BV_AMD64="${BV}-linux-x86_64" + +LLVM_COMPAT=( {19..21} ) + +inherit llvm-r2 multiprocessing shell-completion toolchain-funcs + +DESCRIPTION="The Crystal Programming Language" +HOMEPAGE="https://crystal-lang.org/ + https://github.com/crystal-lang/crystal/" +SRC_URI=" + https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + amd64? ( + https://github.com/crystal-lang/crystal/releases/download/${BV/-*}/crystal-${BV_AMD64}.tar.gz + ) +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc debug llvm-libunwind" +RESTRICT="test" # Upstream test suite not reliable. + +DEPEND=" + dev-libs/boehm-gc:=[threads] + dev-libs/gmp:= + dev-libs/libatomic_ops:= + dev-libs/libevent:= + dev-libs/libpcre2:=[unicode] + dev-libs/libxml2:= + dev-libs/libyaml + dev-libs/pcl:= + $(llvm_gen_dep ' + llvm-core/llvm:${LLVM_SLOT}= + ') + llvm-libunwind? ( + llvm-runtimes/libunwind:= + ) + !llvm-libunwind? ( + sys-libs/libunwind:= + ) +" +RDEPEND=" + ${DEPEND} +" + +PATCHES=( + "${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix.patch" + "${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix-2.patch" + "${FILESDIR}/${PN}-1.15.0-remove-enviroment-clearing-tests.patch" +) + +# Do not complain about CFLAGS etc. Crystal rebuilds itself. +QA_FLAGS_IGNORED='.*' + +src_prepare() { + default + + # Link against system boehm-gc instead of upstream prebuilt static library + # bug #929123, #929989 and #931100 + # https://github.com/crystal-lang/crystal/issues/12035#issuecomment-2522606612 + rm "${WORKDIR}/crystal-${BV}"/lib/crystal/libgc.a || die +} + +src_configure() { + local bootstrap_path="${WORKDIR}/${PN}-${BV}/bin" + + if [[ ! -d "${bootstrap_path}" ]] ; then + eerror "Binary tarball does not contain expected directory:" + die "'${bootstrap_path}' path does not exist." + fi + + # crystal uses 'LLVM_TARGETS' to override default list of targets + unset LLVM_TARGETS + + MY_EMAKE_COMMON_ARGS=( + PATH="${bootstrap_path}:${PATH}" + + CRYSTAL_CONFIG_VERSION="${PV}" + CRYSTAL_CONFIG_PATH="lib:${EPREFIX}/usr/$(get_libdir)/crystal" + + $(usex debug "" release=1) + interpreter="true" + + threads="$(makeopts_jobs)" + check_lld="" # disable opportunistic lld + progress="true" + stats="true" + verbose="true" + + AR="$(tc-getAR)" + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" + LLVM_CONFIG="$(get_llvm_prefix -d)/bin/llvm-config" + ) +} + +src_compile() { + emake "${MY_EMAKE_COMMON_ARGS[@]}" + + if use doc ; then + emake docs "${MY_EMAKE_COMMON_ARGS[@]}" + fi +} + +src_test() { + nonfatal emake std_spec "${MY_EMAKE_COMMON_ARGS[@]}" +} + +src_install() { + insinto "/usr/$(get_libdir)/crystal" + doins -r src/. + + exeinto /usr/bin + doexe .build/crystal + + newzshcomp etc/completion.zsh _crystal + newfishcomp etc/completion.fish crystal.fish + + dodoc -r samples + doman "man/${PN}.1" + newbashcomp etc/completion.bash "${PN}" + + if use doc ; then + docinto api + dodoc -r docs/. + fi +} diff --git a/dev-libs/c-blosc2/Manifest b/dev-libs/c-blosc2/Manifest index d9ee74ed21a1..6b5175a69b14 100644 --- a/dev-libs/c-blosc2/Manifest +++ b/dev-libs/c-blosc2/Manifest @@ -1,3 +1 @@ DIST c-blosc2-2.23.1.gh.tar.gz 3338640 BLAKE2B 528b4b87d2b8e29648de131b1d01a62402dbfd582e141b7933fa1faaf102aa6bcd5e4348e54a6bed7ac3046866e5a2bee8a808a14ad38c50d1ca310a59d692b2 SHA512 c6dd74c6f31649d361395b4817a2ca2e0da5353c5cd3ef7ce5f3969251b3393aaf3c2941cc77dd41a9672efb8acc7f68a9e5e8acf86b978123eed13a1225f827 -DIST c-blosc2-3.0.0.gh.tar.gz 1823736 BLAKE2B c23bc88288f07903344da86117576fb29f5a2085d5c6d16a466b7152e7edbf47a1c4862d4ffa7e06bff48a75b03276a6748729ede65f623718a7659a09a14607 SHA512 d6d85682f2d9c269ca896e7fc893d32c226634008f61b6078200d484a168730251545ed01f011980152d8d4b5bec9f8ed0a365abe251de4459d51e81ceadc733 -DIST zfp-1.0.1.gh.tar.gz 508016 BLAKE2B 6911402dd70fa423ac0a3add54229e2603530c9444534da603e08c078c2a8087c78989f113756e4388b00e17ebb7fe92fb7e98f43fca837eaaa8c728cb2d41da SHA512 5bbd98ed2f98e75c654afa863cab3023abb2eeb8f203f9049c75d5dbdf4b364cfb5c8378e10e6aaeaf13242315ad4949b06619810a67b3adaed095b7e8a48d5a diff --git a/dev-libs/c-blosc2/c-blosc2-3.0.0.ebuild b/dev-libs/c-blosc2/c-blosc2-3.0.0.ebuild deleted file mode 100644 index 5d8103d603e7..000000000000 --- a/dev-libs/c-blosc2/c-blosc2-3.0.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -ZFP_PV=1.0.1 -ZFP_P=zfp-${ZFP_PV} - -DESCRIPTION="Blocking, shuffling and lossless compression library" -HOMEPAGE=" - https://blosc.org/c-blosc2/c-blosc2.html - https://github.com/Blosc/c-blosc2/ -" -SRC_URI=" - https://github.com/Blosc/c-blosc2/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz - https://github.com/LLNL/zfp/archive/${ZFP_PV}.tar.gz - -> ${ZFP_P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0/8" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test +zlib +zstd" -REQUIRED_USE="test? ( zlib zstd )" -RESTRICT="!test? ( test )" - -DEPEND=" - >=app-arch/lz4-1.7.5:= - zlib? ( virtual/zlib:= ) - zstd? ( app-arch/zstd:= ) -" -RDEPEND=" - ${DEPEND} -" - -# Tests fail in parallel, https://github.com/Blosc/c-blosc2/issues/432 -CTEST_JOBS=1 - -src_configure() { - # remove bundled libs (just in case) - rm -rf internal-complibs || die - - local mycmakeargs=( - -DBUILD_STATIC=OFF - -DBUILD_TESTS=$(usex test) - -DBUILD_BENCHMARKS=OFF - -DBUILD_EXAMPLES=OFF - -DBUILD_FUZZERS=OFF - -DDEACTIVATE_ZLIB=$(usex !zlib) - -DDEACTIVATE_ZSTD=$(usex !zstd) - -DPREFER_EXTERNAL_LZ4=ON - -DPREFER_EXTERNAL_ZLIB=ON - -DPREFER_EXTERNAL_ZSTD=ON - # TODO: unbundle? make plugins optional? - -DBLOSC_ZFP_SOURCE_DIR="${WORKDIR}/${ZFP_P}" - - # force regular zlib, at least for the time being - -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB_NG=ON - - # upstream overrides CMAKE_C_FLAGS, preventing ${CFLAGS} defaults - # from applying, https://github.com/Blosc/c-blosc2/issues/433 - -DCMAKE_C_FLAGS="${CFLAGS}" - # why do we need to pass it explicitly? - -DCMAKE_INSTALL_INCLUDEDIR=include - ) - cmake_src_configure -} diff --git a/dev-libs/level-zero/Manifest b/dev-libs/level-zero/Manifest index f0e334b10ea9..6b324bc846e5 100644 --- a/dev-libs/level-zero/Manifest +++ b/dev-libs/level-zero/Manifest @@ -1 +1,2 @@ DIST level-zero-1.28.2.tar.gz 1744509 BLAKE2B eb4c2322a262f78c9cd4b803e0caaf194ad0eda4c26dbaba06714c2ac7975ecbc0fa75c454023a1381fb5a649be55942036dac4f9a53eebe61d79d6f3ec42cad SHA512 3d97c903c23efccca7c9e2d652db8c0e263be87b1e823b79612effac0432836b1a538b263740fbd464687f88ced5402a6d3883206e30a70375d6ae82fd6da2c3 +DIST level-zero-1.28.3.tar.gz 1746082 BLAKE2B e329571ee5f2d3b16e475da3b01d4579f353a3b11e557534c165c965de8d261f0630dcd13e104506ae8dfc6725552548e6ca248d0095a710707d000dc298a1fe SHA512 dea2ce0e41a230b9bceb2bf2b99dba8d37f06fd0e2a794850d67f1d38c49eaa8cb31d428f09b0560a5dcede942077826ea3c7aea5d952d4261dd598e3e2a49da diff --git a/dev-libs/level-zero/level-zero-1.28.3.ebuild b/dev-libs/level-zero/level-zero-1.28.3.ebuild new file mode 100644 index 000000000000..6b62457c8db6 --- /dev/null +++ b/dev-libs/level-zero/level-zero-1.28.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="oneAPI Level Zero headers, loader and validation layer" +HOMEPAGE="https://github.com/oneapi-src/level-zero" +SRC_URI="https://github.com/oneapi-src/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" + +RDEPEND="dev-libs/spdlog:=" +DEPEND="${RDEPEND}" + +src_prepare() { + # Don't hardcore -Werror + sed -e 's/-Werror//g' -e '/CMAKE_COMPILE_WARNING_AS_ERROR/ s/ON/OFF/' -i CMakeLists.txt || die + + cmake_src_prepare + + # According to upstream, release tarballs should contain this file but at least + # some of them do not. Fortunately it is trivial to make one ourselves. + echo "$(ver_cut 3)" > "${S}"/VERSION_PATCH || die +} + +src_configure() { + local mycmakeargs=( + -DSYSTEM_SPDLOG="ON" + ) + + cmake_src_configure +} diff --git a/dev-libs/thrift/files/thrift-0.23.0-patch-lib_cpp_src_thrift_transport_TSSLSocket_cpp b/dev-libs/thrift/files/thrift-0.23.0-patch-lib_cpp_src_thrift_transport_TSSLSocket_cpp new file mode 100644 index 000000000000..07b0ef876d04 --- /dev/null +++ b/dev-libs/thrift/files/thrift-0.23.0-patch-lib_cpp_src_thrift_transport_TSSLSocket_cpp @@ -0,0 +1,41 @@ +diff '--color=auto' -urN thrift-0.23.0.orig/lib/cpp/src/thrift/transport/TSSLSocket.cpp thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp +--- thrift-0.23.0.orig/lib/cpp/src/thrift/transport/TSSLSocket.cpp 2026-04-29 22:19:18.304809605 +0200 ++++ thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp 2026-04-29 22:20:49.370004107 +0200 +@@ -157,18 +157,6 @@ + #endif + EVP_cleanup(); + CRYPTO_cleanup_all_ex_data(); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000 +- // Do nothing unless an openssl derivative is detected +-# if !defined(OPENSSL_IS_BORINGSSL) && !defined(OPENSSL_IS_AWSLC) +- // https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_thread_stop.html +- OPENSSL_thread_stop(); +-# endif +-#else +- // ERR_remove_state() was deprecated in OpenSSL 1.0.0 and ERR_remove_thread_state() +- // was deprecated in OpenSSL 1.1.0; these functions and should not be used. +- // https://www.openssl.org/docs/manmaster/man3/ERR_remove_state.html +- ERR_remove_state(0); +-#endif + ERR_free_strings(); + + mutexes.reset(); +@@ -398,18 +386,6 @@ + SSL_free(ssl_); + ssl_ = nullptr; + handshakeCompleted_ = false; +-#if OPENSSL_VERSION_NUMBER >= 0x10100000 +- // Do nothing unless an openssl derivative is detected +-# if !defined(OPENSSL_IS_BORINGSSL) && !defined(OPENSSL_IS_AWSLC) +- // https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_thread_stop.html +- OPENSSL_thread_stop(); +-# endif +-#else +- // ERR_remove_state() was deprecated in OpenSSL 1.0.0 and ERR_remove_thread_state() +- // was deprecated in OpenSSL 1.1.0; these functions and should not be used. +- // https://www.openssl.org/docs/manmaster/man3/ERR_remove_state.html +- ERR_remove_state(0); +-#endif + } + TSocket::close(); + } diff --git a/dev-libs/thrift/thrift-0.23.0.ebuild b/dev-libs/thrift/thrift-0.23.0.ebuild index 771d62cb7041..9ba842819e13 100644 --- a/dev-libs/thrift/thrift-0.23.0.ebuild +++ b/dev-libs/thrift/thrift-0.23.0.ebuild @@ -38,7 +38,7 @@ PATCHES=( src_prepare() { if use libressl; then - eapply -p1 ${FILESDIR}/thrift-0.22.0-patch-lib_cpp_src_thrift_transport_TSSLSocket_cpp + eapply -p1 ${FILESDIR}/thrift-0.23.0-patch-lib_cpp_src_thrift_transport_TSSLSocket_cpp fi cmake_src_prepare diff --git a/dev-libs/weston/Manifest b/dev-libs/weston/Manifest index 76036d119170..5c01da68bee2 100644 --- a/dev-libs/weston/Manifest +++ b/dev-libs/weston/Manifest @@ -1,2 +1,2 @@ DIST weston-14.0.2.tar.xz 2043392 BLAKE2B 5ba3a563925d966adf1fdb5f7e00f90ad0b27b0fdb3781f055f17f01e75ff234f9103529bd8a24d440047ec654db91f8f264da6228410dd2b668138ad458f6ae SHA512 e8214ec893e6c3ae94eb3c92feba104b0201843e9143f726a3e9a4d396d02523c94da706c1348cf934bc339fb1a4bc1fecdb865f0ea914115fd346d9eda091f5 -DIST weston-15.0.0.tar.xz 3324132 BLAKE2B b09b10e7e5d113b502836ec4621870f4f5693d0cd329b68fd67a3d9493730ec3fb15189c4be061292ea0da801684f636740134c6fb76779dae59a4d1bc69626f SHA512 1196db00b473f036ba290e1073729c2b9e29ac061d9687b30dfad14e3b139313d3ca9c8000838e1b9c39713e96a2c544ec05d80bafad0b8ea1d1f380befa250d +DIST weston-15.0.1.tar.xz 3324344 BLAKE2B db73348e230f7848e7f587f6bbb251202faf5b0b161c86b694174894a2ee80cc5d0f996fd4d2b6438b51738fc7353eabfb9d1603102f0946c080c2d15746582f SHA512 555731ddfaf7e3ef9bf43be682e20338ee207b434a72011b730c9b0ebde4daeaeb9cc9d09a707c32798f0184a55144f64e818551efe7e71413876e45e3cb3523 diff --git a/dev-libs/weston/weston-15.0.0.ebuild b/dev-libs/weston/weston-15.0.1.ebuild index 08922279ddb2..08922279ddb2 100644 --- a/dev-libs/weston/weston-15.0.0.ebuild +++ b/dev-libs/weston/weston-15.0.1.ebuild diff --git a/dev-lua/dkjson/Manifest b/dev-lua/dkjson/Manifest index 56a11249f4fd..e8de77375821 100644 --- a/dev-lua/dkjson/Manifest +++ b/dev-lua/dkjson/Manifest @@ -1 +1,2 @@ DIST dkjson-2.8.tar.gz 17442 BLAKE2B cba188f1f70f948a4222edf20540d2d33a015126b302800d1c574352e2b780e736b06baf20cc6cc960790b35810810f7ac4bfa8cc20571b29d006d0a435b0078 SHA512 aca05fd72d25151b008573b73e95e3f808ef7435f36db2814d8825a39a38917fdc7469557dce6fac951fbe9d3b67eaa5fd3701746743499a8036119bd262b222 +DIST dkjson-2.9.tar.gz 17961 BLAKE2B 3fc367539443b5ef45af00865c2683cf38f9074d0f494ed4bd051aaf2a07ba15053f6e80a4540e9fad29197a132746d6474cd4cf34babb0f7a01f5e84f3a9a64 SHA512 76f31c40367077827fdc353cf24bb3f73b7c31fcba9cd377503b7de36d6cf2f27b9cc86d26bf012cbfd7dc8c2e934f74e6393792031c9819aec7b585adb1eca4 diff --git a/dev-lua/dkjson/dkjson-2.9.ebuild b/dev-lua/dkjson/dkjson-2.9.ebuild new file mode 100644 index 000000000000..5aebb752adc7 --- /dev/null +++ b/dev-lua/dkjson/dkjson-2.9.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1,3,4} luajit ) + +inherit lua + +DESCRIPTION="David Kolf's JSON module for Lua" +HOMEPAGE="http://dkolf.de/src/dkjson-lua.fsl/" +SRC_URI="http://dkolf.de/dkjson-lua/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND="${LUA_DEPS}" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + test? ( ${RDEPEND} ) +" + +DOCS=( "readme.md" ) + +lua_src_test() { + ${ELUA} jsontest.lua || die + ${ELUA} speedtest.lua ${PN} || die +} + +src_test() { + lua_foreach_impl lua_src_test +} + +lua_src_install() { + insinto $(lua_get_lmod_dir) + doins dkjson.lua +} + +src_install() { + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-lua/luasystem/Manifest b/dev-lua/luasystem/Manifest index bc3b4b5c1f3c..d85a342a3ef3 100644 --- a/dev-lua/luasystem/Manifest +++ b/dev-lua/luasystem/Manifest @@ -1 +1,2 @@ DIST luasystem-0.7.0.tar.gz 86871 BLAKE2B a320d4a012f3cbccfedae909512e44f97be49628485854e3860486beb2f6cc3e5396cb6df56d94c88312b2f35adaa8325f7c5e0914fcec04004f556bc2269f21 SHA512 24b49f0863f762bb8875dea7ab08a001e1f667aa248581cc36e9bfe247b1fe62dc7739854c69b0b2f5c85da4401d1dd6a59dafac19225362e92704f8c9cf226d +DIST luasystem-0.7.1.tar.gz 87029 BLAKE2B f63aeabfd5bf920286e5851270ea60cda99d8d8efe58196dbd38b9269dcb8fdbe0c8a5ba6aa7ea47167db07610c5b172a669a4e750f3246709ccd094b052589b SHA512 4d7dbfe43df4b8675faa62d79b168223881e4b2a907a77ace2556a31db112c11c6b87252661a53430c3229b557d5be143a0063cb04e5601531e491794de5edd5 diff --git a/dev-lua/luasystem/luasystem-0.7.1.ebuild b/dev-lua/luasystem/luasystem-0.7.1.ebuild new file mode 100644 index 000000000000..9a0a5ce336e7 --- /dev/null +++ b/dev-lua/luasystem/luasystem-0.7.1.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1,3,4} luajit ) +MY_PV="${PV/_p/-}" + +inherit lua toolchain-funcs + +DESCRIPTION="Platform independent system calls for Lua" +HOMEPAGE="https://github.com/lunarmodules/luasystem" +SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND="${LUA_DEPS}" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + test? ( + dev-lua/busted[${LUA_USEDEP}] + dev-lua/lua_cliargs[${LUA_USEDEP}] + ${RDEPEND} + ) +" + +src_prepare() { + default + + lua_copy_sources +} + +lua_src_test() { + busted --exclude-tags=manual --lua=${ELUA} || die +} + +src_test() { + lua_foreach_impl lua_src_test +} + +lua_src_compile() { + pushd "${BUILD_DIR}" || die + + local myemakeargs=( + "CC=$(tc-getCC)" + "LD=$(tc-getCC)" + "LUAINC_linux=$(lua_get_include_dir)" + "MYCFLAGS=${CFLAGS}" + "MYLDFLAGS=${LDFLAGS}" + ) + + emake "${myemakeargs[@]}" linux + + popd +} + +src_compile() { + lua_foreach_impl lua_src_compile +} + +lua_src_install () { + pushd "${BUILD_DIR}" || die + + local emakeargs=( + "INSTALL_TOP_CDIR=${ED}/$(lua_get_cmod_dir)" + "INSTALL_TOP_LDIR=${ED}/$(lua_get_lmod_dir)" + "LUA_INC=${ED}/$(lua_get_include_dir)" + ) + + emake "${emakeargs[@]}" install + + insinto $(lua_get_lmod_dir)/system + doins system/init.lua + + popd +} + +src_install() { + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-php/pecl-mongodb/Manifest b/dev-php/pecl-mongodb/Manifest index e61f7b3e2b68..a13f245d9609 100644 --- a/dev-php/pecl-mongodb/Manifest +++ b/dev-php/pecl-mongodb/Manifest @@ -1,2 +1,2 @@ -DIST mongodb-2.2.0.tgz 2230162 BLAKE2B 5d90ecea1fe0d1ca692d35fe5740cbe4a4060cd012bd8f5611f315d419558dc5802ade652de7fabd380af58f9808c7f036436f638380deef4d299ab40fb27508 SHA512 e441e786ce98832765f5bde788c2802c5b550b3cca27729617da86e720f34fd9b7ca2e111a76920c81353ff320e6d59fbc8f5e8e89e97930873aaca691642b02 DIST mongodb-2.2.1.tgz 2229480 BLAKE2B d2d1e6b8a22fd35558bd2f87e9ece87d523097db98f7f557cc5058571cabddbef3f5fdfc60acc9aca549742615ca2198decff25ae0c3f1329f299c8a9bd38268 SHA512 ce9450d978c9031b7b8d199e7ad0d1ab7420ae8584d8926b2965f548375c4bd056968af90a731549f7077d95f0bbe1f54c819844d90eb4096be1079ae3d69561 +DIST mongodb-2.3.0.tgz 2244600 BLAKE2B b6501072b824796c2951921647377a67f4bc48e43ee932b689db40ee17f68839bbd0cb2a43e92796c930e040fe16e572ba6d485288389c4ff1b0cc41cd621e32 SHA512 6fb2988b622ca819e3c407667fa8998404c1098473d9a60749a4ab50eff34343a436ea0dd4af265d5f7d871490ccdebeba2a0057725683cbd1d4de70b3ce1f8b diff --git a/dev-php/pecl-mongodb/pecl-mongodb-2.2.0.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-2.3.0.ebuild index 08b48aa7ae24..5a945a81adfb 100644 --- a/dev-php/pecl-mongodb/pecl-mongodb-2.2.0.ebuild +++ b/dev-php/pecl-mongodb/pecl-mongodb-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 PHP_EXT_NAME="mongodb" -USE_PHP="php8-1 php8-2 php8-3 php8-4" +USE_PHP="php8-2 php8-3 php8-4 php8-5" inherit php-ext-pecl-r3 @@ -15,10 +15,10 @@ KEYWORDS="~amd64 ~x86" IUSE="libressl sasl test" PHP_DEPEND=" - php_targets_php8-1? ( dev-lang/php:8.1[ssl,zlib] ) php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) - php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] )" + php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) + php_targets_php8-5? ( dev-lang/php:8.5[ssl,zlib] )" COMMON_DEPEND=" ${PHP_DEPEND} !libressl? ( dev-libs/openssl:0= ) diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index 03df048bb494..a4dad3df0787 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -6,3 +6,4 @@ DIST boto3-1.42.88.gh.tar.gz 1120718 BLAKE2B f45f5c0ee3a6b262f4e49a5fe670a225c1a DIST boto3-1.42.91.gh.tar.gz 1124704 BLAKE2B b6916ead939d892467698a93b7fa9257f094cf3095465a38010ddbd0125e8ad042a28b10c4ee260e12e2819504855ab11ce18ab4100405c95ceec5272a894e71 SHA512 f6c8fc30f6846dbf9dce51177306cea7794bd74438322566ad7f5d6bdc60ca419b23dd08c5f92ba9a73fca8c8bc017555167a68c8966a0a0d04851e81c9a7990 DIST boto3-1.42.96.gh.tar.gz 1129293 BLAKE2B 186684ffe3d8e776e6f7462b4c7fdd996febcfc84ef87b3fe7399bc44bf00578177dab353d758231d0b2437fdbbef9204fc58b2eeda8f5be95b1d74e967c0d1d SHA512 c265a94e7fb4e7ed19e2f5aa152410c83d8e171373eb95c3572e8cc03fae6371c2ee7145722adffdab4e680b8f2abd0f3c3f4ff52bbd20fdfccd932f30cb9a20 DIST boto3-1.42.97.gh.tar.gz 1131087 BLAKE2B 34f150787ba8d312ac69b627a3db4d7ed0067beac56c18e2c5660448aeb389bed270fdac8c98b009f94191338741998ed482deffd4cb2e4ec2a987a719acb5a5 SHA512 cab47d3383b780e772b88afb1ce49d54050be711c4dd203765f9780607dcf409be4b2871014884684aaf8dcdaf1a2178baa8ca1188bbf31aceb64d8a0ed800ab +DIST boto3-1.43.0.gh.tar.gz 1130987 BLAKE2B 290e6b812c6b9bdb77c5206c5a9534bda7b67d04afe8d9075ac0e7130bdaad26f291ed49699429037287b08334c5f5deda69769f2dbf443dd05011a5f9cf9d8b SHA512 1d8ffa67ae3d11c67ef892707f8dbd1c757bf64e1df5b7d5fd941846169c9e6c72a1eea64298791c78374e33b90335b84fc9b0d5739c9c4e56460ed9290cc056 diff --git a/dev-python/boto3/boto3-1.43.0.ebuild b/dev-python/boto3/boto3-1.43.0.ebuild new file mode 100644 index 000000000000..11cadb4f704f --- /dev/null +++ b/dev-python/boto3/boto3-1.43.0.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.17.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 426e504fcf50..f058d53c8605 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -6,3 +6,4 @@ DIST botocore-1.42.88.gh.tar.gz 16115557 BLAKE2B cb2470ce6d16bb0e91d6976b84899ee DIST botocore-1.42.91.gh.tar.gz 16138871 BLAKE2B b5090d9707e20d83bdcc2757f13f6555a2fe50bc10361c8bbea9fba5fe09183ac588700864fec9677ba0bc84d85337c0b2a5f8d38ab0a832068dd1292000ee95 SHA512 5c96771c9170476817b3c4fc8e4201123389867015285c14a6db09856f2a5f9b9110523cf3a757fa2182fe726e99c549871b62a2ce3dc80d6b8abf703f0103cb DIST botocore-1.42.96.gh.tar.gz 16190988 BLAKE2B c63dbf335904dd9fd56d2881428fab2500ef36104fee2f979fb8394860eb30743022db17ffaabfe14bb896bed2b03728e32f0d0f8e7e6f1979abefb171f87a7c SHA512 d3f55cb1c05cb587b89f83eb3ca58fc002d67187e958deb25d8bd571bac89802e63231da4e6b9261616003e6cb3972291697141ad4208cec76ce39769aa81fc4 DIST botocore-1.42.97.gh.tar.gz 16197069 BLAKE2B c907476ae52d71e8dc63c7074a2b603a92823e94a31fc3a71739dcd0c6e73854bb1149eada875859ead93ca38873c3890e1c524799ac3173ea3e124cc436583b SHA512 7b9d576340fcc3d830015b2b1e895970e58afeb98796da53ce7353c78532f5661f6c4222d6f935cbd9363277c04a5be3fbac5554fa0f6c48742d1d52fafc868f +DIST botocore-1.43.0.gh.tar.gz 16218774 BLAKE2B e98285e4e8920fe91163113fe45414e858a3fd9f907f4a2fdba4c2e1583214400f40e34259517da9c6640acd2742108fb9a34b5f2f6dc93170cc799cadd61995 SHA512 fa9f9af62657dd2be034725018f221cc6ab120df21ee438564c3e12690a59290d31b24921e1fe429c2cc22ca662bbc69f4b493e09213afecb52be04a0581b05f diff --git a/dev-python/botocore/botocore-1.43.0.ebuild b/dev-python/botocore/botocore-1.43.0.ebuild new file mode 100644 index 000000000000..f6ce0d9ed8d5 --- /dev/null +++ b/dev-python/botocore/botocore-1.43.0.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/build/Manifest b/dev-python/build/Manifest index aad7a03c1f39..8025982653f5 100644 --- a/dev-python/build/Manifest +++ b/dev-python/build/Manifest @@ -1,6 +1,3 @@ DIST build-1.3.0.gh.tar.gz 50871 BLAKE2B 0ca200c92e3bfa3ee91643cb140e4e6e90b01cdf820576a4b36e828ae5ed981075e22f0882b3ef6e2032a7f3cab3810a12c2b68503fccae89060b7cff8da9164 SHA512 f34450ffc92a434af2614f4341b38c8feed18ce9a799196bff3f735afc52334cacb34d2a831c3264bbfaacda642a5e4defe3842f8010cd687d47e2d018a191d0 -DIST build-1.4.0.gh.tar.gz 52372 BLAKE2B f7dac4752e908eee7e3f31af1da4c8854d5d1e3ac5210ea8acd1b306fa25a95b26ed68a7990782afc27e69b65f9719b8f914852ce2ac7989a89e77c06dd354bc SHA512 aad08af8a163c914671c1b149306061ea93fc1fb5f066dda5a351ddec4b7b374160bf657d30b0eccc498c4f53950307646d792b58cb0efb91975b2541e111d88 -DIST build-1.4.1.gh.tar.gz 89234 BLAKE2B 2447acae8dd03b37bd0be043f4428566a7cd7ec0b816ae2c2f5cf460741ff54310b0eb9a017f797662170a2c37cde6e41a4c6a031fee47da8ca2d2d2dcf439df SHA512 ed6e6329ee07c547a8cd7568d4f769b50e117a684c1d087380f896183db4bd6c4d921d75913525b301f994ff865d5acbe44290d8a1aa7c13c169979b942ceedc -DIST build-1.4.2.gh.tar.gz 89637 BLAKE2B 723fdbf83eb942eb744f9bd000bbea8fc231f648ff38024aa29c6b7768b80907dfb4fa7360bbb3b61efa2a1d5f6854922447a988e19e012729fc09f9c45a14f8 SHA512 f404a97391497a21c401976ec95cc9544602c6d8c81443b011ecffe8785a42a9f7b8e4f1d2fdd7eba0f74e4ca74aae1c19f66dfe7dd53eb08c0a0efa8934b67d -DIST build-1.4.3.gh.tar.gz 95503 BLAKE2B 71ba5fef2b9bd62eb1303d8d282ce5f6a18b7ba47632604a483f242d283295f8f52f2121a931607cbd9677e3e74cacb75f0a8992f147b07645fecd5121bb65ee SHA512 34158d518257aaeaffc0fba4275d4af9f62b2fa5fff80528aa968a33a3c2d91df96681167d964dd2922e2fcc694263a1a489ea1295f8dd4d75046ed7035ac266 DIST build-1.4.4.gh.tar.gz 95523 BLAKE2B f8f9247d4fbc27930a578fb4f0abba1e24af3e546f9b8af4fdef12e1d7c782b78805c917cbad77a9e8d2de9bd3e86613c8dc4a08fd5421e5d46dea948a3b8bdc SHA512 e296ad08b28b29e1233799ef25ad54265a19ced4c1c09db178776907d8ecc81f18d3f6bcc0f2197b250e5791e8c46362ba23a6a2ca455cab9d9dd308e4a8fc59 +DIST build-1.5.0.gh.tar.gz 95863 BLAKE2B 58bd95373d424cc06a4cb32da7d3e58743d0a5b1b59f92887ceb5d432d0f84ca92d3ba1e32c77580161c24b6f245103ddde2c674633e49f3a7a6f742e19e59ed SHA512 25f69c82047698e802feaf162a1ee334d32f83689ace3e2116d2329a10310b3bcfc6f2e42242d875f4781dffb364c95112819eb2bdaaecc0ebd4b9c00a94b99b diff --git a/dev-python/build/build-1.4.0.ebuild b/dev-python/build/build-1.4.0.ebuild deleted file mode 100644 index b69bda624b0a..000000000000 --- a/dev-python/build/build-1.4.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=flit -PYTHON_TESTED=( python3_{11..14} pypy3_11 ) -PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="A simple, correct PEP517 package builder" -HOMEPAGE=" - https://pypi.org/project/build/ - https://github.com/pypa/build/ -" -SRC_URI=" - https://github.com/pypa/build/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test test-rust" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/packaging-24.0[${PYTHON_USEDEP}] - dev-python/pyproject-hooks[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/setuptools-scm-6[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - $(python_gen_cond_dep ' - >=dev-python/filelock-3[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - >=dev-python/pytest-mock-2[${PYTHON_USEDEP}] - >=dev-python/pytest-rerunfailures-9.1[${PYTHON_USEDEP}] - >=dev-python/pytest-xdist-1.34[${PYTHON_USEDEP}] - >=dev-python/setuptools-56.0.0[${PYTHON_USEDEP}] - >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}] - >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}] - test-rust? ( - !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) - ) - ' "${PYTHON_TESTED[@]}") - ) -" - -python_test() { - if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then - einfo "Skipping tests on ${EPYTHON}" - return - fi - - local EPYTEST_DESELECT=( - # broken by uv being installed outside venv - tests/test_env.py::test_external_uv_detection_success - ) - - if ! has_version "dev-python/uv"; then - EPYTEST_DESELECT+=( - tests/test_env.py::test_uv_impl_install_cmd_well_formed - 'tests/test_env.py::test_venv_creation[uv-venv+uv-None]' - ) - fi - - local EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} ) - local EPYTEST_XDIST=1 - epytest -m "not network" -} diff --git a/dev-python/build/build-1.4.2.ebuild b/dev-python/build/build-1.4.2.ebuild deleted file mode 100644 index b69bda624b0a..000000000000 --- a/dev-python/build/build-1.4.2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=flit -PYTHON_TESTED=( python3_{11..14} pypy3_11 ) -PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="A simple, correct PEP517 package builder" -HOMEPAGE=" - https://pypi.org/project/build/ - https://github.com/pypa/build/ -" -SRC_URI=" - https://github.com/pypa/build/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test test-rust" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/packaging-24.0[${PYTHON_USEDEP}] - dev-python/pyproject-hooks[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/setuptools-scm-6[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - $(python_gen_cond_dep ' - >=dev-python/filelock-3[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - >=dev-python/pytest-mock-2[${PYTHON_USEDEP}] - >=dev-python/pytest-rerunfailures-9.1[${PYTHON_USEDEP}] - >=dev-python/pytest-xdist-1.34[${PYTHON_USEDEP}] - >=dev-python/setuptools-56.0.0[${PYTHON_USEDEP}] - >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}] - >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}] - test-rust? ( - !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) - ) - ' "${PYTHON_TESTED[@]}") - ) -" - -python_test() { - if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then - einfo "Skipping tests on ${EPYTHON}" - return - fi - - local EPYTEST_DESELECT=( - # broken by uv being installed outside venv - tests/test_env.py::test_external_uv_detection_success - ) - - if ! has_version "dev-python/uv"; then - EPYTEST_DESELECT+=( - tests/test_env.py::test_uv_impl_install_cmd_well_formed - 'tests/test_env.py::test_venv_creation[uv-venv+uv-None]' - ) - fi - - local EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} ) - local EPYTEST_XDIST=1 - epytest -m "not network" -} diff --git a/dev-python/build/build-1.4.3.ebuild b/dev-python/build/build-1.4.3.ebuild deleted file mode 100644 index b69bda624b0a..000000000000 --- a/dev-python/build/build-1.4.3.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=flit -PYTHON_TESTED=( python3_{11..14} pypy3_11 ) -PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="A simple, correct PEP517 package builder" -HOMEPAGE=" - https://pypi.org/project/build/ - https://github.com/pypa/build/ -" -SRC_URI=" - https://github.com/pypa/build/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test test-rust" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/packaging-24.0[${PYTHON_USEDEP}] - dev-python/pyproject-hooks[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/setuptools-scm-6[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - $(python_gen_cond_dep ' - >=dev-python/filelock-3[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - >=dev-python/pytest-mock-2[${PYTHON_USEDEP}] - >=dev-python/pytest-rerunfailures-9.1[${PYTHON_USEDEP}] - >=dev-python/pytest-xdist-1.34[${PYTHON_USEDEP}] - >=dev-python/setuptools-56.0.0[${PYTHON_USEDEP}] - >=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}] - >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}] - test-rust? ( - !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) - ) - ' "${PYTHON_TESTED[@]}") - ) -" - -python_test() { - if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then - einfo "Skipping tests on ${EPYTHON}" - return - fi - - local EPYTEST_DESELECT=( - # broken by uv being installed outside venv - tests/test_env.py::test_external_uv_detection_success - ) - - if ! has_version "dev-python/uv"; then - EPYTEST_DESELECT+=( - tests/test_env.py::test_uv_impl_install_cmd_well_formed - 'tests/test_env.py::test_venv_creation[uv-venv+uv-None]' - ) - fi - - local EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} ) - local EPYTEST_XDIST=1 - epytest -m "not network" -} diff --git a/dev-python/build/build-1.4.1.ebuild b/dev-python/build/build-1.5.0.ebuild index b69bda624b0a..8950eff25059 100644 --- a/dev-python/build/build-1.4.1.ebuild +++ b/dev-python/build/build-1.5.0.ebuild @@ -37,6 +37,7 @@ BDEPEND=" ${RDEPEND} $(python_gen_cond_dep ' >=dev-python/filelock-3[${PYTHON_USEDEP}] + >=dev-python/pip-22.3[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] >=dev-python/pytest-mock-2[${PYTHON_USEDEP}] >=dev-python/pytest-rerunfailures-9.1[${PYTHON_USEDEP}] diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest index 24ab4a7db25c..4a65b638ec22 100644 --- a/dev-python/cfn-lint/Manifest +++ b/dev-python/cfn-lint/Manifest @@ -5,3 +5,5 @@ DIST cfn_lint-1.49.3.tar.gz 4037038 BLAKE2B 621ac3cb97d5924e1b29c75924f89a3942b7 DIST cfn_lint-1.49.3.tar.gz.provenance 9768 BLAKE2B fc1c6756840e9ae9862c80cd6854a788ffe4a7e35724121fb1c5aaab38bc1d9be23b66b35cbcb14490e55ee75a39459cd542545d9c543f5bdd53776d8d81c1ed SHA512 acd61ba2f218a51b4ad078465b02a684d8a2903d440450a8a6b9844e28daf64182f887d06734cf7fea433a4c17920ef3236b3e305625fc8a2666cda84e7bc403 DIST cfn_lint-1.50.0.tar.gz 4063399 BLAKE2B 6182121e00285a7eceaf57ab4dd301770b92ad92e2619b0b4b548920e4746857e5455eef1caee536247cc0976a00f266cd237b98be8adfc165166afb0160253a SHA512 d7403236c4647a4791c2aab643ff77fa819b505204011ed8940b8881719c873354448ce0759c1750be5c87ca63baec7a7cddcf3ccbef03dbd60d32cb08739d41 DIST cfn_lint-1.50.0.tar.gz.provenance 9956 BLAKE2B 800d31ae2167926124ac9247bd8d3b7b9d2d15241edb713127aa5d098cfdf1422ccb16374e18fc99e335514b6a7f2c30f96c9caaf7b536c9f8c927399b586851 SHA512 123e97669b6ed4429d2bd30b5f890ffa5900698ab6b01f37928ef40cd4152d5957f0ba8ac9beee0defed561526110613786c1362d18c2145726bffbe19822ca8 +DIST cfn_lint-1.50.1.tar.gz 4076509 BLAKE2B 438ce08ba7b37ca76b8a286f18deabd740969627c5177a40fc75fe76c36cb1adebf4c5e5a785b7422f287ee72d294c571d9e1bdfca6b9ef10473a28f4ae993da SHA512 9ac4224f4d5da149747abe00d6bffed88bc8fd3b36a868417bd8cf578b1cf7956812c7caaca4da178a1bed2b31a0a83f22be489176755e2146f8286e2dee12ce +DIST cfn_lint-1.50.1.tar.gz.provenance 9678 BLAKE2B fde3c92469e6b11b53a3734c1266810052dadf96ea1cb2ab9d2f20ad36fa6d499ee260fdbf98f2a97b86543763f3af201d98ddc586a32649aa2bb716d0a206e2 SHA512 6c0af59dc5e2b61eb617f1690d671d85b2a9bc9d0ffec5d86cab9e49cabe4b3b551f16fc4cc720eddab122b69253ba3e31af4ac57cc4947cf23a3589a8e2678f diff --git a/dev-python/cfn-lint/cfn-lint-1.50.1.ebuild b/dev-python/cfn-lint/cfn-lint-1.50.1.ebuild new file mode 100644 index 000000000000..0dd1e9716233 --- /dev/null +++ b/dev-python/cfn-lint/cfn-lint-1.50.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/aws-cloudformation/cfn-lint +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="CloudFormation Linter" +HOMEPAGE=" + https://github.com/aws-cloudformation/cfn-lint/ + https://pypi.org/project/cfn-lint/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/aws-sam-translator-1.109.0[${PYTHON_USEDEP}] + dev-python/jsonpatch[${PYTHON_USEDEP}] + >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}] + <dev-python/jsonschema-5[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}] + dev-python/junit-xml[${PYTHON_USEDEP}] + <dev-python/networkx-4[${PYTHON_USEDEP}] + >=dev-python/pyyaml-5.4[${PYTHON_USEDEP}] + >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}] + >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}] + >=dev-python/sympy-1.14.0[${PYTHON_USEDEP}] +" +BDEPEND=" + >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}] + test? ( + dev-python/defusedxml[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # different line wrapping somehow + test/unit/module/template/test_template.py::TestTemplate::test_build_graph + # requires git repo + test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs + # TODO: suddenly started failing in older versions too + # https://github.com/aws-cloudformation/cfn-lint/issues/4207 + test/integration/test_good_templates.py + test/unit/module/override/test_exclude.py::TestExclude::test_success_run + test/unit/module/test_api.py::TestLintFile::test_good_template + test/unit/module/test_rules_collections.py::TestRulesCollection::test_success_run + # crashes on 3.12+, probably pygraphviz + test/unit/module/test_api.py::TestLintByConfig::test_graph + ) + + # from tox.ini + local -x AWS_DEFAULT_REGION=us-east-1 + epytest +} diff --git a/dev-python/cryptography/cryptography-47.0.0.ebuild b/dev-python/cryptography/cryptography-47.0.0.ebuild index f152f1ac46a0..b9986ead1bac 100644 --- a/dev-python/cryptography/cryptography-47.0.0.ebuild +++ b/dev-python/cryptography/cryptography-47.0.0.ebuild @@ -67,7 +67,7 @@ IUSE="libressl" RDEPEND=" !libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) - libressl? ( dev-libs/libressl:= ) + libressl? ( >=dev-libs/libressl-4.2.1:= ) $(python_gen_cond_dep ' >=dev-python/cffi-2.0.0:=[${PYTHON_USEDEP}] ' 'python*') diff --git a/dev-python/dulwich/Manifest b/dev-python/dulwich/Manifest index 2a30e83653d7..ca2e2ce25fb2 100644 --- a/dev-python/dulwich/Manifest +++ b/dev-python/dulwich/Manifest @@ -1,23 +1,34 @@ DIST autocfg-1.5.0.crate 18729 BLAKE2B 27580e39b366c6fca02c9db09997b6415c409f12068f1249184268bf96fd85ba659e25ec730f99e10caf452f96c486f3d7442bf09c4552b5f39519b21d6f88cc SHA512 f279856f234d39d369623576acf9546a1ca24d7fe449f36d4fb93ea75a7efaf2c4015b9616a69bbbed358c5e5882e16b045352f046aa4c049b3d13b1e8257b08 DIST dulwich-1.1.0.tar.gz 1178580 BLAKE2B 34c4f73e8f72091c1b0cc0dce69b4db6eb9649aeb4db429d12e2089eff0cc68e4ab62b5e5fbe2a33a1f3a92010f071fa492f5dcd4996704b366986c99cf1a7cf SHA512 010576262ea78b86cceb64e9a19fa133068457669f675ee68b060de26f2387207a7a8305492e57ffabb3c3d01a8e5b98a132d1f7396a1c9bc3c2565867b2f3af DIST dulwich-1.1.0.tar.gz.provenance 9772 BLAKE2B 088b649527839758e181a04bc49cf7bf889ff39fe6056ccdf427435a8089caf1e613cc3efee9066d3306d3e9731751d948e50b562f719d4aa91234ba67ad9302 SHA512 bada36af17a7d0465ed9baf323878a195242790d589d129fb5137410cde8dfc35eb8be164e5cdbd8afe207e5461f427063e353c14b17b115bd9a258c6ffb82b1 +DIST dulwich-1.2.1.tar.gz 1223320 BLAKE2B f88dd9a5799abd09e8e930efcf3f232cc2fb9913b76b70852d9a2efc37c1c82318b9cd78d3f04e88e0c0f9e2490f75acd8b9824fb7a6fd8604d026984ad9d303 SHA512 5b52b38300adbc73222c961c3b5df7877d576cadf170d679b4df83bf4f87be2b1b4111a804b042328cf9bd1662f6ad96036d7191870e3e8228e8abcae0ad757e +DIST dulwich-1.2.1.tar.gz.provenance 9741 BLAKE2B d5a97c9eeb6279a98647b43bd29103bcd703d08317b520e7bc49995f89c8d05bf64add3766a16ddd8f07bbfc152140a0460bad85471902ce8be17beff7cbd04b SHA512 3aab6fd326d6596879ee07e4095b8bbf932e221736c57824bf617b5390ffaededdeac8bc8568c3a0440c6c5707fc7fd861b62a69c551ba2d7a57efb3cf01c4cd DIST heck-0.5.0.crate 11517 BLAKE2B 5365ec43b2239a76b33a174f1a4292ece4147f9d382a68c6c60db78fdc8bad0afb1d51a65bcb25e96675372faa4ea37c318265030b0546ba51942f7c929e1835 SHA512 f044fc9c3d22466629fd8f772ec0555350fd611c0cfadca51d99a3d2f10e155f77c1091916c8a95a6b9b499f366c2e99a5fbf45b010f988bfb9b2501bf9f6a76 DIST indoc-2.0.7.crate 17184 BLAKE2B aae454874b44dbc908a75b64626e608e04017c1407daff9a2e2dd12a337ac04db594540d2f31bfc590d6f37f0d711ff2d3054352ff1b33e736c36620404be0a0 SHA512 6e80cf927001821606488a822fd0f67ae1a569b022c98e727e6b1571c88d87775166f088322bd5f17abb8fc1fde62c9d14fb2e99f1e50918487252d823e48f73 DIST libc-0.2.182.crate 814873 BLAKE2B a5fae27ee77495d8638297523d7428eda4a608109e7e1b67db1ba621f7700761f8131710a49bbd24bedf62f8df7ecdeaedb5def47201146a05b4288ee2f92515 SHA512 7923eeb0ee1db8b5b00a6a4352cf5fd3f877a2f727af5857ca49ceeab2dc7519137eb3a982f5a763ae61fbe422ba8f0fe83d92dcabcfa18c23fae619960f96db +DIST libc-0.2.185.crate 821775 BLAKE2B e0e93466a29c9d19f7d9ab3581b491908d06873a9c57a96b0cae2eed0f0d1cb184ebe80bc61e36d5ab316ab35dca529a322b29e6895f7f339e72c79cca7f8ca2 SHA512 c8dbcaaf2e5d8377a4d1003af4a7210fbfe4f9b1e8497f07d88a231a8d5c9f67014e650a5e18e913e7b4d6a1835c4cbc9c31ce0cd224ea28acbdbb39034a300e DIST memchr-2.8.0.crate 97780 BLAKE2B 228ce0b6fe8b168f5c31031690a5eb44466609b64c5c221e0b3f56fe331b4f25c0124d613c94ef030b225000978953641f5b07458d530c1d50eec3e1d54e4274 SHA512 8089238153493a0ff6adf980efd1ea2ba10eeff9f33fff200268692662d24152a8c14a4dac37fbc6a55dca741701fd256174f10a9838ca66f038f08e090de12f DIST memoffset-0.9.1.crate 9032 BLAKE2B 0aab55fe084134bb599c52d77c96400db40949b1013e7037747ada4fcec8dc4a124b6f3755f04b36e057eb2fb4a6bd6f07d6eebcf166f8a71405ef434d802fbf SHA512 3a236c0f481e36973b9f805e454c2efe4dd375e6b4ee406b57145136c70d5fbf4e1183d563ebf3b5fbde7363bbf5f08f0d88e507aae5bda4cc75664ecd0e33aa DIST once_cell-1.21.3.crate 34534 BLAKE2B 3578aaef305cad2fdffdc40c392775a3540bfab3f3aeafd22466d9507bf8346b9fcc200929d48525b051070c0aaa423ecbcaa12868b34dca007991effb224166 SHA512 32a87506c6f4598f3ca2c88556014ef2093d5db9a08602335e847caa537a866492fa74c894e7e1da2e4289a1d3dbffcb90a9e37a4a1453203832f434b8206990 +DIST once_cell-1.21.4.crate 35010 BLAKE2B 9117ed1d478e626b7b7be2e3ff8b68a382b051112c7ca4425367bdae86977671f8b5c576131c82fb437740b6d98b72501f718f4172d39781decac2385e8fbd4d SHA512 af67669b0107f44268ba74c355200cb2ed1aab235a6989a8bc54323eb2c9a45677010f8672e7790edadd4c981e939436e0c3a099d33c06dce9c14fd5ede86155 DIST portable-atomic-1.13.1.crate 197001 BLAKE2B 6d0898c2a537a9bf204b7749cca5f5fddf280772b56eb7ce8fdd9cf7d71561137b26ef89f415c40277a1c89981333eef78e5bb4624515a294ba28fdaeb4c70ea SHA512 2a1b31ac9814af884640b3398ab824a9795c72d260527a0966b193113808cfbb3345d50cd1beaebb45863437c3d06c8706d34b26efecceefc649319a4bc274a3 DIST proc-macro2-1.0.106.crate 59765 BLAKE2B 87f95795621c4c992c370dc3a1240a2d5580e3362356525efe640f8f26ad0492b3c88755d575c080ff7db11376b0d82f31141bf6f86c895249b85e46c081220f SHA512 b726e2c92af434bfa88cd4f53c3fe6db647503567675fb439890dee3d15f5111137e3242b28d164114ce081c10acf3fd11950753ddb349190c87ee04e7d97744 DIST pyo3-0.27.2.crate 1171342 BLAKE2B 421039fe650e01546661ab98593288f8058694d513261fe0025851a68b665bdfc001692c60a5a34ede92d13a6003e8f261e4bcdc17f67518a156f52916d2ff76 SHA512 b20f502bda6cc6d283012acbb2e0225219ccd77af09990872c76b0088947050d886eb47ed88e9e0dcb327d08ab4bf09119f7cab527dfde358e01df5a32bb64c2 +DIST pyo3-0.28.3.crate 1204476 BLAKE2B 8540a1c51bac4fbe04ea34d5ce38471c13d5a3f0759e60cf21d67e846b00feb8316e70f32cb8dc6b74d09f0901ffc83d5f41b1a06da6d34790ef13e4cefcad45 SHA512 f955957eec4b95cc9337d331bba3bba52b4754b301cf86cd974601e64eb20c2424023b19be89a224661fe2e185de646cd3d0d00705b6b5cbd139856c9443a247 DIST pyo3-build-config-0.27.2.crate 35564 BLAKE2B 8786478e559613cc258e2d0153d549f65c13a24a3fe612da7ac96e5f4038a1714dbc6a01b2d3e3d99b3de3af9658ad220647fbba4a33305bef81c07100426ada SHA512 dc7cee79ce7febddeec9e70dd5de3b59696a5cf38afeccdfeda00307cc22166d0e9649d5e34e9801b7f495b31c104fa78dac2241248787daae8b9ea1f4551ce5 +DIST pyo3-build-config-0.28.3.crate 35961 BLAKE2B 61a0101913c6d563721049ca99256c2aefd89b017a7e18c82f4a6aceca0aefeaa71fd559cd43adfb5034ce076c904e5188f8f73961ea217287fbfd12caab9401 SHA512 78f85696901b16540d42187d10e888bd929b9f23415faeb73f9798abda1af3506a308145dd4113b070521271c72624d7930fb4b19bad25aa1afd3082030c9126 DIST pyo3-ffi-0.27.2.crate 78552 BLAKE2B cdd6fb74a49615c42e6c6979e28c1d56e0061ae9e9897a20032d6be27c635433e9fa459847bf3c88de3be7503d045ef78d4ea3e028403c1ed00da96930ed73dd SHA512 29936c7a0fa524304ca8b017ac912e2c3e9237a86ac8510c17b96b75c7e83948599884f064428640456cd5fb256246d536da432d096f924e78360efd973cee0b +DIST pyo3-ffi-0.28.3.crate 80881 BLAKE2B 4ac7066c911e2aec18aa9245efed00585d063f81d69910e6a146f8efbf2939ab5de519bbf2a3dde78b40c264e97c62490db80e9b2e84aaf080d63659a6676459 SHA512 ec49b5cc67d19f46c9daea76b37b4988af0f63b9ed67c71190f015a0aa9691d4a8ffd4128413de430928428e1e8e26d44c3103f561e6b71b7e8c4597ab602d9f DIST pyo3-macros-0.27.2.crate 8913 BLAKE2B 99a9cf37cb05261fa75d0ede4ed8ad75bbe29b941a4c6a0907d1c1baa887d0777dcb5970c7fbe1337c1b127b6318d077e2d8374629485572f3f7997a3e3825b8 SHA512 b05f6b61c5b320e83e879384691cdb9ad57ade3ce5a9fdfb587ccd13ea1c92d2b210e2d7ca242c3d1a5f5173076a25578d3d81f5a8c3935a43f010bfa8452153 +DIST pyo3-macros-0.28.3.crate 8963 BLAKE2B ca9967cfba565b873ed77565ff6eb8408473c227d191797e9db8c6b5cbc89abc17ffd57ae71e28877088fe19373da2f503cdefeae6b0a47796f6abcf62044f08 SHA512 57d178bd9b53dd98916e60c89bc26c34f9949829dc17bf7d6cc15b704bba7c874d85d6bd3c827d401268660a79230a6e32711048da939ec4e22342f3e08046d1 DIST pyo3-macros-backend-0.27.2.crate 82513 BLAKE2B 9154f0275ac031fb456c313176490b7f98e033a9ff43caf32ca717e6dedc2c32435af5e7d9d2e784690fe2a379c033f0dc036b18c630fa7cb3c3365e335e3a12 SHA512 811fa48ceb5a87d23312b968efa9d8464653289cefc8a1e27838f03285eef67092652ba89eba655d243fa435edd97674a981267870d208e0b11390db32d1ad9f +DIST pyo3-macros-backend-0.28.3.crate 88063 BLAKE2B a484b12bbab3031838f61149ab9f08b9e460a2bd02089e08e58dac2cb747afbc0cdfe64018ed4c8cb0bbbd1d22e3eb05a6a72b020da6b71a584ec51ca8d24292 SHA512 45ce31ed64ee4fd0249736d480c9840a756bc45934d6803ae11e0680057ecf4cc74c71b47ccf9241fc3ab5c1e0b9c758426f08bd523d1ace92fc308302ea3c84 DIST quote-1.0.44.crate 31629 BLAKE2B 6e34e4121b7a37fd7492fc22d652c44ff90b8b3391b5cfa320a606871a43a4494beca15c1d4416c342bf511adb6442afa5513821514c52376175e2f8a98b7293 SHA512 6c1e9b31e0c8bd13cd865e6846dc243d88f2c057adeb8e674117bdcb46947219a6a352a6a50be1132c483f55331e6556275ac514513dbf017825c64e5d96010d +DIST quote-1.0.45.crate 31564 BLAKE2B 1b2c2c3e6ebabfe10affa4c43ca0bfd1f52d8fd49e1df463e13e63a82de41272089c8e09e4c02e8a33cfee768ace26d4d42a50752de8fb5a776c59806139ad5d SHA512 df96ede01ebd0ed642b758bf1d0862d0e116fc2b3343e14edb657ce5438ccabe743dec4a0a40de4dee98c134d169af9aba459faadf9c7a832b26377e755d49b0 DIST rustversion-1.0.22.crate 21096 BLAKE2B cdf773cda21ebde50da897c0af0e4af14660ce953d3037054a99d8adc3db2dc6e30a57201a45676abfb183c62016a68069848e7537f711b1752339d194b0a378 SHA512 7929352df3e5279ac88cebb26ca89bb13c755f46986d2d1f514d18a3239a63638bf64f8ff153920569d173185d988d692ee676335afba0bf72d47f71babe0e15 DIST similar-2.7.0.crate 53928 BLAKE2B 41d6aec64403069dcf81a9a00b9db041967b89d09cf9f2371444928f32bbc2a8c6066adb93eaf25c72a257fab87e24c160265d687c4e33848728a4ddd374012a SHA512 4a2559d2e47e7747eb2bde0f02a0e652ff0e116d1d3c3756dd86fd48f114e2b42157b860165e5cc29c2123cf19c64ebd17f023aaa05950de03ab5752562206b3 DIST syn-2.0.116.crate 305969 BLAKE2B 68bec34f707325ced89dab5d67587fdcc3b5245c87bd16c1b65f5c832d4369b500e0485c9a4407667098248c856bcd091c936c06e0bf373e0b8c761bcaba85ba SHA512 81e1a5388d688a4aaf00ba35428ac82b9b4bb6e703c4321a898140d6fd40cdaa32762bf0e0ea0d9276f4322f673dbc39d3c46c275dcf69533c57ba4d68702ea1 +DIST syn-2.0.117.crate 306011 BLAKE2B bbaec02c4322f522bdfc87caa4ce6fd1e09bbf8f4a102d9ed8728efacdd843a2750f616dce5b2d3a3e46bbb7d57439fbd10e328bc1d4a01e980986cd815798af SHA512 035c2e63542592b6a4058a2a82d4c2c1f5793f84fb1b04cbd393337a26fcf661a1f3bea439ce98a1fe943b1c4d36d2bda16df3bbc3fa6ca35e1548d530dc8416 DIST target-lexicon-0.13.5.crate 26928 BLAKE2B f8c62cb91f68a635e6ce3fc254df9ce378b5e8f62c1147404c967484b9ed97fb33d7993b4671611db76566063e999d658d201f856f70196ec678d72cc758cf6d SHA512 956df27c01e1186c5356117ffd07810fc0b62fb919d5bfd215955ba85be00ef675212a3c0dc36679986be7b825442fec5c93c7643b7e1e19c04572e6463546fc DIST unicode-ident-1.0.24.crate 49298 BLAKE2B 34ba2906a3ebc06f52a4ba77dff96a8f3fb977718d260886fa9e051c5830765641b65a63977110f3a79f31fa177b385f81b01d56c80f6a0324d36eae72e2ebf0 SHA512 7be712d8d0075ac9341790180e312f66264d3e0255c91b38df0951baa5e446dec24551bb2125a66a1cb9b6ca2f1ea37c0cc15fa3dd74f398ecf4d5302c7dc259 DIST unindent-0.2.4.crate 7422 BLAKE2B 2e7870cd4f78240dbb1e5fb9c0f9b55c57bb40242fe668f105a0e862f1d6300e31efbffe0cdff676a5f96a8d19dfb148f88bfef1cd8a710556d777fd0f4ee37f SHA512 58bd4fd20a0b0a7200e0ea3ea70553cea135a5a8f7a2fb178520c41228f435becce4b9981019b7c73a17df87a2ee9b2a47c4cec29a3011bfe848d48b2473761b diff --git a/dev-python/dulwich/dulwich-1.2.1.ebuild b/dev-python/dulwich/dulwich-1.2.1.ebuild new file mode 100644 index 000000000000..3fc93c6dda55 --- /dev/null +++ b/dev-python/dulwich/dulwich-1.2.1.ebuild @@ -0,0 +1,124 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CARGO_OPTIONAL=1 +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/jelmer/dulwich +PYTHON_COMPAT=( python3_{10..14} ) + +RUST_MIN_VER="1.83.0" +CRATES=" + heck@0.5.0 + libc@0.2.185 + memchr@2.8.0 + once_cell@1.21.4 + portable-atomic@1.13.1 + proc-macro2@1.0.106 + pyo3-build-config@0.28.3 + pyo3-ffi@0.28.3 + pyo3-macros-backend@0.28.3 + pyo3-macros@0.28.3 + pyo3@0.28.3 + quote@1.0.45 + similar@2.7.0 + syn@2.0.117 + target-lexicon@0.13.5 + unicode-ident@1.0.24 +" + +inherit cargo distutils-r1 pypi + +DESCRIPTION="Pure-Python implementation of the Git file formats and protocols" +HOMEPAGE=" + https://github.com/jelmer/dulwich/ + https://pypi.org/project/dulwich/ +" +SRC_URI+=" + native-extensions? ( + ${CARGO_CRATE_URIS} + ) +" + +LICENSE="GPL-2+ Apache-2.0" +LICENSE+=" native-extensions? (" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions Unicode-3.0 + || ( MIT Unlicense ) +" +LICENSE+=" )" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~x86 ~arm64-macos ~x64-macos ~x64-solaris" +IUSE="doc examples +native-extensions test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/urllib3-2.2.2[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/typing-extensions-4.0[${PYTHON_USEDEP}] + ' 3.11) +" +BDEPEND=" + native-extensions? ( + ${RUST_DEPEND} + dev-python/setuptools-rust[${PYTHON_USEDEP}] + ) + test? ( + ${RDEPEND} + dev-python/fastimport[${PYTHON_USEDEP}] + dev-python/gpgmepy[${PYTHON_USEDEP}] + >=dev-python/hypothesis-6[${PYTHON_USEDEP}] + dev-python/merge3[${PYTHON_USEDEP}] + dev-python/paramiko[${PYTHON_USEDEP},server(+)] + ) +" + +distutils_enable_sphinx docs + +QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/dulwich/_.*.so" + +pkg_setup() { + # avoid rust_pkg_setup which will die when there's no Rust found + if use native-extensions ; then + rust_pkg_setup # implicitly inherited through cargo + fi +} + +src_unpack() { + pypi_src_unpack + cargo_src_unpack +} + +python_compile() { + # make extension build errors fatal + local -x CIBUILDWHEEL=1 + unset PURE + if ! use native-extensions; then + local -x PURE=1 + fi + + distutils-r1_python_compile +} + +python_test() { + # remove interference from the tests that do stuff like user.name + unset GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE + unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_COMMITTER_DATE + unset EMAIL + # Do not use make check which rebuilds the extension and uses -Werror, + # causing unexpected failures. + "${EPYTHON}" -m unittest -v tests.test_suite || + die "tests failed with ${EPYTHON}" +} + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/examples" + dodoc -r examples + fi + distutils-r1_python_install_all +} diff --git a/dev-python/findpython/Manifest b/dev-python/findpython/Manifest index d4328680d050..8f37a233051c 100644 --- a/dev-python/findpython/Manifest +++ b/dev-python/findpython/Manifest @@ -1 +1,2 @@ DIST findpython-0.7.1.tar.gz 18867 BLAKE2B f59fb6d523263bb53fc66c552d366a1ce116d5cf1f9d60efca30ffd7f46ce4d6d6e85cbdbb9e41c6d509ec8f33134bd16aff80744a64edb55e15d59ebd15a759 SHA512 3b85be82027c8e749edf640055315b1f916c93adc3fa436dd3281edf22af92bf077d255e8feec1a0a4211fda8e154768c424ad521baa7e6100f10acf6ebf121f +DIST findpython-0.8.0.tar.gz 18892 BLAKE2B adabaef72fbff46ed122e7777fc27cc3a5e65d25b5fe56d1831a7b069f641debdb7ff7ba36f2b32bb5528be577b9c3261cd4761edc3dd78707219309bba3e13f SHA512 5933cedc10e6cc533f24bda74b5af5ae97996597f27ef417f452d8718d1b56b2fdbdd956ee0d5317b0a1cb7fc2d35bb871122c2d80861b2ad92cde499b361756 diff --git a/dev-python/findpython/findpython-0.8.0.ebuild b/dev-python/findpython/findpython-0.8.0.ebuild new file mode 100644 index 000000000000..bca905e02a0c --- /dev/null +++ b/dev-python/findpython/findpython-0.8.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2023-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 pypi + +DESCRIPTION="A utility to find python versions on your system" +HOMEPAGE=" + https://github.com/frostming/findpython/ + https://pypi.org/project/findpython/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/packaging-20[${PYTHON_USEDEP}] + >=dev-python/platformdirs-4.3.6[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest diff --git a/dev-python/fsspec/Manifest b/dev-python/fsspec/Manifest index 587d10de2133..f7addbb6f230 100644 --- a/dev-python/fsspec/Manifest +++ b/dev-python/fsspec/Manifest @@ -1,2 +1,3 @@ DIST filesystem_spec-2026.2.0.gh.tar.gz 451801 BLAKE2B ad2fc26545c3f8984a356c489f4c44bd7b96ae09ee38726c38ac7adebe3168a875eff5eea2b3fc3e2fa87d3b609d88bc31aed887969d7154fa1cc22d0861e9bb SHA512 baf7537fccdd6f1486f92e94ffcf5a5c6d081a687998493bc3cc7a2d7261ec86f9d6b6289d7d6ab574a8108a68c80276d35d851e6c3cfc395b90908c6b462ccf DIST filesystem_spec-2026.3.0.gh.tar.gz 452108 BLAKE2B cf4f4ef45908453934a1b63e1114d012f7c33bd4400b4c1193215e616243340dce642508c11e4b4f38f3e3db3b3ce6a5ad339669cf2e1a6ce8725ada7d9122b2 SHA512 861a9b1f88b80e41a3aa1e6d199a6c1a33db481fd9da17659c6a8e56857043103c6215a52550a403207ee296355e58acad8334ea6fe0af52a0a8cab8ac06dc7e +DIST filesystem_spec-2026.4.0.gh.tar.gz 455367 BLAKE2B b47f54816eb19caf256e1291be7395493db82fa10c90f81a3b06ed49a8bf90aff23350f904ae0aae4fa4b54b7c6d4d6a08279c3307036822bd7dc35888fa3440 SHA512 289669397c965af7e9242b9cc181bba5bbac8ead95e4288135ce2cd209e37a15c0361652f221f2e0c68161041b24848113ad104582bc27188357da5ca3e29701 diff --git a/dev-python/fsspec/fsspec-2026.4.0.ebuild b/dev-python/fsspec/fsspec-2026.4.0.ebuild new file mode 100644 index 000000000000..ca3863e5a90b --- /dev/null +++ b/dev-python/fsspec/fsspec-2026.4.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 2020-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=filesystem_spec-${PV} +DESCRIPTION="A specification that python filesystems should adhere to" +HOMEPAGE=" + https://github.com/fsspec/filesystem_spec/ + https://pypi.org/project/fsspec/ +" +# upstream removed tests in 2024.6.0 +SRC_URI=" + https://github.com/fsspec/filesystem_spec/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/tqdm[${PYTHON_USEDEP}] + dev-vcs/git + ) +" + +# Note: this package is not xdist-friendly +EPYTEST_PLUGINS=( pytest-{asyncio,mock,rerunfailures} ) +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +src_test() { + git config --global user.email "you@example.com" || die + git config --global user.name "Your Name" || die + + # block importing pyarrow, it's causing Python to crash with + # the immutability assertion. + cat > pyarrow.py <<-EOF || die + raise ImportError("thou shalt not import pyarrow") + EOF + + distutils-r1_src_test +} + +python_test() { + local EPYTEST_DESELECT=( + # Internet + fsspec/implementations/tests/test_reference.py::test_async_cat_file_ranges + fsspec/implementations/tests/test_github.py + fsspec/implementations/tests/test_gist.py + ) + + epytest -o tmp_path_retention_policy=all +} diff --git a/dev-python/jupyterlab/Manifest b/dev-python/jupyterlab/Manifest index 859d66f9bace..38dbc1d81197 100644 --- a/dev-python/jupyterlab/Manifest +++ b/dev-python/jupyterlab/Manifest @@ -1,3 +1,4 @@ DIST jupyterlab-4.4.10.tar.gz 22969303 BLAKE2B 478b424ff65b4f88ee849f0e87cebf30a1a95d7da390e3179f0675c4d37cb6cc80aef0262e2e4ca09fecda71a76c6d92ed99a6b52337ff2ab22cc010122513a4 SHA512 fbdd4429ddc5c14f0085d3dc4a9cd1f93c8db3b438e62c7e653fb605819ec97f41aba182c48a54f25f5ed53d36a9137522e7901a2b36349596c8f03beeefe351 DIST jupyterlab-4.5.5.tar.gz 23968441 BLAKE2B 26cd7f35af4eeb02e642ad54b915a742ab72d6d8f2d0c1104bd110209099deb2130b17da1a7630a0ddacf85d0411f7bc53d344c8d7fbaa60c836a8737a96ab3a SHA512 9e30719ce3f243312dd9c4630f8985f0e34dace323bc4ade7e5db483175052127c76a582ff5014fe8f85f99370f820a24ee24aa782deaf87513c01db3e84f3ae DIST jupyterlab-4.5.6.tar.gz 23970670 BLAKE2B 362d6557cf74858186a815d41d63ab6c987859d033484bd59b431924fc95eec8c692b5dd6fd9f1b110e17c8f8a285a96e1b45371379c2e5c485cf39783437f0d SHA512 67c63e8717384b334b421bc95f46a38a9a0ade3edc319a66f20e86102aa6583df3828b47fb4d90ff6291779fb078e42034f3dcbb293a2428bf554503e2495910 +DIST jupyterlab-4.5.7.tar.gz 23992763 BLAKE2B a8393ca503e6d35c8cd896948dc7201d10b9493bc55ed9898b706a9c88e98dc8000cb9d66e306600d0908aa23f6244860f7d271cfea6c54b339c5249ee2a6f33 SHA512 b2bc3190586c2f25688aef12a6ca04d77c69f21ce35f53bee926de10961c84e55e5441cd812f03e5deb649e8fa38674e97db7fd5a00edc965c19b2b7e1d90996 diff --git a/dev-python/jupyterlab/jupyterlab-4.5.7.ebuild b/dev-python/jupyterlab/jupyterlab-4.5.7.ebuild new file mode 100644 index 000000000000..1701378bc41a --- /dev/null +++ b/dev-python/jupyterlab/jupyterlab-4.5.7.ebuild @@ -0,0 +1,76 @@ +# 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 pypi xdg + +DESCRIPTION="JupyterLab computational environment" +HOMEPAGE=" + https://jupyter.org/ + https://github.com/jupyterlab/jupyterlab/ + https://pypi.org/project/jupyterlab/ +" + +LICENSE="BSD MIT GPL-3 Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/async-lru-1.0.0[${PYTHON_USEDEP}] + >=dev-python/httpx-0.28.0[${PYTHON_USEDEP}] + >=dev-python/ipykernel-6.5.0[${PYTHON_USEDEP}] + >=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}] + dev-python/jupyter-core[${PYTHON_USEDEP}] + >=dev-python/jupyter-lsp-2.0.0[${PYTHON_USEDEP}] + >=dev-python/jupyter-server-2.4.0[${PYTHON_USEDEP}] + <dev-python/jupyter-server-3[${PYTHON_USEDEP}] + >=dev-python/jupyterlab-server-2.28.0[${PYTHON_USEDEP}] + <dev-python/jupyterlab-server-3[${PYTHON_USEDEP}] + >=dev-python/notebook-shim-0.2[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + >=dev-python/setuptools-41.1.0[${PYTHON_USEDEP}] + >=dev-python/tornado-6.2.0[${PYTHON_USEDEP}] + dev-python/traitlets[${PYTHON_USEDEP}] + net-libs/nodejs[npm] +" + +BDEPEND=" + dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}] + test? ( + dev-python/requests[${PYTHON_USEDEP}] + dev-python/requests-cache[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + ) +" + +EPYTEST_DESELECT=( + # These tests call npm and want internet + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_uninstall_core_extension + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_install_and_uninstall_pinned_folder + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_install_and_uninstall_pinned + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_build_custom_minimal_core_config + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_build_custom + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_build_check + jupyterlab/tests/test_jupyterlab.py::TestExtension::test_build + jupyterlab/tests/test_build_api.py::TestBuildAPI::test_clear + jupyterlab/tests/test_build_api.py::TestBuildAPI::test_build +) + +EPYTEST_IGNORE=( + jupyterlab/tests/test_announcements.py +) + +EPYTEST_PLUGINS=( pytest-{console-scripts,jupyter,tornasync,timeout} ) +EPYTEST_XDIST=1 +distutils_enable_tests pytest +# TODO: package sphinx_copybutton +#distutils_enable_sphinx docs/source dev-python/sphinx-rtd-theme dev-python/myst-parser + +python_install_all() { + distutils-r1_python_install_all + mv "${ED}/usr/etc" "${ED}/etc" || die +} diff --git a/dev-python/latexrestricted/latexrestricted-0.6.2.ebuild b/dev-python/latexrestricted/latexrestricted-0.6.2.ebuild index 4e7ecb74555b..dcf7a85e3d9d 100644 --- a/dev-python/latexrestricted/latexrestricted-0.6.2.ebuild +++ b/dev-python/latexrestricted/latexrestricted-0.6.2.ebuild @@ -20,4 +20,4 @@ SRC_URI=" LICENSE="LPPL-1.3c" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" diff --git a/dev-python/plotly/Manifest b/dev-python/plotly/Manifest index 7fdf5d842fac..f4d8f3659995 100644 --- a/dev-python/plotly/Manifest +++ b/dev-python/plotly/Manifest @@ -1,2 +1 @@ -DIST plotly.py-6.6.0.gh.tar.gz 10370904 BLAKE2B 871fc805cda64303ffd5a3aa65e35573941fd3222f64e4bb965362d03f8e8843144bd6e9975960d009ca20a9af9366433878edd1f2edd13bffd734882eaae93c SHA512 ba3dae0d18a24498b9362fa7eb1cbc0a635fc447dfc9ee087fc6d8efd31359a4eb2d7467729d283325e3325a9645fcc4b5bdf60f3ea873b3ead79f6612ed39bc DIST plotly.py-6.7.0.gh.tar.gz 10364351 BLAKE2B 335dcabc60048651d6e356bbb59320977989be15d5ea33d03e6ff2b2f5c19d0774679fccbe7da442287ee1dd94cfba14beb2f40fd538f13ffde3acf56839346a SHA512 ad651e9a79be30bb9123f2fd26d8847eba7cc7168924af5237c495352749bebd12c823e5294865ad9aca69ccaeb4636baa1f82b4bcc39b747a02b9b58c52da5d diff --git a/dev-python/plotly/plotly-6.6.0.ebuild b/dev-python/plotly/plotly-6.6.0.ebuild deleted file mode 100644 index 4a72b977015d..000000000000 --- a/dev-python/plotly/plotly-6.6.0.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -MY_P=plotly.py-${PV/_} -DESCRIPTION="Browser-based graphing library for Python" -HOMEPAGE=" - https://plotly.com/python/ - https://github.com/plotly/plotly.py/ - https://pypi.org/project/plotly/ -" -SRC_URI=" - https://github.com/plotly/plotly.py/archive/refs/tags/v${PV/_}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S="${WORKDIR}/${MY_P}" -# The tests are not included in the PyPI tarball, to use the GitHub tarball -# we have to skip npm, which means that the resulting install will -# unfortunately lack the jupyterlab extension. - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64" - -RDEPEND=" - >=dev-python/narwhals-1.15.1[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/jupyter[${PYTHON_USEDEP}] - dev-python/jupyterlab[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pandas[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/scikit-image[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/statsmodels[${PYTHON_USEDEP}] - dev-python/xarray[${PYTHON_USEDEP}] - ) -" - -# There are sphinx docs but we are missing a bunch of dependencies. -# distutils_enable_sphinx ../../../doc/apidoc - -EPYTEST_PLUGINS=() -# xdist is causing pretty nasty race conditions here -distutils_enable_tests pytest - -EPYTEST_IGNORE=( - # requires polars - tests/test_optional/test_px - - # requires kaleido - tests/test_optional/test_kaleido/test_kaleido.py -) - -EPYTEST_DESELECT=( - # requires polars - 'tests/test_plotly_utils/validators/test_fig_deepcopy.py::test_deepcopy_dataframe[polars]' - - # require anywidgets - 'tests/test_io/test_to_from_json.py::test_from_json_output_type[FigureWidget-FigureWidget0]' - 'tests/test_io/test_to_from_json.py::test_from_json_output_type[FigureWidget-FigureWidget1]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_filelike[FigureWidget-FigureWidget0]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_filelike[FigureWidget-FigureWidget1]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_pathlib[FigureWidget-FigureWidget0]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_pathlib[FigureWidget-FigureWidget1]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_file_string[FigureWidget-FigureWidget0]' - 'tests/test_io/test_to_from_json.py::test_read_json_from_file_string[FigureWidget-FigureWidget1]' - - # minor matplotlib incompatibility - plotly/matplotlylib/mplexporter/tests/test_basic.py::test_legend_dots - plotly/matplotlylib/mplexporter/tests/test_utils.py::test_linestyle - - # fails in non-isolated env - test_init/test_dependencies_not_imported.py::test_dependencies_not_imported - test_init/test_lazy_imports.py::test_lazy_imports - - # TODO - 'tests/test_plotly_utils/validators/test_colorscale_validator.py::test_acceptance_named[Inferno_r]' - - # numpy 2.4 - tests/test_optional/test_figure_factory/test_figure_factory.py::TestViolin::test_violin_fig - tests/test_optional/test_utils/test_utils.py::TestJSONEncoder::test_encode_customdata_datetime_homogeneous_dataframe - tests/test_optional/test_utils/test_utils.py::TestJSONEncoder::test_encode_customdata_datetime_series - tests/test_optional/test_utils/test_utils.py::TestJSONEncoder::test_numpy_datetime64 -) - -src_configure() { - # Do not try to fetch stuff with npm - export SKIP_NPM=1 -} diff --git a/dev-python/plotly/plotly-6.7.0.ebuild b/dev-python/plotly/plotly-6.7.0-r1.ebuild index 565c1022538e..6dafeee24d5d 100644 --- a/dev-python/plotly/plotly-6.7.0.ebuild +++ b/dev-python/plotly/plotly-6.7.0-r1.ebuild @@ -97,6 +97,13 @@ EPYTEST_DESELECT=( tests/test_optional/test_utils/test_utils.py::TestJSONEncoder::test_numpy_datetime64 ) +src_prepare() { + distutils-r1_src_prepare + + # stop installing junk "js" package + sed -i -e '/used by Jupyter extension/d' pyproject.toml || die +} + src_configure() { # Do not try to fetch stuff with npm export SKIP_NPM=1 diff --git a/dev-python/pycurl/Manifest b/dev-python/pycurl/Manifest index 27621e5b4a2a..46a14cf77873 100644 --- a/dev-python/pycurl/Manifest +++ b/dev-python/pycurl/Manifest @@ -1,2 +1,4 @@ DIST pycurl-7.45.7.tar.gz 241098 BLAKE2B 8150d9f783818ff8c307038e70b030904d90d9dd0ddb2bbdda1551ad725362eebe343bd2f376544da49b01b45a03c0826720565385a48ecba7830209dc191ed5 SHA512 dc8dc4ec1cc4fa8b34aa2ca6e1cd8c3dde4f73500f364bfb67a7c38bf04b18eaabcbd9b55cd7da9b4fe5080ab3845a4e4a2bed3a87d4c0d693ec24142319af27 DIST pycurl-7.45.7.tar.gz.provenance 9536 BLAKE2B c79ae5c53dfe14786e11edad42d7ea612ee7a09f6252b7876a8635a0b7c20e1d331a90c6cc2cde0889b7ca10e2d9787aab861968f526c68e4b9ce1686bdd462c SHA512 1d9762bc7e2b5d1c999679a15ee540dfc835b0b301f9f813b408774b41ae151a434b44d3aed802657e66a85e52d385bb8cb4478f0f8c93cb5b7504d17ff34592 +DIST pycurl-7.46.0.tar.gz 284697 BLAKE2B 0839edc2b93ddf3a164452b5c1b312f06960d7bf54d0ed8db1e9021e3abf0bf307c8d512cf5b5ac521b50921794142c00d90d2bdcabf982496ba8bc5e58bdaa8 SHA512 b30f41513b30b0ec54c8f3994245c5e31af194176086081040862772f059907375a7711c7a941c08c5c3daddfd9aae2ded3f0ed7fd6baa480ac1610de6959f8c +DIST pycurl-7.46.0.tar.gz.provenance 9569 BLAKE2B 70d9db2f5f58586fd9cb7557f60ccb5eb5469bc17d8f42a616c754072bdf96c347e7ae09c7d706bc75835bab35e0a5fa07d74cdfe1e2bb8c1cbf90bf9f291263 SHA512 e66b4bc6c176264639485a7aa8f521783f7d95e6e05f3b7e78f5ba3a8e1845200e1aa67691d6ccf606d00791fe13e493b98d1e2e348afd4d599d2fc155ede8d6 diff --git a/dev-python/pycurl/pycurl-7.46.0.ebuild b/dev-python/pycurl/pycurl-7.46.0.ebuild new file mode 100644 index 000000000000..d8ecc16aeed3 --- /dev/null +++ b/dev-python/pycurl/pycurl-7.46.0.ebuild @@ -0,0 +1,88 @@ +# 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/pycurl/pycurl +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi toolchain-funcs + +DESCRIPTION="Python bindings for curl/libcurl" +HOMEPAGE=" + http://pycurl.io/ + https://github.com/pycurl/pycurl/ + https://pypi.org/project/pycurl/ +" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +IUSE="curl_ssl_gnutls +curl_ssl_openssl examples ssl" + +# Depend on a curl with curl_ssl_* USE flags. +# libcurl must not be using an ssl backend we do not support. +# If the libcurl ssl backend changes pycurl should be recompiled. +# If curl uses gnutls, depend on at least gnutls 2.11.0 so that pycurl +# does not need to initialize gcrypt threading and we do not need to +# explicitly link to libgcrypt. +DEPEND=" + >=net-misc/curl-7.25.0-r1:=[ssl=] + ssl? ( + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] + curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0:= ) + curl_ssl_openssl? ( dev-libs/openssl:= ) + ) +" + +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + test? ( + dev-python/flask[${PYTHON_USEDEP}] + net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),http2] + ) +" + +EPYTEST_PLUGINS=() +EPYTEST_RERUNS=5 +: ${EPYTEST_TIMEOUT:=120} +distutils_enable_tests pytest + +python_prepare_all() { + # docs installed into the wrong directory + sed -e "/setup_args\['data_files'\] = /d" -i setup.py || die + + distutils-r1_python_prepare_all +} + +python_configure_all() { + # Override faulty detection in setup.py, bug #510974. + export PYCURL_SSL_LIBRARY=${CURL_SSL} +} + +src_test() { + emake -C tests/fake-curl/libcurl CC="$(tc-getCC)" + + distutils-r1_src_test +} + +python_test() { + local EPYTEST_DESELECT=( + # refcounting tests are unreliable + tests/memory_mgmt_test.py::MemoryMgmtTest::test_readdata_refcounting + tests/memory_mgmt_test.py::MemoryMgmtTest::test_writedata_refcounting + tests/memory_mgmt_test.py::MemoryMgmtTest::test_writeheader_refcounting + ) + + epytest tests +} + +python_install_all() { + local HTML_DOCS=( doc/. ) + use examples && dodoc -r examples + distutils-r1_python_install_all +} diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest index 2a8f650ad3be..a3dc7835f959 100644 --- a/dev-python/s3transfer/Manifest +++ b/dev-python/s3transfer/Manifest @@ -1,2 +1,3 @@ DIST s3transfer-0.16.0.tar.gz 153827 BLAKE2B 0bb01ad6e9bafbcdc2b89e11949fea5d2a550eefde12fc8ac696fc2153ae338759bcb0e7bdddc6c18c88108de64a90edb70d9deb2c3d4ce4ad26a0b20b3ee292 SHA512 dd81875d173c1d66ed234a5194e1bc06faa0dad2d885a55d09932c6686c0f56ecd9d474971ad7ec9c21a1ebf45c35d9688c4a2a4cdf16059cafb70ed910b003c DIST s3transfer-0.16.1.tar.gz 154801 BLAKE2B 7a8684162402007c148b9cbd5eb29a006b99eeb0ecbb4221a452360220db26a3c7c5601f0a965ea29ba7946180224b4f34ee5cfca3631137b5a71328e9322921 SHA512 d953559ab4667b497b058945268af9edde3a1483f09c6725bf45eb5ab347a41c4c4635e663130edcd76aeeacbf40daa39ef8b78e777f54f7ef3ed4d1973cec04 +DIST s3transfer-0.17.0.tar.gz 155337 BLAKE2B bc1898fc9cc8ca5bbedad81a3491127cdf2021ee522b099121592f89a0c3bb3ece9a9cae3d35593b1cf9b379790c7135523bcf2e53675a5060fe64ed5be9a5da SHA512 cbd5a5ac93d3cad66b54d93fdd07b36dbc40a377e89395fd16349f0e8e5abc66938f4c74c00cc8ee4a14b9ac4673a43b18c217357eb4fcd72cb61682605bd134 diff --git a/dev-python/s3transfer/s3transfer-0.17.0.ebuild b/dev-python/s3transfer/s3transfer-0.17.0.ebuild new file mode 100644 index 000000000000..099356fb337b --- /dev/null +++ b/dev-python/s3transfer/s3transfer-0.17.0.ebuild @@ -0,0 +1,42 @@ +# 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 pypi + +DESCRIPTION="An Amazon S3 Transfer Manager" +HOMEPAGE=" + https://github.com/boto/s3transfer/ + https://pypi.org/project/s3transfer/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + <dev-python/botocore-2[${PYTHON_USEDEP}] + >=dev-python/botocore-1.37.4[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_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 +} + +python_test() { + epytest tests/{unit,functional} +} diff --git a/dev-python/twisted/Manifest b/dev-python/twisted/Manifest index b28741505798..b48bcc2d0688 100644 --- a/dev-python/twisted/Manifest +++ b/dev-python/twisted/Manifest @@ -1,3 +1,5 @@ DIST twisted-25.5.0.tar.gz 3545725 BLAKE2B 01f24c3c90c3db349efe779a8262abab3004782aedd8534a8c53e5336d77862a3615c83093137074b19af415cdb5572e07c39a74846a128544e8405d9c69864b SHA512 3d023777854fdf54e06f4bbaf3159359767aac9ba33e90d2b2e8abe29815d088e00eebd06944c12610a28c517d9cb397a5104ff153160edabfb91dd16a15f597 DIST twisted-25.5.0.tar.gz.provenance 9203 BLAKE2B 76180b9aa470977a28eb3a2104bf6cf6355cf0585df5cf8e07420e3878df32e92ae23eef7bb64bd3fb8d863c4b3727daf44074d2a1d5735236f1d24f89711797 SHA512 9f5d3d92194abbbd5ed0bd524a11858f8d75ae8e9cf89bb4689a82053bc107f4eea6adbe2862fc9bba74bd3623eac3183a3bd3163cce4a7eec20e4ee4988afa0 +DIST twisted-26.4.0rc2.tar.gz 3575417 BLAKE2B 58f22a8fd475460b2d1db864b622bc2b0825bb24cbcface1a2cf299bb8e8206cd3c418ea8cb7baa0e19fdbeb4a8ef2ae41e66258329e9b232a4730069ff78d0e SHA512 f27629f801103eed16605809149588d2de9c3f8e837acc97f5481f68082024b971e13694c05bd35c90e875d9d0d362b5b824d0c967f4e333e7ae8268dfd77d7b +DIST twisted-26.4.0rc2.tar.gz.provenance 9402 BLAKE2B 28a09a6d6458f0448b00b674a8437b41fe0a27fc9380675986dcb56972c1f440f4a228b59eb87ddbfc8a6d0ac7e1e0e2e0dbcc973edb92f0ed87f5a629be79f6 SHA512 f5adfbb14641ae94ee78ce622c6ea86dc225640106297f70dbeb85ef703f9bfe38a8c6ac1da9ccdf6fdab84d1a43a943b772a04e8e5863a98ca8359f6a0fa6d1 DIST twisted-regen-cache.gz 911 BLAKE2B ffd3fcda6c67ffe6fd3ef581c8d507548396b66ed0708e9a5c790095e579c0d5f0f71596acf05712989da2ddef2b8d437eca973bc4d80ef8a9fa852915f38305 SHA512 95a9b931c73017d16d1b5e6b41345dddffe62b6af1a8e93b5e40d06d3d15be17b0dd0181c767ffeeb791534d463764ef9e066fa6c2ee2ac4b53c86d1da8fce03 diff --git a/dev-python/twisted/twisted-26.4.0_rc2.ebuild b/dev-python/twisted/twisted-26.4.0_rc2.ebuild new file mode 100644 index 000000000000..b3694f66a6df --- /dev/null +++ b/dev-python/twisted/twisted-26.4.0_rc2.ebuild @@ -0,0 +1,166 @@ +# 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/twisted/twisted +PYTHON_TESTED=( python3_{11..14} pypy3_11 ) +PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 multiprocessing pypi virtualx + +DESCRIPTION="An asynchronous networking framework written in Python" +HOMEPAGE=" + https://twisted.org/ + https://github.com/twisted/twisted/ + https://pypi.org/project/Twisted/ +" +SRC_URI+=" + https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz +" + +LICENSE="MIT" +SLOT="0" +if [[ ${PV} != *_rc* ]]; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" +fi +IUSE="conch http2 serial ssl test websockets" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}] + >=dev-python/automat-24.8.0[${PYTHON_USEDEP}] + >=dev-python/constantly-15.1[${PYTHON_USEDEP}] + >=dev-python/hyperlink-17.1.1[${PYTHON_USEDEP}] + >=dev-python/incremental-22.10.0[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-4.2.0[${PYTHON_USEDEP}] + >=dev-python/zope-interface-5[${PYTHON_USEDEP}] + conch? ( + >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] + >=dev-python/bcrypt-3.2.1[${PYTHON_USEDEP}] + >=dev-python/cryptography-38[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + ) + http2? ( + >=dev-python/h2-3.2[${PYTHON_USEDEP}] + >=dev-python/priority-1.1.0[${PYTHON_USEDEP}] + ) + serial? ( + >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] + ) + ssl? ( + >=dev-python/pyopenssl-25.2.0[${PYTHON_USEDEP}] + >=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}] + >=dev-python/idna-2.4[${PYTHON_USEDEP}] + ) + websockets? ( + dev-python/wsproto[${PYTHON_USEDEP}] + ) +" +IDEPEND=" + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] + >=dev-python/constantly-15.1[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-4.2.0[${PYTHON_USEDEP}] + >=dev-python/zope-interface-5[${PYTHON_USEDEP}] +" +BDEPEND=" + >=dev-python/hatch-fancy-pypi-readme-22.5.0[${PYTHON_USEDEP}] + >=dev-python/incremental-22.10.0[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + $(python_gen_cond_dep ' + >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] + >=dev-python/bcrypt-3.2.1[${PYTHON_USEDEP}] + >=dev-python/constantly-15.1.0[${PYTHON_USEDEP}] + >=dev-python/cython-test-exception-raiser-1.0.2[${PYTHON_USEDEP}] + >=dev-python/idna-2.4[${PYTHON_USEDEP}] + >=dev-python/httpx-0.27[${PYTHON_USEDEP}] + >=dev-python/hypothesis-6.56[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + >=dev-python/pyhamcrest-2[${PYTHON_USEDEP}] + >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] + dev-python/wsproto[${PYTHON_USEDEP}] + virtual/openssh + ssl? ( + >=dev-python/pyopenssl-25.2.0[${PYTHON_USEDEP}] + >=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}] + ) + ' "${PYTHON_TESTED[@]}") + ) +" + +python_prepare_all() { + distutils-r1_python_prepare_all + + # upstream test for making releases; not very useful and requires + # sphinx (including on py2) + rm src/twisted/python/test/test_release.py || die + + # multicast tests fail within network-sandbox + sed -e 's:test_joinLeave:_&:' \ + -e 's:test_loopback:_&:' \ + -e 's:test_multiListen:_&:' \ + -e 's:test_multicast:_&:' \ + -i src/twisted/test/test_udp.py || die +} + +src_test() { + # the test suite handles missing file & failing ioctl()s gracefully + # but not permission errors from sandbox + addwrite /dev/net/tun + virtx distutils-r1_src_test +} + +python_test() { + if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then + einfo "Skipping tests on ${EPYTHON} (xfail)" + return + fi + + # breaks some tests by overriding empty environment + local -x SANDBOX_ON=0 + # for py3.13, see + # https://github.com/twisted/twisted/pull/12092#issuecomment-2194326096 + local -x LINES=25 COLUMNS=80 + "${EPYTHON}" -m twisted.trial -j "$(makeopts_jobs)" twisted || + die "Tests failed with ${EPYTHON}" +} + +python_install() { + distutils-r1_python_install + + # own the dropin.cache so we don't leave orphans + > "${D}$(python_get_sitedir)"/twisted/plugins/dropin.cache || die + + python_doscript "${WORKDIR}"/twisted-regen-cache +} + +python_install_all() { + distutils-r1_python_install_all + + newconfd "${FILESDIR}/twistd.conf" twistd + newinitd "${FILESDIR}/twistd.init" twistd +} + +python_postinst() { + twisted-regen-cache || die +} + +pkg_postinst() { + if [[ -z ${ROOT} ]]; then + python_foreach_impl python_postinst + fi +} + +python_postrm() { + rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die +} + +pkg_postrm() { + # if we're removing the last version, remove the cache file + if [[ ! ${REPLACING_VERSIONS} ]]; then + python_foreach_impl python_postrm + fi +} diff --git a/dev-python/uvloop/uvloop-0.22.1.ebuild b/dev-python/uvloop/uvloop-0.22.1.ebuild index 0648fe309d71..039b8e9aca78 100644 --- a/dev-python/uvloop/uvloop-0.22.1.ebuild +++ b/dev-python/uvloop/uvloop-0.22.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 @@ -31,6 +31,7 @@ RDEPEND=" " BDEPEND=" >=dev-python/cython-3.0[${PYTHON_USEDEP}] + dev-python/pkg-resources[${PYTHON_USEDEP}] test? ( >=dev-python/pyopenssl-22.0.0[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] diff --git a/dev-python/ytmusicapi/Manifest b/dev-python/ytmusicapi/Manifest index 53980eec2547..76793ca7cbe0 100644 --- a/dev-python/ytmusicapi/Manifest +++ b/dev-python/ytmusicapi/Manifest @@ -1,2 +1,4 @@ DIST ytmusicapi-1.11.5.tar.gz 413046 BLAKE2B ad3a4cd5519c84e80e0fe802b8af011805d02f90299010b47dbe081ef9dcc462c92e8d3cde55e1c7ac4b541bd91b6093defb00d315281f681eedde8a8ae76060 SHA512 63be541a3c7615e2ac430359c844b77c83bb1c9c382c9c3b91eb314988be5179371deb10c46cec62d0b0db8217e870d9f2da27888bc77bcd88e4d1f44e337d41 DIST ytmusicapi-1.11.5.tar.gz.provenance 9560 BLAKE2B caffeb4d14af62940f214b14bbb50c02ecd7432fdd2e443214a6293079bec76df51c60847542a308ce8b6b4043d0d5ab4ac2842edbfa2867454b3cc4c1a46df9 SHA512 681bdd38d3b3476540780482bb182eb24d62991eb9095b0187054aba58c105093deedd6b2800150cbd1ab53d73620dbbd02d4bc2a0fe76f8ed4e11a671688280 +DIST ytmusicapi-1.12.0.tar.gz 434631 BLAKE2B be43548b2a1cca0e8d4eb1c4bf98f9bb0eff5578b97fe5ceb2358733cf73d991a51d4e50a3b1cdbf10fb7e702fe096ff5f713083637205adddc1a9f43ca4b71b SHA512 1b2ea9ab262622c188435954c3d61175ca474b7c66f7deaec7ec9bae881afe02918de593006b838c3a887d83b62802d1e25f81d880dbe23795cd05b39b83d8c5 +DIST ytmusicapi-1.12.0.tar.gz.provenance 9670 BLAKE2B 773dce972309fd00c9224cddebfb20fb81edb6834bfae51982fe5bb75a5982a8770d135ea7d1720df27c905142ab5aa9f76ec5543df0affa17df00b80f466df4 SHA512 6edad245fa30a5d5972933bcaa1ed97ee695bca048de61cdc4bded4743fe3cc81f1b92a581454fe7fa90332bc54fa4445944cf85f977acd5c1e8843848f237f1 diff --git a/dev-python/ytmusicapi/ytmusicapi-1.12.0.ebuild b/dev-python/ytmusicapi/ytmusicapi-1.12.0.ebuild new file mode 100644 index 000000000000..5e8b02fc587f --- /dev/null +++ b/dev-python/ytmusicapi/ytmusicapi-1.12.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517="setuptools" +PYPI_VERIFY_REPO=https://github.com/sigma67/ytmusicapi +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Unofficial API for YouTube Music" +HOMEPAGE=" + https://ytmusicapi.readthedocs.io/ + https://github.com/sigma67/ytmusicapi/ + https://pypi.org/project/ytmusicapi/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="test" + +RDEPEND=" + dev-python/requests[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs/source dev-python/sphinx-rtd-theme diff --git a/dev-tex/latex2pydata/latex2pydata-0.4.1.ebuild b/dev-tex/latex2pydata/latex2pydata-0.4.1.ebuild index 953392cf4598..d6468a20b727 100644 --- a/dev-tex/latex2pydata/latex2pydata-0.4.1.ebuild +++ b/dev-tex/latex2pydata/latex2pydata-0.4.1.ebuild @@ -22,7 +22,7 @@ S="${WORKDIR}/${PN}-python-v${PV}" LICENSE="LPPL-1.3c" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" # fontsextra for fourier.sty # latexextra for upquote.sty diff --git a/dev-tex/minted/minted-3.4.0-r1.ebuild b/dev-tex/minted/minted-3.4.0-r1.ebuild index 7eca083e6ef9..a16d5c65218a 100644 --- a/dev-tex/minted/minted-3.4.0-r1.ebuild +++ b/dev-tex/minted/minted-3.4.0-r1.ebuild @@ -21,7 +21,7 @@ S="${WORKDIR}"/${PN}-latex-v${PV} LICENSE="|| ( BSD LPPL-1.3 )" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="doc" diff --git a/dev-texlive/texlive-basic/texlive-basic-2024_p72890.ebuild b/dev-texlive/texlive-basic/texlive-basic-2024_p72890.ebuild index 05a32453be82..18e93c7527ed 100644 --- a/dev-texlive/texlive-basic/texlive-basic-2024_p72890.ebuild +++ b/dev-texlive/texlive-basic/texlive-basic-2024_p72890.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 @@ -81,7 +81,7 @@ DESCRIPTION="TeXLive Essential programs and files" LICENSE="GPL-1+ GPL-2+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=app-text/texlive-core-2024[luajittex?] " diff --git a/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2024_p71940.ebuild b/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2024_p71940.ebuild index 094a2092b4f9..3963fb8bbd3e 100644 --- a/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2024_p71940.ebuild +++ b/dev-texlive/texlive-bibtexextra/texlive-bibtexextra-2024_p71940.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 @@ -373,7 +373,7 @@ DESCRIPTION="TeXLive BibTeX additional styles" LICENSE="Artistic Artistic-2 BSD-4 CC-BY-SA-3.0 CC-BY-SA-4.0 GPL-1 GPL-1+ GPL-2 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 " diff --git a/dev-texlive/texlive-binextra/texlive-binextra-2024_p72338-r2.ebuild b/dev-texlive/texlive-binextra/texlive-binextra-2024_p72338-r2.ebuild index 409759e5203d..580c36860af7 100644 --- a/dev-texlive/texlive-binextra/texlive-binextra-2024_p72338-r2.ebuild +++ b/dev-texlive/texlive-binextra/texlive-binextra-2024_p72338-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 @@ -207,7 +207,7 @@ DESCRIPTION="TeXLive TeX auxiliary programs" LICENSE="Apache-2.0 Artistic BSD BSD-2 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-context/texlive-context-2024_p72727.ebuild b/dev-texlive/texlive-context/texlive-context-2024_p72727.ebuild index f3b3e1e7187d..33e1382ac3d6 100644 --- a/dev-texlive/texlive-context/texlive-context-2024_p72727.ebuild +++ b/dev-texlive/texlive-context/texlive-context-2024_p72727.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 @@ -62,7 +62,7 @@ DESCRIPTION="TeXLive ConTeXt and packages" LICENSE="BSD BSD-2 GPL-1+ GPL-2 GPL-3 MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-fontsextra/texlive-fontsextra-2024_p72727.ebuild b/dev-texlive/texlive-fontsextra/texlive-fontsextra-2024_p72727.ebuild index 04376e0cfd69..861fcc042e45 100644 --- a/dev-texlive/texlive-fontsextra/texlive-fontsextra-2024_p72727.ebuild +++ b/dev-texlive/texlive-fontsextra/texlive-fontsextra-2024_p72727.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 @@ -821,7 +821,7 @@ DESCRIPTION="TeXLive Additional fonts" LICENSE="Apache-2.0 BSD BSD-2 CC-BY-1.0 CC-BY-4.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2024_p54074.ebuild b/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2024_p54074.ebuild index 130b30f91e2d..c4f9b774a73a 100644 --- a/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2024_p54074.ebuild +++ b/dev-texlive/texlive-fontsrecommended/texlive-fontsrecommended-2024_p54074.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 @@ -78,7 +78,7 @@ DESCRIPTION="TeXLive Recommended fonts" LICENSE="BSD GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c OFL-1.1 TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-fontutils/texlive-fontutils-2024_p61207.ebuild b/dev-texlive/texlive-fontutils/texlive-fontutils-2024_p61207.ebuild index ea45bca2d18b..e6a6ed81834f 100644 --- a/dev-texlive/texlive-fontutils/texlive-fontutils-2024_p61207.ebuild +++ b/dev-texlive/texlive-fontutils/texlive-fontutils-2024_p61207.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 @@ -42,7 +42,7 @@ DESCRIPTION="TeXLive Graphics and font utilities" LICENSE="Artistic BSD GPL-1+ GPL-2 LPPL-1.3c TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-formatsextra/texlive-formatsextra-2024_p72250.ebuild b/dev-texlive/texlive-formatsextra/texlive-formatsextra-2024_p72250.ebuild index 22f096d3f8d1..65aac376db0f 100644 --- a/dev-texlive/texlive-formatsextra/texlive-formatsextra-2024_p72250.ebuild +++ b/dev-texlive/texlive-formatsextra/texlive-formatsextra-2024_p72250.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 @@ -55,7 +55,7 @@ DESCRIPTION="TeXLive Additional formats" LICENSE="GPL-1+ GPL-2+ GPL-3 LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 diff --git a/dev-texlive/texlive-games/texlive-games-2024_p71129.ebuild b/dev-texlive/texlive-games/texlive-games-2024_p71129.ebuild index 024f205ec852..537eb6098a77 100644 --- a/dev-texlive/texlive-games/texlive-games-2024_p71129.ebuild +++ b/dev-texlive/texlive-games/texlive-games-2024_p71129.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 @@ -153,7 +153,7 @@ DESCRIPTION="TeXLive Games typesetting" LICENSE="Apache-2.0 CC-BY-1.0 CC-BY-4.0 CC-BY-SA-4.0 GPL-1+ LGPL-2.1 LGPL-3 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 " diff --git a/dev-texlive/texlive-humanities/texlive-humanities-2024_p72692.ebuild b/dev-texlive/texlive-humanities/texlive-humanities-2024_p72692.ebuild index 6f7b8a90f9fb..f55cae51ed99 100644 --- a/dev-texlive/texlive-humanities/texlive-humanities-2024_p72692.ebuild +++ b/dev-texlive/texlive-humanities/texlive-humanities-2024_p72692.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 @@ -159,7 +159,7 @@ DESCRIPTION="TeXLive Humanities packages" LICENSE="GPL-1+ GPL-2 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 doc? ( app-text/sword ) diff --git a/dev-texlive/texlive-langarabic/texlive-langarabic-2024_p69111.ebuild b/dev-texlive/texlive-langarabic/texlive-langarabic-2024_p69111.ebuild index 9af5359cd90e..f2dd23f74a93 100644 --- a/dev-texlive/texlive-langarabic/texlive-langarabic-2024_p69111.ebuild +++ b/dev-texlive/texlive-langarabic/texlive-langarabic-2024_p69111.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 @@ -82,7 +82,7 @@ DESCRIPTION="TeXLive Arabic" LICENSE="CC-BY-SA-4.0 GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langchinese/texlive-langchinese-2024_p72136.ebuild b/dev-texlive/texlive-langchinese/texlive-langchinese-2024_p72136.ebuild index 41a0d5a526e7..508db06ccaa3 100644 --- a/dev-texlive/texlive-langchinese/texlive-langchinese-2024_p72136.ebuild +++ b/dev-texlive/texlive-langchinese/texlive-langchinese-2024_p72136.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 @@ -84,7 +84,7 @@ DESCRIPTION="TeXLive Chinese" LICENSE="FDL-1.1+ GPL-1+ GPL-3+ LGPL-2+ LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-langcjk-2024 " diff --git a/dev-texlive/texlive-langcjk/texlive-langcjk-2024_p65824.ebuild b/dev-texlive/texlive-langcjk/texlive-langcjk-2024_p65824.ebuild index 7db0c5a4cc7a..d69892183534 100644 --- a/dev-texlive/texlive-langcjk/texlive-langcjk-2024_p65824.ebuild +++ b/dev-texlive/texlive-langcjk/texlive-langcjk-2024_p65824.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 @@ -56,7 +56,7 @@ DESCRIPTION="TeXLive Chinese/Japanese/Korean (base)" LICENSE="BSD GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT TeX" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=app-text/texlive-core-2024[cjk] >=dev-texlive/texlive-basic-2024 diff --git a/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2024_p69727.ebuild b/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2024_p69727.ebuild index 311d048e1de1..86db08e96468 100644 --- a/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2024_p69727.ebuild +++ b/dev-texlive/texlive-langcyrillic/texlive-langcyrillic-2024_p69727.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 @@ -107,7 +107,7 @@ DESCRIPTION="TeXLive Cyrillic" LICENSE="GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 diff --git a/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2024_p54074.ebuild b/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2024_p54074.ebuild index 257a745fc453..6df8b72c3fd5 100644 --- a/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2024_p54074.ebuild +++ b/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2024_p54074.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 @@ -37,7 +37,7 @@ DESCRIPTION="TeXLive Czech/Slovak" LICENSE="GPL-1+ LPPL-1.3 LPPL-1.3c TeX-other-free" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 diff --git a/dev-texlive/texlive-langenglish/texlive-langenglish-2024_p71835.ebuild b/dev-texlive/texlive-langenglish/texlive-langenglish-2024_p71835.ebuild index 31fda12bf251..ab7c668392bc 100644 --- a/dev-texlive/texlive-langenglish/texlive-langenglish-2024_p71835.ebuild +++ b/dev-texlive/texlive-langenglish/texlive-langenglish-2024_p71835.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 @@ -95,7 +95,7 @@ DESCRIPTION="TeXLive US and UK English" LICENSE="CC-BY-3.0 CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c OPL TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langeuropean/texlive-langeuropean-2024_p66432.ebuild b/dev-texlive/texlive-langeuropean/texlive-langeuropean-2024_p66432.ebuild index 68aee332bbe3..1631d102d0be 100644 --- a/dev-texlive/texlive-langeuropean/texlive-langeuropean-2024_p66432.ebuild +++ b/dev-texlive/texlive-langeuropean/texlive-langeuropean-2024_p66432.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 @@ -157,7 +157,7 @@ DESCRIPTION="TeXLive Other European languages" LICENSE="CC-BY-SA-4.0 GPL-1+ GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langfrench/texlive-langfrench-2024_p72499.ebuild b/dev-texlive/texlive-langfrench/texlive-langfrench-2024_p72499.ebuild index 9d3cf1f3cb01..35e7770e1051 100644 --- a/dev-texlive/texlive-langfrench/texlive-langfrench-2024_p72499.ebuild +++ b/dev-texlive/texlive-langfrench/texlive-langfrench-2024_p72499.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 @@ -108,7 +108,7 @@ DESCRIPTION="TeXLive French" LICENSE="CC-BY-4.0 CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langgerman/texlive-langgerman-2024_p68711.ebuild b/dev-texlive/texlive-langgerman/texlive-langgerman-2024_p68711.ebuild index 1b9101e2173d..040d420a3537 100644 --- a/dev-texlive/texlive-langgerman/texlive-langgerman-2024_p68711.ebuild +++ b/dev-texlive/texlive-langgerman/texlive-langgerman-2024_p68711.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 @@ -90,7 +90,7 @@ DESCRIPTION="TeXLive German" LICENSE="FDL-1.1+ GPL-1+ LPPL-1.0 LPPL-1.3 LPPL-1.3c MIT OPL TeX-other-free" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langgreek/texlive-langgreek-2024_p65038.ebuild b/dev-texlive/texlive-langgreek/texlive-langgreek-2024_p65038.ebuild index a4d0dafc450d..890714e2e1d4 100644 --- a/dev-texlive/texlive-langgreek/texlive-langgreek-2024_p65038.ebuild +++ b/dev-texlive/texlive-langgreek/texlive-langgreek-2024_p65038.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 @@ -74,7 +74,7 @@ DESCRIPTION="TeXLive Greek" LICENSE="BSD-2 GPL-1+ GPL-2 LGPL-3 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langitalian/texlive-langitalian-2024_p55129.ebuild b/dev-texlive/texlive-langitalian/texlive-langitalian-2024_p55129.ebuild index fb97ec9498bb..acaebfb301ec 100644 --- a/dev-texlive/texlive-langitalian/texlive-langitalian-2024_p55129.ebuild +++ b/dev-texlive/texlive-langitalian/texlive-langitalian-2024_p55129.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 @@ -51,7 +51,7 @@ DESCRIPTION="TeXLive Italian" LICENSE="FDL-1.1+ GPL-1+ LGPL-2+ LPPL-1.3 LPPL-1.3c TeX-other-free" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langjapanese/texlive-langjapanese-2024_p72817.ebuild b/dev-texlive/texlive-langjapanese/texlive-langjapanese-2024_p72817.ebuild index a3f5a75352ad..674bbe579b87 100644 --- a/dev-texlive/texlive-langjapanese/texlive-langjapanese-2024_p72817.ebuild +++ b/dev-texlive/texlive-langjapanese/texlive-langjapanese-2024_p72817.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 @@ -153,7 +153,7 @@ DESCRIPTION="TeXLive Japanese" LICENSE="BSD BSD-2 GPL-1+ GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-langcjk-2024 " diff --git a/dev-texlive/texlive-langkorean/texlive-langkorean-2024_p54074.ebuild b/dev-texlive/texlive-langkorean/texlive-langkorean-2024_p54074.ebuild index 5885d1a5ad76..7c97c02d5fb3 100644 --- a/dev-texlive/texlive-langkorean/texlive-langkorean-2024_p54074.ebuild +++ b/dev-texlive/texlive-langkorean/texlive-langkorean-2024_p54074.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 @@ -38,7 +38,7 @@ DESCRIPTION="TeXLive Korean" LICENSE="FDL-1.1+ GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c OFL-1.1 TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-langcjk-2024 " diff --git a/dev-texlive/texlive-langother/texlive-langother-2024_p68719.ebuild b/dev-texlive/texlive-langother/texlive-langother-2024_p68719.ebuild index 574c65962618..e4980150d309 100644 --- a/dev-texlive/texlive-langother/texlive-langother-2024_p68719.ebuild +++ b/dev-texlive/texlive-langother/texlive-langother-2024_p68719.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 @@ -149,7 +149,7 @@ DESCRIPTION="TeXLive Other languages" LICENSE="CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3+ LPPL-1.3 LPPL-1.3c OFL-1.1 TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langpolish/texlive-langpolish-2024_p54074.ebuild b/dev-texlive/texlive-langpolish/texlive-langpolish-2024_p54074.ebuild index 7f8d223e16a9..2b4f848dd014 100644 --- a/dev-texlive/texlive-langpolish/texlive-langpolish-2024_p54074.ebuild +++ b/dev-texlive/texlive-langpolish/texlive-langpolish-2024_p54074.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 @@ -50,7 +50,7 @@ DESCRIPTION="TeXLive Polish" LICENSE="FDL-1.1+ GPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 diff --git a/dev-texlive/texlive-langportuguese/texlive-langportuguese-2024_p67125.ebuild b/dev-texlive/texlive-langportuguese/texlive-langportuguese-2024_p67125.ebuild index a969e9891895..50776365ab73 100644 --- a/dev-texlive/texlive-langportuguese/texlive-langportuguese-2024_p67125.ebuild +++ b/dev-texlive/texlive-langportuguese/texlive-langportuguese-2024_p67125.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 @@ -38,7 +38,7 @@ DESCRIPTION="TeXLive Portuguese" LICENSE="GPL-1+ GPL-2+ LPPL-1.3 LPPL-1.3c MIT public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-langspanish/texlive-langspanish-2024_p72203.ebuild b/dev-texlive/texlive-langspanish/texlive-langspanish-2024_p72203.ebuild index 21b7b6f4c6da..68c8c37b25dc 100644 --- a/dev-texlive/texlive-langspanish/texlive-langspanish-2024_p72203.ebuild +++ b/dev-texlive/texlive-langspanish/texlive-langspanish-2024_p72203.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 @@ -41,7 +41,7 @@ DESCRIPTION="TeXLive Spanish" LICENSE="CC-BY-4.0 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-latex/texlive-latex-2024_p71912.ebuild b/dev-texlive/texlive-latex/texlive-latex-2024_p71912.ebuild index bef341d3678e..d3a67492c3be 100644 --- a/dev-texlive/texlive-latex/texlive-latex-2024_p71912.ebuild +++ b/dev-texlive/texlive-latex/texlive-latex-2024_p71912.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 @@ -183,7 +183,7 @@ DESCRIPTION="TeXLive LaTeX fundamental packages" LICENSE="GPL-2 LPPL-1.0 LPPL-1.3 LPPL-1.3c public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-latexextra/texlive-latexextra-2024_p72895-r1.ebuild b/dev-texlive/texlive-latexextra/texlive-latexextra-2024_p72895-r1.ebuild index aa8c59aeb6f8..fa9dd79f3989 100644 --- a/dev-texlive/texlive-latexextra/texlive-latexextra-2024_p72895-r1.ebuild +++ b/dev-texlive/texlive-latexextra/texlive-latexextra-2024_p72895-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 @@ -4079,7 +4079,7 @@ DESCRIPTION="TeXLive LaTeX additional packages" LICENSE="Apache-2.0 Artistic BSD BSD-2 CC-BY-2.0 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LGPL-2+ LGPL-3 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latexrecommended-2024 >=dev-texlive/texlive-pictures-2024 diff --git a/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2024_p71527.ebuild b/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2024_p71527.ebuild index 2566d902570c..4b182f9e9451 100644 --- a/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2024_p71527.ebuild +++ b/dev-texlive/texlive-latexrecommended/texlive-latexrecommended-2024_p71527.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 @@ -204,7 +204,7 @@ DESCRIPTION="TeXLive LaTeX recommended packages" LICENSE="CC0-1.0 GPL-1+ LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 " diff --git a/dev-texlive/texlive-luatex/texlive-luatex-2024_p72049.ebuild b/dev-texlive/texlive-luatex/texlive-luatex-2024_p72049.ebuild index cbf90cec11d5..cc31c0b39f20 100644 --- a/dev-texlive/texlive-luatex/texlive-luatex-2024_p72049.ebuild +++ b/dev-texlive/texlive-luatex/texlive-luatex-2024_p72049.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 @@ -260,7 +260,7 @@ DESCRIPTION="TeXLive LuaTeX packages" LICENSE="BSD CC-BY-SA-3.0 CC-BY-SA-4.0 EUPL-1.2 FDL-1.1+ GPL-2 GPL-3 GPL-3+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-mathscience/texlive-mathscience-2024_p72655.ebuild b/dev-texlive/texlive-mathscience/texlive-mathscience-2024_p72655.ebuild index da5763bb654d..ee578e476854 100644 --- a/dev-texlive/texlive-mathscience/texlive-mathscience-2024_p72655.ebuild +++ b/dev-texlive/texlive-mathscience/texlive-mathscience-2024_p72655.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 @@ -701,7 +701,7 @@ DESCRIPTION="TeXLive Mathematics, natural sciences, computer science packages" LICENSE="Apache-2.0 BSD BSD-2 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 GPL-1+ GPL-2 GPL-3 GPL-3+ ISC LGPL-2+ LGPL-2.1 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-fontsrecommended-2024 >=dev-texlive/texlive-latex-2024 diff --git a/dev-texlive/texlive-metapost/texlive-metapost-2024_p72550.ebuild b/dev-texlive/texlive-metapost/texlive-metapost-2024_p72550.ebuild index c933379a661c..c95e2758d68f 100644 --- a/dev-texlive/texlive-metapost/texlive-metapost-2024_p72550.ebuild +++ b/dev-texlive/texlive-metapost/texlive-metapost-2024_p72550.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 @@ -128,7 +128,7 @@ DESCRIPTION="TeXLive MetaPost and Metafont packages" LICENSE="CC-BY-SA-4.0 EUPL-1.2 GPL-1+ GPL-2+ GPL-3+ LGPL-2+ LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-music/texlive-music-2024_p69613.ebuild b/dev-texlive/texlive-music/texlive-music-2024_p69613.ebuild index 2b3e82545b47..ae84ef1bbee1 100644 --- a/dev-texlive/texlive-music/texlive-music-2024_p69613.ebuild +++ b/dev-texlive/texlive-music/texlive-music-2024_p69613.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 @@ -90,7 +90,7 @@ DESCRIPTION="TeXLive Music packages" LICENSE="BSD CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 LGPL-2.1 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 " diff --git a/dev-texlive/texlive-pictures/texlive-pictures-2024_p72555.ebuild b/dev-texlive/texlive-pictures/texlive-pictures-2024_p72555.ebuild index e32e42de2e61..cc880bb5704a 100644 --- a/dev-texlive/texlive-pictures/texlive-pictures-2024_p72555.ebuild +++ b/dev-texlive/texlive-pictures/texlive-pictures-2024_p72555.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 @@ -613,7 +613,7 @@ DESCRIPTION="TeXLive Graphics, pictures, diagrams" LICENSE="Apache-2.0 BSD-2 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-1.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ ISC LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-plaingeneric/texlive-plaingeneric-2024_p72878.ebuild b/dev-texlive/texlive-plaingeneric/texlive-plaingeneric-2024_p72878.ebuild index 476a4fbb7394..3c2343543d40 100644 --- a/dev-texlive/texlive-plaingeneric/texlive-plaingeneric-2024_p72878.ebuild +++ b/dev-texlive/texlive-plaingeneric/texlive-plaingeneric-2024_p72878.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 @@ -255,7 +255,7 @@ DESCRIPTION="TeXLive Plain (La)TeX packages" LICENSE="CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ LPPL-1.0 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 " diff --git a/dev-texlive/texlive-pstricks/texlive-pstricks-2024_p65367.ebuild b/dev-texlive/texlive-pstricks/texlive-pstricks-2024_p65367.ebuild index 83ff6296b580..0d8e954d096b 100644 --- a/dev-texlive/texlive-pstricks/texlive-pstricks-2024_p65367.ebuild +++ b/dev-texlive/texlive-pstricks/texlive-pstricks-2024_p65367.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 @@ -269,7 +269,7 @@ DESCRIPTION="TeXLive PSTricks" LICENSE="GPL-1+ GPL-2 LGPL-2+ LGPL-3 LPPL-1.2 LPPL-1.3 LPPL-1.3c" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-plaingeneric-2024 diff --git a/dev-texlive/texlive-publishers/texlive-publishers-2024_p72771.ebuild b/dev-texlive/texlive-publishers/texlive-publishers-2024_p72771.ebuild index 1886692bc072..e523cb4ad67e 100644 --- a/dev-texlive/texlive-publishers/texlive-publishers-2024_p72771.ebuild +++ b/dev-texlive/texlive-publishers/texlive-publishers-2024_p72771.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 @@ -767,7 +767,7 @@ DESCRIPTION="TeXLive Publisher styles, theses, etc." LICENSE="Apache-2.0 BSD CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=dev-texlive/texlive-latex-2024 " diff --git a/dev-texlive/texlive-xetex/texlive-xetex-2024_p71515.ebuild b/dev-texlive/texlive-xetex/texlive-xetex-2024_p71515.ebuild index 825518d4808d..d9486b3ffeea 100644 --- a/dev-texlive/texlive-xetex/texlive-xetex-2024_p71515.ebuild +++ b/dev-texlive/texlive-xetex/texlive-xetex-2024_p71515.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 @@ -103,7 +103,7 @@ DESCRIPTION="TeXLive XeTeX and packages" LICENSE="Apache-2.0 CC-BY-4.0 CC-BY-SA-4.0 GPL-1+ GPL-3 LGPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~riscv x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86" COMMON_DEPEND=" >=app-text/texlive-core-2024[xetex] >=dev-texlive/texlive-basic-2024 diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest index ab98b6ed544e..75a085811f4e 100644 --- a/dev-util/shards/Manifest +++ b/dev-util/shards/Manifest @@ -1,4 +1,2 @@ DIST crystal-molinillo-0.2.0.gh.tar.gz 23959 BLAKE2B 257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6 SHA512 7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2 -DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B 257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6 SHA512 7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2 -DIST shards-0.19.1.tar.gz 83440 BLAKE2B 734750a25c6566725e8329f326e9509771ddb69d8958b98c687dde41c5b34b71d39f19e4d7d1744f576f17ccb39794abd744c407d55611550b4022d3436b90ac SHA512 42cf28c1fdd53a80eed1b9524d8f9ed7b4722f1e7a182abfc729ad574d6edf997c0ae08cb68c9b0ec632e85a4f4b737ecd27a46f7881b1f4725ced3ece8fa6fd DIST shards-0.20.0.gh.tar.gz 109618 BLAKE2B 21790dd05c64ca66447fcde0e9a9419d0632eb0762c0d2fc5d19e444575103697ba01175b5a9c17229ff7cd497e9198db9265e43b5b1999b8220b2acd59c196e SHA512 d88362c3ace00a299f9a5850f9e2798a81b905aa80e4c71b33c6d189e512ebc1dd6cb11e7a27e2b07f2d51a8e3e2ec8b101e769e90a2732926211e66afb6f818 diff --git a/dev-util/shards/shards-0.19.1.ebuild b/dev-util/shards/shards-0.19.1.ebuild deleted file mode 100644 index 6854c326d79a..000000000000 --- a/dev-util/shards/shards-0.19.1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multiprocessing toolchain-funcs - -MOLINILLO_PV="0.2.0" -MOLINILLO_P="crystal-molinillo-${MOLINILLO_PV}" - -DESCRIPTION="Dependency manager for the Crystal language" -HOMEPAGE="https://github.com/crystal-lang/shards/" -SRC_URI=" - https://github.com/crystal-lang/shards/archive/v${PV}.tar.gz - -> ${P}.tar.gz - https://github.com/crystal-lang/crystal-molinillo/archive/v${MOLINILLO_PV}.tar.gz - -> ${MOLINILLO_P}.tar.gz -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64" -RESTRICT="test" # Missing files in the tarball. - -RDEPEND=" - >dev-lang/crystal-0.11.1 - dev-libs/libyaml:= -" -DEPEND=" - ${RDEPEND} -" - -DOCS=( CHANGELOG.md README.md SPEC.md ) - -QA_PREBUILT=".*" # Generated by Crystal. - -src_prepare() { - default - - # bundle crystal-molinillo to bootstrap 'shards' - mkdir -p lib || die - ln -s "../../${MOLINILLO_P}" lib/molinillo || die - - # Remove failing tests. - rm ./spec/unit/{fossil,git,hg}_*.cr || die - - tc-export CC -} - -src_compile() { - emake release=1 \ - FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads $(makeopts_jobs)" -} - -src_install() { - exeinto /usr/bin - doexe "bin/${PN}" - - doman man/* - einstalldocs -} diff --git a/eclass/udev.eclass b/eclass/udev.eclass index 7d1c213fa643..38d879aca91d 100644 --- a/eclass/udev.eclass +++ b/eclass/udev.eclass @@ -130,3 +130,15 @@ udev_reload() { } fi + +# @FUNCTION: udev_hwdb_update +# @DESCRIPTION: +# Rebuild the systemd hwdb binary database used by udev for hardware +# property lookups. Should be called from pkg_postinst and pkg_postrm +# in packages installing hwdb files. +udev_hwdb_update() { + type systemd-hwdb &>/dev/null || return 0 + ebegin "Running systemd-hwdb update to regenerate binary udev hardware database" + systemd-hwdb update --root "${ROOT}" + eend $? +} diff --git a/games-server/bedrock-server/Manifest b/games-server/bedrock-server/Manifest index d8825d7bb221..e1a512cdcf61 100644 --- a/games-server/bedrock-server/Manifest +++ b/games-server/bedrock-server/Manifest @@ -1,3 +1,4 @@ DIST bedrock-server-1.21.131.1.zip 75236147 BLAKE2B 752f9844de2deec38c82b13b641bca700c3d40c78025ab6b989e473ddfb793ba966ca358963c24a87af4d8e4973c08a3f882d5441170a69f1c0e79547405efee SHA512 e6f0deddedda775a3bdba2da3c9a335c7898038284ae59e3ce1da1aedf1a084f6c25c01ab636fa842ee5fb0a852db3c11f05ab3da0451add5fd1afd2dde4ef99 DIST bedrock-server-1.26.1.1.zip 81345078 BLAKE2B 0874690b13f0d8390cd58331da3a641a2f9437b950a142172a4b5f7ee2886930ffaa477e400d92324e8f3e8f788372668a65bad57b700d3edd2eb43e4645cfa9 SHA512 911e18599a832c35c8c586b9b1163f0bd7b38bccf08e8471a541fc06c10c4fdfa54ef890110fb30758df7b40cf69a9bf7dd8d6a812875e0372dbe4709e70a9b2 DIST bedrock-server-1.26.12.2.zip 83506387 BLAKE2B a88e2353bd9aff253cfb3fe39a56713f957f5f0f83a08d8d2681ea4adfc3079513373f7f35dd4868d1d501be2b34c885e4184342a62925690cbda1e5d3e8e9cc SHA512 d20e6f4197fa4715cc34d615e27fd6d0575e8b72d99c13b4c8c74ecf00e13bb9dfbd6ec12ae4067a3eb0ad1c7823c7250d108e20d1b1185459f9b866fff9b8a2 +DIST bedrock-server-1.26.14.1.zip 83496204 BLAKE2B 6c54e137eff1b207d72b3eca43da539af2e81e1ee327a397abcbb92ce2d14bc790086d31e57bed072841e3896e89bb7138672abea78d4c8bd626895907ae770f SHA512 cb8973b85a84ac28f30d5f43c5cd24dd9ba4a38bff3393eb7a6e99a85fd6e4f0c79601a922db9ca0817b0f0eaa8eb0edabbbc38ede7a19f6591fa5ac3396632b diff --git a/games-server/bedrock-server/bedrock-server-1.26.14.1.ebuild b/games-server/bedrock-server/bedrock-server-1.26.14.1.ebuild new file mode 100644 index 000000000000..e363e29bfbd4 --- /dev/null +++ b/games-server/bedrock-server/bedrock-server-1.26.14.1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit systemd + +DESCRIPTION="The official bedrock (non-java) based server for the sandbox video game" +HOMEPAGE="https://www.minecraft.net/" +SRC_URI="https://www.minecraft.net/bedrockdedicatedserver/bin-linux/${P}.zip" +S="${WORKDIR}" + +LICENSE="Mojang" +SLOT="0" +KEYWORDS="-* amd64" + +RDEPEND=" + acct-group/bedrock + acct-user/bedrock + app-misc/dtach + net-misc/curl +" + +BDEPEND="app-arch/unzip" + +RESTRICT="bindist mirror" + +DOCS=( + "bedrock_server_how_to.html" + "release-notes.txt" +) + +QA_PREBUILT="opt/bedrock-server/bedrock_server" + +pkg_nofetch() { + einfo "Unfortunately downloading Bedrock server via CLI doesn't work anymore," + einfo "as Microsoft checks for user agent and otherwise you will get only timeout." + einfo "Please download yourself the Bedrock server from:" + einfo "https://www.minecraft.net/download/server/bedrock" + einfo "and place it in your DISTDIR." +} + +src_compile() { + :; +} + +src_install() { + exeinto /opt/bedrock-server + doexe bedrock_server + + insinto /opt/bedrock-server + doins {allowlist,permissions}.json server.properties + doins -r {behavior,resource}_packs definitions + + dodir /opt/bin + dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server + + newinitd "${FILESDIR}"/bedrock-server.initd-r5 bedrock-server + newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server + systemd_newunit "${FILESDIR}"/bedrock-server.service bedrock-server@.service + + einstalldocs +} diff --git a/kde-plasma/plasma-meta/plasma-meta-6.5.5-r1.ebuild b/kde-plasma/plasma-meta/plasma-meta-6.5.5-r1.ebuild index 496922818c77..8257597f28c7 100644 --- a/kde-plasma/plasma-meta/plasma-meta-6.5.5-r1.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-6.5.5-r1.ebuild @@ -63,7 +63,7 @@ RDEPEND=" >=kde-plasma/systemsettings-${PV}:${SLOT} >=kde-plasma/xdg-desktop-portal-kde-${PV}:${SLOT} sys-apps/dbus[elogind?,systemd?] - sys-auth/polkit[systemd?] + sys-auth/polkit[elogind?,systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-${PV}:${SLOT} ) browser-integration? ( >=kde-plasma/plasma-browser-integration-${PV}:${SLOT} ) diff --git a/kde-plasma/plasma-meta/plasma-meta-6.6.0-r1.ebuild b/kde-plasma/plasma-meta/plasma-meta-6.6.0-r1.ebuild index 55af260aea01..82b0fa891626 100644 --- a/kde-plasma/plasma-meta/plasma-meta-6.6.0-r1.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-6.6.0-r1.ebuild @@ -62,7 +62,7 @@ RDEPEND=" >=kde-plasma/systemsettings-${PV}:${SLOT} >=kde-plasma/xdg-desktop-portal-kde-${PV}:${SLOT} sys-apps/dbus[elogind?,systemd?] - sys-auth/polkit[systemd?] + sys-auth/polkit[elogind?,systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-${PV}:${SLOT} ) browser-integration? ( >=kde-plasma/plasma-browser-integration-${PV}:${SLOT} ) diff --git a/kde-plasma/plasma-meta/plasma-meta-6.6.4.ebuild b/kde-plasma/plasma-meta/plasma-meta-6.6.4.ebuild index 8c84dee6770d..63bb215d7877 100644 --- a/kde-plasma/plasma-meta/plasma-meta-6.6.4.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-6.6.4.ebuild @@ -62,7 +62,7 @@ RDEPEND=" >=kde-plasma/systemsettings-${PV}:${SLOT} >=kde-plasma/xdg-desktop-portal-kde-${PV}:${SLOT} sys-apps/dbus[elogind?,systemd?] - sys-auth/polkit[systemd?] + sys-auth/polkit[elogind?,systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-${PV}:${SLOT} ) browser-integration? ( >=kde-plasma/plasma-browser-integration-${PV}:${SLOT} ) diff --git a/media-libs/lcms/Manifest b/media-libs/lcms/Manifest index cd013eda7fac..dbf76ebe4277 100644 --- a/media-libs/lcms/Manifest +++ b/media-libs/lcms/Manifest @@ -1,2 +1,3 @@ DIST lcms2-2.17.tar.gz 5245319 BLAKE2B 746b0bdff61cbb12f4b27b42a17136a64fd6c437a9f6e620e0a27ba24ebeac595635c3e79929ae4f425b98fba7df1ce1e4a05ebd8bc2e03d23c99cf246fb46e0 SHA512 81885c70fb26a9b7d37a398f43ccb0d1d3ab8f43de7da8f760b26d053a0d7e0543e7d3b0cdcaf9b3b681a1b88f032134c5a3c1a6774a9abc66a8a3f10ba64398 DIST lcms2-2.18.tar.gz 5599928 BLAKE2B 16096647d5b6e91c7785159f841a90c94887497bd21117b539d7c5eac6a5f495efbc2cc06afc9a0cebb6af6d18e8ce7fafd346efad126f15110e663e2dc2d6ab SHA512 a738459c8a14dee633d98d893c23c7e97a6ffe317dcc8fa4fb5daa1ece305de431464ef8b762169f7a1ce16399c29f39d46c9da742cf843cfb15050c4820aa71 +DIST lcms2-2.19.tar.gz 5726199 BLAKE2B e23091c7c2f4243d367c434d02f113ed833e0188c768b272a16d14766517f94a88a7f2402a40ec1a0747e9e1ad3fadad80590cc2db422a274b49d3f90b63e7ea SHA512 0d282fae9ca16b9cbc75ef8845d6ad1062aca8c8783e39c09ad294050e0574da8ee437b9ac58771f259e3b2dea702d8d094dcc7dba4eeba8453d82f54d06ab9c diff --git a/media-libs/lcms/lcms-2.19.ebuild b/media-libs/lcms/lcms-2.19.ebuild new file mode 100644 index 000000000000..8ccdfe27a969 --- /dev/null +++ b/media-libs/lcms/lcms-2.19.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib + +DESCRIPTION="A lightweight, speed optimized color management engine" +HOMEPAGE="https://www.littlecms.com/" +SRC_URI="https://github.com/mm2/Little-CMS/releases/download/lcms${PV/_}/${PN}2-${PV/_}.tar.gz" +S="${WORKDIR}/lcms2-${PV/_}" + +# GPL-3 for the threaded & fastfloat plugins, see meson_options.txt +LICENSE="GPL-3 MIT" +SLOT="2" +if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" +fi +IUSE="doc jpeg static-libs test tiff" +RESTRICT="!test? ( test )" + +RDEPEND=" + jpeg? ( media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}] ) + tiff? ( >=media-libs/tiff-4.0.3-r6:=[${MULTILIB_USEDEP}] ) +" +DEPEND="${RDEPEND}" + +multilib_src_configure() { + local emesonargs=( + -Ddefault_library=$(multilib_native_usex static-libs both shared) + -Dthreaded=true + -Dfastfloat=true + $(meson_feature jpeg) + $(meson_feature test tests) + $(meson_feature tiff) + $(meson_native_true utils) + ) + + meson_src_configure +} + +multilib_src_test() { + # fast_float_testbed on hppa -> 1458s from default timeout of 600, #913067 + meson_src_test --timeout-multiplier=3 +} + +multilib_src_install_all() { + use doc && dodoc doc/*.pdf +} diff --git a/media-libs/mesa/files/mesa-26.0.5_nir-gather_info-clear-interpolation-qualifiers-only-.patch b/media-libs/mesa/files/mesa-26.0.5_nir-gather_info-clear-interpolation-qualifiers-only-.patch new file mode 100644 index 000000000000..babe2a2c30b7 --- /dev/null +++ b/media-libs/mesa/files/mesa-26.0.5_nir-gather_info-clear-interpolation-qualifiers-only-.patch @@ -0,0 +1,62 @@ +From b2833e444029cb922a970a9769e741faf8f48b7c Mon Sep 17 00:00:00 2001 +From: Janne Grunau <j@jannau.net> +Date: Fri, 17 Apr 2026 15:38:31 +0200 +Subject: [PATCH 2/2] nir/gather_info: clear interpolation qualifiers only in + fragment stage + +Asahi wants the the interpolation qualifiers from the shader info in the +vertex shader. Clear them only in the fragment stage so they can +propagate back. + +Closes: https://gitlab.freedesktop.org/mesa/mesa/-/work_items/15288 +Backport-to: 26.0 +Fixes: a72704d0fbd ("nir/gather_info: clear interpolation qualifiers before gathering") +Signed-off-by: Janne Grunau <j@jannau.net> +Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41040> +(cherry picked from commit 98a97cb4136751080979a4ae2dacc69869099b75) +--- + src/compiler/nir/nir_gather_info.c | 4 ++-- + src/gallium/drivers/asahi/agx_state.c | 5 +++++ + 2 files changed, 7 insertions(+), 2 deletions(-) + +diff --git a/src/compiler/nir/nir_gather_info.c b/src/compiler/nir/nir_gather_info.c +index 2ac32c7e42e..85dc0b57132 100644 +--- a/src/compiler/nir/nir_gather_info.c ++++ b/src/compiler/nir/nir_gather_info.c +@@ -1067,8 +1067,6 @@ nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint) + shader->info.patch_outputs_written_indirectly = 0; + shader->info.per_primitive_inputs = 0; + shader->info.per_primitive_outputs = 0; +- shader->info.linear_varyings = 0; +- shader->info.perspective_varyings = 0; + + shader->info.uses_resource_info_query = false; + +@@ -1086,6 +1084,8 @@ nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint) + + /* By definition the fragment shader knows, unless we fail to gather. */ + shader->info.known_interpolation_qualifiers = true; ++ shader->info.linear_varyings = 0; ++ shader->info.perspective_varyings = 0; + } + if (shader->info.stage == MESA_SHADER_TESS_CTRL) { + shader->info.tess.tcs_same_invocation_inputs_read = 0; +diff --git a/src/gallium/drivers/asahi/agx_state.c b/src/gallium/drivers/asahi/agx_state.c +index 6269ed55bc7..b3693ac8267 100644 +--- a/src/gallium/drivers/asahi/agx_state.c ++++ b/src/gallium/drivers/asahi/agx_state.c +@@ -1800,6 +1800,11 @@ agx_shader_initialize(struct agx_device *dev, struct agx_uncompiled_shader *so, + nir_lower_io_lower_64bit_to_32 | + nir_lower_io_use_interpolated_input_intrinsics); + ++ /* Regather shader info after nir_lower_io. This recalculates interpolation ++ * qualifiers which got lost when mesa/st lowered I/O back to vars. ++ */ ++ nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir)); ++ + if (nir->info.stage == MESA_SHADER_FRAGMENT) { + so->info.uses_fbfetch = nir->info.fs.uses_fbfetch_output; + so->info.inputs_linear_shaded = nir->info.linear_varyings; +-- +2.53.0 + diff --git a/media-libs/mesa/mesa-26.0.5-r1.ebuild b/media-libs/mesa/mesa-26.0.5-r1.ebuild new file mode 100644 index 000000000000..888b0b215f68 --- /dev/null +++ b/media-libs/mesa/mesa-26.0.5-r1.ebuild @@ -0,0 +1,433 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LLVM_COMPAT=( {18..22} ) +LLVM_OPTIONAL=1 +CARGO_OPTIONAL=1 +PYTHON_COMPAT=( python3_{10..14} ) + +inherit flag-o-matic llvm-r2 meson-multilib python-any-r1 linux-info + +MY_P="${P/_/-}" + +CRATES=" + paste@1.0.14 + proc-macro2@1.0.86 + quote@1.0.35 + rustc-hash@2.1.1 + syn@2.0.87 + unicode-ident@1.0.12 +" + +RUST_MIN_VER="1.82.0" +RUST_MULTILIB=1 +RUST_OPTIONAL=1 + +inherit cargo + +DESCRIPTION="OpenGL-like graphic library for Linux" +HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git" + inherit git-r3 +else + SRC_URI=" + https://archive.mesa3d.org/${MY_P}.tar.xz + " + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris" +fi + +# This should be {CARGO_CRATE_URIS//.crate/.tar.gz} to correspond to the wrap files, +# but there are "stale" distfiles on the mirrors with the wrong names. +# export MESON_PACKAGE_CACHE_DIR="${DISTDIR}" +SRC_URI+=" + ${CARGO_CRATE_URIS} +" + +S="${WORKDIR}/${MY_P}" +EGIT_CHECKOUT_DIR=${S} + +LICENSE="MIT SGI-B-2.0" +SLOT="0" + +VIDEO_CARDS=" + asahi d3d12 freedreno i915 imagination intel lavapipe lima nouveau nvk + panfrost r300 r600 radeon radeonsi v3d vc4 virgl vivante vmware zink" +for card in ${VIDEO_CARDS}; do + IUSE_VIDEO_CARDS+=" video_cards_${card}" +done + +IUSE="${IUSE_VIDEO_CARDS} + cpu_flags_x86_sse2 debug +llvm + lm-sensors opencl +opengl +proprietary-codecs + sysprof test unwind vaapi valgrind vulkan + wayland +X +zstd" +RESTRICT="!test? ( test )" +REQUIRED_USE=" + llvm? ( ${LLVM_REQUIRED_USE} ) + video_cards_i915? ( llvm ) + video_cards_lavapipe? ( llvm vulkan ) + video_cards_radeon? ( x86? ( llvm ) amd64? ( llvm ) ) + video_cards_r300? ( x86? ( llvm ) amd64? ( llvm ) ) + video_cards_zink? ( vulkan opengl ) + video_cards_nvk? ( vulkan video_cards_nouveau ) +" + +LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.121" +RDEPEND=" + ${LIBDRM_DEPSTRING}[${MULTILIB_USEDEP}] + >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}] + >=dev-util/spirv-tools-1.3.231.0[${MULTILIB_USEDEP}] + >=media-libs/libglvnd-1.3.2[X?,${MULTILIB_USEDEP}] + >=virtual/zlib-1.2.9:=[${MULTILIB_USEDEP}] + unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] ) + llvm? ( + $(llvm_gen_dep " + llvm-core/llvm:\${LLVM_SLOT}[llvm_targets_AMDGPU(+),${MULTILIB_USEDEP}] + opencl? ( + dev-util/spirv-llvm-translator:\${LLVM_SLOT} + llvm-core/clang:\${LLVM_SLOT}[llvm_targets_AMDGPU(+),${MULTILIB_USEDEP}] + =llvm-core/libclc-\${LLVM_SLOT}*[spirv(-)] + ) + ") + video_cards_r600? ( + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + video_cards_radeon? ( + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + ) + lm-sensors? ( sys-apps/lm-sensors:=[${MULTILIB_USEDEP}] ) + opencl? ( + >=virtual/opencl-3 + llvm-core/libclc[spirv(-)] + virtual/libelf:0= + ) + vaapi? ( + >=media-libs/libva-1.7.3:=[${MULTILIB_USEDEP}] + ) + video_cards_i915? ( + ${LIBDRM_DEPSTRING}[video_cards_intel] + ) + video_cards_radeonsi? ( + ${LIBDRM_DEPSTRING}[video_cards_amdgpu] + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + video_cards_zink? ( media-libs/vulkan-loader:=[${MULTILIB_USEDEP}] ) + vulkan? ( + media-libs/libdisplay-info:=[${MULTILIB_USEDEP}] + virtual/libudev:= + ) + wayland? ( >=dev-libs/wayland-1.18.0[${MULTILIB_USEDEP}] ) + X? ( + >=x11-libs/libX11-1.8[${MULTILIB_USEDEP}] + >=x11-libs/libxshmfence-1.1[${MULTILIB_USEDEP}] + >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] + >=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}] + >=x11-libs/libxcb-1.17:=[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/xcb-util-keysyms[${MULTILIB_USEDEP}] + ) + zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) +" + +DEPEND="${RDEPEND} + sysprof? ( >=dev-util/sysprof-capture-49.0[${MULTILIB_USEDEP}] ) + video_cards_d3d12? ( >=dev-util/directx-headers-1.618.1[${MULTILIB_USEDEP}] ) + valgrind? ( dev-debug/valgrind ) + wayland? ( >=dev-libs/wayland-protocols-1.41 ) + X? ( + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-base/xorg-proto + ) +" + +CLC_DEPSTRING=" + ~dev-util/mesa_clc-${PV}[video_cards_asahi?,video_cards_panfrost?] + llvm-core/libclc[spirv(-)] +" +BDEPEND=" + ${PYTHON_DEPS} + opencl? ( + >=dev-util/bindgen-0.71.1 + ${RUST_DEPEND} + ) + >=dev-build/meson-1.7.0 + app-alternatives/yacc + app-alternatives/lex + virtual/pkgconfig + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + dev-python/pyyaml[\${PYTHON_USEDEP}] + ") + video_cards_asahi? ( ${CLC_DEPSTRING} ) + video_cards_intel? ( ${CLC_DEPSTRING} ) + video_cards_panfrost? ( ${CLC_DEPSTRING} ) + vulkan? ( + dev-util/glslang + video_cards_nvk? ( + >=dev-util/bindgen-0.71.1 + >=dev-util/cbindgen-0.26.0 + ${RUST_DEPEND} + ${CLC_DEPSTRING} + ) + ) + wayland? ( dev-util/wayland-scanner ) +" + +QA_WX_LOAD=" +x86? ( + usr/lib/libgallium-*.so + usr/lib/libGLX_mesa.so.0.0.0 +)" + +PATCHES=( + "${FILESDIR}/${P}_nir-gather_info-clear-interpolation-qualifiers-only-.patch" +) + +src_unpack() { + if [[ ${PV} == 9999 ]]; then + git-r3_src_unpack + else + unpack ${MY_P}.tar.xz + fi + + # We need this because we cannot tell meson to use DISTDIR yet + pushd "${DISTDIR}" >/dev/null || die + mkdir -p "${S}"/subprojects/packagecache || die + local i + for i in *.crate; do + ln -s "${PWD}/${i}" "${S}/subprojects/packagecache/${i/.crate/}.tar.gz" || die + done + popd >/dev/null || die +} + +pkg_pretend() { + if use vulkan; then + if ! use video_cards_asahi && + ! use video_cards_d3d12 && + ! use video_cards_freedreno && + ! use video_cards_imagination && + ! use video_cards_intel && + ! use video_cards_lavapipe && + ! use video_cards_nouveau && + ! use video_cards_nvk && + ! use video_cards_panfrost && + ! use video_cards_radeonsi && + ! use video_cards_v3d && + ! use video_cards_virgl; then + ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain asahi, d3d12, freedreno, imagination, intel, lavapipe, nouveau, nvk, panfrost, radeonsi, v3d, or virgl" + fi + fi + + # VA + if use vaapi; then + if ! use video_cards_d3d12 && + ! use video_cards_nouveau && + ! use video_cards_r600 && + ! use video_cards_radeonsi && + ! use video_cards_virgl; then + ewarn "Ignoring USE=vaapi since VIDEO_CARDS does not contain d3d12, nouveau, r600, radeonsi, or virgl" + fi + fi + + if ! use llvm; then + use opencl && ewarn "Ignoring USE=opencl since USE does not contain llvm" + fi +} + +python_check_deps() { + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/pyyaml[${PYTHON_USEDEP}]" || return 1 +} + +pkg_setup() { + # warning message for bug 459306 + if use llvm && has_version llvm-core/llvm[!debug=]; then + ewarn "Mismatch between debug USE flags in media-libs/mesa and llvm-core/llvm" + ewarn "detected! This can cause problems. For details, see bug 459306." + fi + + if use video_cards_intel || + use video_cards_radeonsi; then + if kernel_is -ge 5 11 3; then + CONFIG_CHECK="~KCMP" + elif kernel_is -ge 5 11; then + CONFIG_CHECK="~CHECKPOINT_RESTORE" + elif kernel_is -ge 5 10 20; then + CONFIG_CHECK="~KCMP" + else + CONFIG_CHECK="~CHECKPOINT_RESTORE" + fi + linux-info_pkg_setup + fi + + use llvm && llvm-r2_pkg_setup + python-any-r1_pkg_setup + + if use opencl || (use vulkan && use video_cards_nvk); then + rust_pkg_setup + fi +} + +src_prepare() { + default + sed -i -e "/^PLATFORM_SYMBOLS/a '__gentoo_check_ldflags__'," \ + bin/symbols-check.py || die # bug #830728 +} + +multilib_src_configure() { + local emesonargs=() + + # bug #932591 and https://gitlab.freedesktop.org/mesa/mesa/-/issues/11140 + filter-lto + + local platforms + use X && platforms+="x11" + use wayland && platforms+=",wayland" + emesonargs+=(-Dplatforms=${platforms#,}) + + if use video_cards_d3d12 || + use video_cards_nouveau || + use video_cards_r600 || + use video_cards_radeonsi || + use video_cards_virgl; then + emesonargs+=($(meson_feature vaapi gallium-va)) + use vaapi && emesonargs+=( -Dva-libs-path="${EPREFIX}"/usr/$(get_libdir)/va/drivers ) + else + emesonargs+=(-Dgallium-va=disabled) + fi + + if use video_cards_d3d12; then + emesonargs+=($(meson_feature vaapi gallium-d3d12-video)) + fi + + gallium_enable !llvm softpipe + gallium_enable llvm llvmpipe + gallium_enable video_cards_asahi asahi + gallium_enable video_cards_d3d12 d3d12 + gallium_enable video_cards_freedreno freedreno + gallium_enable video_cards_i915 i915 + gallium_enable video_cards_intel crocus iris + gallium_enable video_cards_lima lima + gallium_enable video_cards_nouveau nouveau + gallium_enable video_cards_panfrost panfrost + gallium_enable video_cards_v3d v3d + gallium_enable video_cards_vc4 vc4 + gallium_enable video_cards_virgl virgl + gallium_enable video_cards_vivante etnaviv + gallium_enable video_cards_vmware svga + gallium_enable video_cards_zink zink + + gallium_enable video_cards_r300 r300 + gallium_enable video_cards_r600 r600 + gallium_enable video_cards_radeonsi radeonsi + if ! use video_cards_r300 && + ! use video_cards_r600; then + gallium_enable video_cards_radeon r300 r600 + fi + + if use llvm && use opencl; then + PKG_CONFIG_PATH="$(get_llvm_prefix)/$(get_libdir)/pkgconfig" + # See https://gitlab.freedesktop.org/mesa/mesa/-/blob/main/docs/rusticl.rst + emesonargs+=( + $(meson_native_true gallium-rusticl) + -Drust_std=2021 + ) + fi + + if use vulkan; then + vulkan_enable video_cards_asahi asahi + vulkan_enable video_cards_d3d12 microsoft-experimental + vulkan_enable video_cards_freedreno freedreno + vulkan_enable video_cards_imagination imagination + vulkan_enable video_cards_intel intel intel_hasvk + vulkan_enable video_cards_lavapipe swrast + vulkan_enable video_cards_nvk nouveau + vulkan_enable video_cards_panfrost panfrost + vulkan_enable video_cards_radeonsi amd + vulkan_enable video_cards_v3d broadcom + vulkan_enable video_cards_vc4 broadcom + vulkan_enable video_cards_virgl virtio + emesonargs+=(-Dvulkan-layers=anti-lag,device-select,overlay) + fi + + driver_list() { + local drivers="$(sort -u <<< "${1// /$'\n'}")" + echo "${drivers//$'\n'/,}" + } + + if use opengl && use X; then + emesonargs+=(-Dglx=dri) + else + emesonargs+=(-Dglx=disabled) + fi + + if [[ "${ABI}" == amd64 ]]; then + emesonargs+=($(meson_feature video_cards_intel intel-rt)) + fi + + if use video_cards_asahi || + use video_cards_intel || + use video_cards_nvk || + use video_cards_panfrost; then + emesonargs+=(-Dmesa-clc=system) + fi + + if use video_cards_asahi || + use video_cards_panfrost; then + emesonargs+=(-Dprecomp-compiler=system) + fi + + use debug && EMESON_BUILDTYPE=debug + + emesonargs+=( + $(meson_use test build-tests) + -Dexpat=enabled + $(meson_use opengl) + $(meson_feature opengl gbm) + $(meson_feature opengl gles1) + $(meson_feature opengl gles2) + $(meson_feature opengl glvnd) + $(meson_feature opengl egl) + $(meson_feature llvm) + $(meson_feature lm-sensors lmsensors) + $(meson_feature unwind libunwind) + $(meson_feature vulkan display-info) + $(meson_feature zstd) + $(meson_use llvm amd-use-llvm) + $(meson_use sysprof) + $(meson_use cpu_flags_x86_sse2 sse2) + -Dvalgrind=$(usex valgrind auto disabled) + -Dvideo-codecs=$(usex proprietary-codecs "all" "all_free") + -Dgallium-drivers=$(driver_list "${GALLIUM_DRIVERS[*]}") + -Dvulkan-drivers=$(driver_list "${VULKAN_DRIVERS[*]}") + -Db_ndebug=$(usex debug false true) + ) + meson_src_configure +} + +multilib_src_test() { + meson_src_test -t 100 +} + +# $1 - VIDEO_CARDS flag (check skipped for "--") +# other args - names of DRI drivers to enable +gallium_enable() { + if [[ $1 == -- ]] || use $1; then + shift + GALLIUM_DRIVERS+=("$@") + fi +} + +vulkan_enable() { + if [[ $1 == -- ]] || use $1; then + shift + VULKAN_DRIVERS+=("$@") + fi +} diff --git a/media-libs/rtmidi/rtmidi-6.0.0.ebuild b/media-libs/rtmidi/rtmidi-6.0.0.ebuild index 542db87f8999..c7a8a1c8393a 100644 --- a/media-libs/rtmidi/rtmidi-6.0.0.ebuild +++ b/media-libs/rtmidi/rtmidi-6.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 @@ -6,8 +6,8 @@ EAPI=8 inherit cmake DESCRIPTION="A set of C++ classes that provide a common API for realtime MIDI input/output" -HOMEPAGE="https://www.music.mcgill.ca/~gary/rtmidi" -SRC_URI="https://www.music.mcgill.ca/~gary/rtmidi/release/${P}.tar.gz" +HOMEPAGE="https://caml.music.mcgill.ca/~gary/rtmidi/" +SRC_URI="https://caml.music.mcgill.ca/~gary/rtmidi/release/${P}.tar.gz" LICENSE="RtMidi" SLOT="0" diff --git a/media-radio/wsjtx_improved/Manifest b/media-radio/wsjtx_improved/Manifest index 7e493fd220f8..c4ecf0c80a2d 100644 --- a/media-radio/wsjtx_improved/Manifest +++ b/media-radio/wsjtx_improved/Manifest @@ -1,3 +1 @@ -DIST wsjtx-3.0.0_improved_PLUS_250924_qt6.tgz 35003895 BLAKE2B 6649bdac6cc390e966398a37d5854009d8b540ce951557c186803cbd81c90a0d5428f816593b22b44e73ea82f8dab6c2b91ff6581ddac87f6f90d43ec852e5db SHA512 70d34e9d6b03549d7445689709766fb2e1be50a56b3a54c405e3d489a93a72fd8038ad2d7e02ddfbca6a9794fbd3a8c3e3c914fd0bb4a5de02a12cc1311fe309 -DIST wsjtx-3.0.0_improved_PLUS_251212_qt6.tgz 35225077 BLAKE2B 3184910c38eeb3e6a590242d5c84213e3c4af53a8ec091dfa32d2f42187fb3e9e7d49209ee976acd063e2fe2dac019d1c3cea0c8d3474f0a3f36238419c30eea SHA512 2cd381f3eea3549a2fc689b438ea954e0498ffb749219c8532159eb15cce1d2d4dc45439d45a2f4f35646ee98e5c216b8a191c740c76e2fedc643085f70710ae DIST wsjtx-3.1.0_improved_PLUS_260306_qt6.tgz 69069886 BLAKE2B a2166fa416d43ef60bcadc0d2897b30801bb5cd5191f62b5f35b342214512d56a504f1122a07e27152aa4a78d0344f620cc4c1fb51bc2498396475a7712fa036 SHA512 fdb5cee4fc114c787de0242501a8bd166160c6430d4139f9603460d1c1d27fdb66e250e1932a0cc3ac284fe49af8a92a459e8ae6196c0e879d9c22889795a0e4 diff --git a/media-radio/wsjtx_improved/files/wsjtx-2.2.0-werror.patch b/media-radio/wsjtx_improved/files/wsjtx-2.2.0-werror.patch deleted file mode 100644 index dcde5b18a07a..000000000000 --- a/media-radio/wsjtx_improved/files/wsjtx-2.2.0-werror.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt 2020-07-09 12:52:57.776437846 +0200 -+++ b/CMakeLists.txt 2020-07-09 12:53:16.607083283 +0200 -@@ -921,7 +921,7 @@ - # - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra") - --set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror -Wall -Wextra -fexceptions -frtti") -+set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -fexceptions -frtti") - - if (NOT APPLE) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-pragmas") diff --git a/media-radio/wsjtx_improved/files/wsjtx-2.8.0-qt692-audio.patch b/media-radio/wsjtx_improved/files/wsjtx-2.8.0-qt692-audio.patch deleted file mode 100644 index 9afc417fd776..000000000000 --- a/media-radio/wsjtx_improved/files/wsjtx-2.8.0-qt692-audio.patch +++ /dev/null @@ -1,22 +0,0 @@ -# fixes Bug #https://bugs.gentoo.org/963899 -# Due to changes on the pulseaudio backend >=Qt 692 needs a bytesAvailable() function defined which returns more than zero. -diff --git a/Modulator/Modulator.hpp b/Modulator/Modulator.hpp -index fee2877..7203696 100755 ---- a/Modulator/Modulator.hpp -+++ b/Modulator/Modulator.hpp -@@ -50,14 +50,12 @@ protected: - {
- return -1; // we don't consume data
- }
--#if defined(Q_OS_WIN)
--// On Windows, bytesAvailable() must return a size that exceeds some threshold
-+// bytesAvailable() must return a size that exceeds some threshold
- // in order for the AudioSink to go into Active state and start pulling data.
- qint64 bytesAvailable () const
- {
- return 8000;
- }
--#endif
-
- private:
- qint16 postProcessSample (qint16 sample) const;
diff --git a/media-radio/wsjtx_improved/files/wsjtx-3.0.0-fix-sound-dir.patch b/media-radio/wsjtx_improved/files/wsjtx-3.0.0-fix-sound-dir.patch deleted file mode 100644 index fe766504b6b9..000000000000 --- a/media-radio/wsjtx_improved/files/wsjtx-3.0.0-fix-sound-dir.patch +++ /dev/null @@ -1,66 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index a4d37ad..aaf771e 100755 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1733,7 +1733,7 @@ install (DIRECTORY - - install (DIRECTORY - ${PROJECT_SOURCE_DIR}/sounds -- DESTINATION ${CMAKE_INSTALL_BINDIR} -+ DESTINATION ${CMAKE_INSTALL_DATADIR}/${CMAKE_PROJECT_NAME} - #COMPONENT runtime - ) - -diff --git a/widgets/displaytext.cpp b/widgets/displaytext.cpp -index f2f8ee1..b269261 100755 ---- a/widgets/displaytext.cpp -+++ b/widgets/displaytext.cpp -@@ -918,7 +918,7 @@ void DisplayText::AudioAlerts() - {
- if(m_config->alert_Enabled()) {
- QAudioDevice info(QMediaDevices::defaultAudioOutput());
-- QString binPath = QCoreApplication::applicationDirPath();
-+ QString binPath = "/usr/share/wsjtx";
- QAudioFormat format;
- format.setSampleRate(48000);
- format.setChannelCount(1);
-diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp -index 1536ba5..151417e 100755 ---- a/widgets/mainwindow.cpp -+++ b/widgets/mainwindow.cpp -@@ -3299,7 +3299,7 @@ void MainWindow::fastSink(qint64 frames) - QTimer::singleShot (100, [=] { // UR delete for versions without alerts
- if ((m_config.alert_Enabled()) && (m_config.alert_DXcall()) && (play_DXcall) && (m_hisCall!="")) {
- QAudioDevice info(QMediaDevices::defaultAudioOutput());
-- QString binPath = QCoreApplication::applicationDirPath();
-+ QString binPath = "/usr/share/wsjtx";
- QAudioFormat format;
- format.setSampleRate(48000);
- format.setChannelCount(1);
-@@ -7052,7 +7052,7 @@ void MainWindow::readFromStdout() //readFromStdout - QTimer::singleShot (100, [=] { // UR delete for versions without alerts
- if (m_config.alert_Enabled() && m_config.alert_DXcall() && play_DXcall && m_hisCall!="") {
- QAudioDevice info(QMediaDevices::defaultAudioOutput());
-- QString binPath = QCoreApplication::applicationDirPath();
-+ QString binPath = "/usr/share/wsjtx";
- QAudioFormat format;
- format.setSampleRate(48000);
- format.setChannelCount(1);
-@@ -10219,7 +10219,7 @@ void MainWindow::mousePressEvent(QMouseEvent *event) // mouse press events - } else {
- // Testing the default audio device
- QAudioDevice info(QMediaDevices::defaultAudioOutput());
-- QString binPath = QCoreApplication::applicationDirPath();
-+ QString binPath = "/usr/share/wsjtx";
- QAudioFormat format;
- format.setSampleRate(48000);
- format.setChannelCount(1);
-@@ -16985,7 +16985,7 @@ void MainWindow::remove_old_files(const QString &directoryPath, int daysOld) - void MainWindow::alertQSYmessage ()
- {
- QAudioDevice info(QMediaDevices::defaultAudioOutput());
-- QString binPath = QCoreApplication::applicationDirPath();
-+ QString binPath = "/usr/share/wsjtx";
- QAudioFormat format;
- format.setSampleRate(48000);
- format.setChannelCount(1);
diff --git a/media-radio/wsjtx_improved/wsjtx_improved-3.0.0-r1.ebuild b/media-radio/wsjtx_improved/wsjtx_improved-3.0.0-r1.ebuild deleted file mode 100644 index 4cd3baf2242d..000000000000 --- a/media-radio/wsjtx_improved/wsjtx_improved-3.0.0-r1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake edos2unix flag-o-matic - -DESCRIPTION="Weak signal ham radio communication with improvements" -HOMEPAGE="https://wsjt-x-improved.sourceforge.io/" -SRC_URI="https://downloads.sourceforge.net/wsjt-x-improved/wsjtx-${PV}_improved_PLUS_250924_qt6.tgz" - -S=${WORKDIR}/wsjtx - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="doc" - -RDEPEND=" - !media-radio/wsjtx - dev-libs/boost:=[nls,python] - dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] - dev-qt/qtmultimedia:6 - dev-qt/qtserialport:6 - dev-qt/qtwebsockets:6 - virtual/libusb:1 - >=media-libs/hamlib-4.0:= - sci-libs/fftw:3.0=[threads,fortran] - virtual/fortran - app-text/asciidoc - doc? ( dev-ruby/asciidoctor )" -DEPEND="${RDEPEND}" -BDEPEND="dev-qt/qttools[linguist]" - -PATCHES=( - "${FILESDIR}/wsjtx-2.2.0-werror.patch" - "${FILESDIR}/wsjtx-2.3.0-drop-docs.patch" - "${FILESDIR}/wsjtx-clang.patch" - "${FILESDIR}/wsjtx-3.0.0-fix-sound-dir.patch" - "${FILESDIR}/wsjtx-3.0.0-gcc16.patch" - "${FILESDIR}/wsjtx-2.8.0-qt692-audio.patch" -) - -DOCS=( AUTHORS BUGS NEWS README THANKS ) - -src_unpack() { - unpack ${A} - unpack "${WORKDIR}/wsjtx-3.0.0/src/wsjtx.tgz" -} - -src_prepare() { - edos2unix "${S}/message_aggregator.desktop" - edos2unix "${S}/wsjtx.desktop" - edos2unix "${S}/CMakeLists.txt" - sed -i -e "s/COMMAND \${GZIP_EXECUTABLE}/# COMMAND/" \ - manpages/CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - # fails to compile with -flto (bug #860417) - filter-lto - - local mycmakeargs=( - -DWSJT_GENERATE_DOCS="$(usex doc)" - -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" - ) - append-ldflags -no-pie - # fix executable stack from fortran nested functions, placing them on the - # heap. Switch is only supported for newer GCC versions (bug #968790). - append-fflags $(test-flags-FC -ftrampoline-impl=heap) - cmake_src_configure -} - -src_install() { - cmake_src_install - rm "${D}"/usr/bin/rigctl{,d,com}-wsjtx || die - rm "${D}"/usr/share/man/man1/rigctl{,d,com}-wsjtx.1 || die -} diff --git a/media-radio/wsjtx_improved/wsjtx_improved-3.0.0_p20251212.ebuild b/media-radio/wsjtx_improved/wsjtx_improved-3.0.0_p20251212.ebuild deleted file mode 100644 index 7779dd29f17a..000000000000 --- a/media-radio/wsjtx_improved/wsjtx_improved-3.0.0_p20251212.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake edos2unix flag-o-matic - -DESCRIPTION="Weak signal ham radio communication with improvements" -HOMEPAGE="https://wsjt-x-improved.sourceforge.io/" -SRC_URI="https://downloads.sourceforge.net/wsjt-x-improved/wsjtx-3.0.0_improved_PLUS_251212_qt6.tgz" - -S=${WORKDIR}/wsjtx - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -RDEPEND=" - !media-radio/wsjtx - dev-libs/boost:=[nls,python] - dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] - dev-qt/qtmultimedia:6 - dev-qt/qtserialport:6 - dev-qt/qtwebsockets:6 - virtual/libusb:1 - >=media-libs/hamlib-4.0:= - sci-libs/fftw:3.0=[threads,fortran] - virtual/fortran - app-text/asciidoc - doc? ( dev-ruby/asciidoctor )" -DEPEND="${RDEPEND}" -BDEPEND="dev-qt/qttools[linguist]" - -PATCHES=( - "${FILESDIR}/wsjtx-2.2.0-werror.patch" - "${FILESDIR}/wsjtx-2.3.0-drop-docs.patch" - "${FILESDIR}/wsjtx-clang.patch" - "${FILESDIR}/wsjtx-3.0.0-gcc16.patch" - "${FILESDIR}/wsjtx-3.0.0_p251212-fix-sound-dir.patch" -) - -DOCS=( AUTHORS BUGS NEWS README THANKS ) - -src_unpack() { - unpack ${A} - unpack "${WORKDIR}/wsjtx-3.0.0/src/wsjtx.tgz" -} - -src_prepare() { - edos2unix "${S}/message_aggregator.desktop" - edos2unix "${S}/wsjtx.desktop" - edos2unix "${S}/CMakeLists.txt" - sed -i -e "s/COMMAND \${GZIP_EXECUTABLE}/# COMMAND/" \ - manpages/CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - # fails to compile with -flto (bug #860417) - filter-lto - - local mycmakeargs=( - -DWSJT_GENERATE_DOCS="$(usex doc)" - -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" - ) - append-ldflags -no-pie - # fix executable stack from fortran nested functions, placing them on the - # heap. Switch is only supported for newer GCC versions (bug #968790). - append-fflags $(test-flags-FC -ftrampoline-impl=heap) - cmake_src_configure -} - -src_install() { - cmake_src_install - rm "${D}"/usr/bin/rigctl{,d,com}-wsjtx || die - rm "${D}"/usr/share/man/man1/rigctl{,d,com}-wsjtx.1 || die -} diff --git a/metadata/md5-cache/app-accessibility/brltty-6.8 b/metadata/md5-cache/app-accessibility/brltty-6.8 index b9b45fa4874a..891a90bc1f15 100644 --- a/metadata/md5-cache/app-accessibility/brltty-6.8 +++ b/metadata/md5-cache/app-accessibility/brltty-6.8 @@ -12,5 +12,5 @@ RDEPEND=acct-group/brltty acct-user/brltty bluetooth? ( net-wireless/bluez:= sys REQUIRED_USE=emacs? ( api ) java? ( api ) lua? ( api ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) ocaml? ( api ) policykit? ( api ) python? ( api || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) tcl? ( api ) SLOT=0 SRC_URI=https://brltty.app/archive/brltty-6.8.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=164a825bcbac5968e420a15ffb75bddf diff --git a/metadata/md5-cache/app-accessibility/brltty-6.9 b/metadata/md5-cache/app-accessibility/brltty-6.9 index 739ecc4ad810..1db32074042b 100644 --- a/metadata/md5-cache/app-accessibility/brltty-6.9 +++ b/metadata/md5-cache/app-accessibility/brltty-6.9 @@ -12,5 +12,5 @@ RDEPEND=acct-group/brltty acct-user/brltty bluetooth? ( net-wireless/bluez:= sys REQUIRED_USE=emacs? ( api ) java? ( api ) lua? ( api ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) ocaml? ( api ) policykit? ( api ) python? ( api || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) tcl? ( api ) SLOT=0 SRC_URI=https://brltty.app/archive/brltty-6.9.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=17dd8a51521c39f924f5414a557fb5f2 diff --git a/metadata/md5-cache/app-accessibility/brltty-6.9.1 b/metadata/md5-cache/app-accessibility/brltty-6.9.1 index b372eafd8762..94374e4ec0fd 100644 --- a/metadata/md5-cache/app-accessibility/brltty-6.9.1 +++ b/metadata/md5-cache/app-accessibility/brltty-6.9.1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/brltty acct-user/brltty bluetooth? ( net-wireless/bluez:= sys REQUIRED_USE=emacs? ( api ) java? ( api ) lua? ( api ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) ocaml? ( api ) policykit? ( api ) python? ( api || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) tcl? ( api ) SLOT=0 SRC_URI=https://brltty.app/archive/brltty-6.9.1.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 elisp-common 0ea9a0d3bc26353e1642c73560a24fdf findlib 37a50ff418bcb640d3c5bc89dcdb8a6b gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=8b887523f002f2953209ef9f35a30e3c diff --git a/metadata/md5-cache/app-admin/awscli-1.45.0 b/metadata/md5-cache/app-admin/awscli-1.45.0 new file mode 100644 index 000000000000..48250797f68a --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.45.0 @@ -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.43.0[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.17.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.43.0[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.17.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.45.0.tar.gz -> aws-cli-1.45.0.gh.tar.gz +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=dd992ffc2127dcd46b221b753cfe3d84 diff --git a/metadata/md5-cache/app-admin/system-config-printer-1.5.18-r3 b/metadata/md5-cache/app-admin/system-config-printer-1.5.18-r3 index 17c2e5b3ee23..46c8ca01e7e1 100644 --- a/metadata/md5-cache/app-admin/system-config-printer-1.5.18-r3 +++ b/metadata/md5-cache/app-admin/system-config-printer-1.5.18-r3 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=test SLOT=0 SRC_URI=https://github.com/OpenPrinting/system-config-printer/releases/download/v1.5.18/system-config-printer-1.5.18.tar.xz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=830e9a9db1fe44301f3a0dfb87f13faf diff --git a/metadata/md5-cache/app-arch/rar-7.21 b/metadata/md5-cache/app-arch/rar-7.21 new file mode 100644 index 000000000000..470e2065dd26 --- /dev/null +++ b/metadata/md5-cache/app-arch/rar-7.21 @@ -0,0 +1,15 @@ +BDEPEND=all-sfx? ( app-arch/unrar ) +DEFINED_PHASES=compile install unpack +DESCRIPTION=RAR compressor/uncompressor +EAPI=8 +HOMEPAGE=https://www.rarlab.com/ +INHERIT=unpacker +IUSE=all-sfx +KEYWORDS=-* ~amd64 +LICENSE=BSD BSD-2 RAR +RDEPEND=sys-libs/glibc +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=all-sfx? ( https://www.rarlab.com/rar/rarlinux-x64-721.tar.gz https://www.rarlab.com/rar/winrar-x64-721.exe ) amd64? ( https://www.rarlab.com/rar/rarlinux-x64-721.tar.gz ) +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_md5_=e13683db820dd260ddc9338d8bb6e834 diff --git a/metadata/md5-cache/app-arch/unrar-7.2.6 b/metadata/md5-cache/app-arch/unrar-7.2.6 new file mode 100644 index 000000000000..ba556f9e62c8 --- /dev/null +++ b/metadata/md5-cache/app-arch/unrar-7.2.6 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare +DESCRIPTION=Uncompress rar files +EAPI=8 +HOMEPAGE=https://www.rarlab.com/rar_add.htm +INHERIT=multilib toolchain-funcs +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=unRAR +SLOT=0/7 +SRC_URI=https://www.rarlab.com/rar/unrarsrc-7.2.6.tar.gz -> unrar-7.2.6.tar.gz +_eclasses_=multilib fc812e8eb2170022c28272d80a1f9e77 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=f10b1dbfe5e497d733c4ee6ffc84aad3 diff --git a/metadata/md5-cache/app-backup/rear-2.7 b/metadata/md5-cache/app-backup/rear-2.7 index 46ca946c607b..b8ebb7f8f879 100644 --- a/metadata/md5-cache/app-backup/rear-2.7 +++ b/metadata/md5-cache/app-backup/rear-2.7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-cdr/cdrtools app-shells/bash net-dialup/mingetty net-fs/nfs-utils sys-apps/gawk sys-apps/iproute2 sys-apps/lsb-release sys-apps/sed sys-apps/util-linux sys-block/parted sys-boot/syslinux udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/rear/rear/archive/2.7.tar.gz -> rear-2.7.tar.gz -_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=35383133fa2b5d555ebe9d24b6aa62a6 diff --git a/metadata/md5-cache/app-backup/rear-2.9 b/metadata/md5-cache/app-backup/rear-2.9 index f899378c841c..f5553d521cd1 100644 --- a/metadata/md5-cache/app-backup/rear-2.9 +++ b/metadata/md5-cache/app-backup/rear-2.9 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-cdr/cdrtools app-shells/bash net-dialup/mingetty net-fs/nfs-utils sys-apps/gawk sys-apps/iproute2 sys-apps/lsb-release sys-apps/sed sys-apps/util-linux sys-block/parted sys-boot/syslinux sys-fs/multipath-tools udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/rear/rear/archive/2.9.tar.gz -> rear-2.9.tar.gz -_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3bed6ba2df3ceba8463d4682ca6ec65e diff --git a/metadata/md5-cache/app-benchmarks/geekbench-6.7.1 b/metadata/md5-cache/app-benchmarks/geekbench-6.7.1 new file mode 100644 index 000000000000..2388984a01c0 --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/geekbench-6.7.1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install nofetch postinst +DESCRIPTION=A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and Windows +EAPI=8 +HOMEPAGE=https://www.geekbench.com/ +KEYWORDS=-* ~amd64 ~arm64 +LICENSE=geekbench +RESTRICT=bindist mirror +SLOT=6 +SRC_URI=amd64? ( https://cdn.geekbench.com/Geekbench-6.7.1-Linux.tar.gz ) arm64? ( https://cdn.geekbench.com/Geekbench-6.7.1-LinuxARMPreview.tar.gz ) +_md5_=2d0fa7f60957a917ff25ca073804fe29 diff --git a/metadata/md5-cache/app-benchmarks/occt-bin-15.0.13 b/metadata/md5-cache/app-benchmarks/occt-bin-15.0.13 index 5a41abf0e2bf..26d304ac1cd5 100644 --- a/metadata/md5-cache/app-benchmarks/occt-bin-15.0.13 +++ b/metadata/md5-cache/app-benchmarks/occt-bin-15.0.13 @@ -11,5 +11,5 @@ LICENSE=OCBASE-EULA RESTRICT=bindist mirror strip SLOT=0 SRC_URI=https://www.ocbase.com/download/edition:Personal/os:Linux/version:15.0.13 -> occt-bin-15.0.13.bin -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc fcaps c94316d02a37fb5cbe79b7d41c729119 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc fcaps c94316d02a37fb5cbe79b7d41c729119 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ab0c2dd91a2bfc121c177561debb8e78 diff --git a/metadata/md5-cache/app-containers/distrobox-1.8.2.2 b/metadata/md5-cache/app-containers/distrobox-1.8.2.2 deleted file mode 100644 index 17e650f9db3d..000000000000 --- a/metadata/md5-cache/app-containers/distrobox-1.8.2.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst postrm -DESCRIPTION=Use any Linux distribution inside your terminal (powered by docker/podman) -EAPI=8 -HOMEPAGE=https://distrobox.it/ https://github.com/89luca89/distrobox/ -INHERIT=xdg-utils -IUSE=gui -KEYWORDS=amd64 ~arm ~arm64 ~riscv ~x86 -LICENSE=GPL-3 -RDEPEND=|| ( app-containers/docker app-containers/podman ) -SLOT=0 -SRC_URI=https://github.com/89luca89/distrobox/archive/1.8.2.2.tar.gz -> distrobox-1.8.2.2.gh.tar.gz -_eclasses_=xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=50c1c91eab3713c328a8d77a9592bf00 diff --git a/metadata/md5-cache/app-containers/distrobox-1.8.2.3 b/metadata/md5-cache/app-containers/distrobox-1.8.2.5 index 1fd49076c5e0..85f4eed29af3 100644 --- a/metadata/md5-cache/app-containers/distrobox-1.8.2.3 +++ b/metadata/md5-cache/app-containers/distrobox-1.8.2.5 @@ -4,10 +4,10 @@ EAPI=8 HOMEPAGE=https://distrobox.it/ https://github.com/89luca89/distrobox/ INHERIT=xdg-utils IUSE=gui -KEYWORDS=amd64 ~arm ~arm64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=GPL-3 RDEPEND=|| ( app-containers/docker app-containers/podman ) SLOT=0 -SRC_URI=https://github.com/89luca89/distrobox/archive/1.8.2.3.tar.gz -> distrobox-1.8.2.3.gh.tar.gz +SRC_URI=https://github.com/89luca89/distrobox/archive/1.8.2.5.tar.gz -> distrobox-1.8.2.5.gh.tar.gz _eclasses_=xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=8fac2999b637aa5d60f192b7aa67ba12 +_md5_=0a8f05e560bacc6544e66809a19049dc diff --git a/metadata/md5-cache/app-containers/docker-28.0.1 b/metadata/md5-cache/app-containers/docker-28.0.1 index 24abdeb54364..9197f7614408 100644 --- a/metadata/md5-cache/app-containers/docker-28.0.1 +++ b/metadata/md5-cache/app-containers/docker-28.0.1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 apparmor? ( sys-libs/libapparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/v28.0.1.tar.gz -> docker-28.0.1.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e656577f81a3b0fd7e39a52c1d5c5c8a diff --git a/metadata/md5-cache/app-containers/docker-28.0.4 b/metadata/md5-cache/app-containers/docker-28.0.4 index b70e00872f19..ed8dc1941efa 100644 --- a/metadata/md5-cache/app-containers/docker-28.0.4 +++ b/metadata/md5-cache/app-containers/docker-28.0.4 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 apparmor? ( sys-libs/libapparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/v28.0.4.tar.gz -> docker-28.0.4.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=80991febfda44d8ae06bad30eae86877 diff --git a/metadata/md5-cache/app-containers/docker-28.1.1 b/metadata/md5-cache/app-containers/docker-28.1.1 index 6a9a34d95b38..46ae21713d4b 100644 --- a/metadata/md5-cache/app-containers/docker-28.1.1 +++ b/metadata/md5-cache/app-containers/docker-28.1.1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 apparmor? ( sys-libs/libapparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/v28.1.1.tar.gz -> docker-28.1.1.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ebb9eb379ab400b1a438cb421077039b diff --git a/metadata/md5-cache/app-containers/docker-28.2.2 b/metadata/md5-cache/app-containers/docker-28.2.2 index ae343be382ff..74ec3e6a76ac 100644 --- a/metadata/md5-cache/app-containers/docker-28.2.2 +++ b/metadata/md5-cache/app-containers/docker-28.2.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 apparmor? ( sys-libs/libapparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/v28.2.2.tar.gz -> docker-28.2.2.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=cb51ba0979d9856304fce9cac19e4083 diff --git a/metadata/md5-cache/app-containers/docker-28.4.0 b/metadata/md5-cache/app-containers/docker-28.4.0 index cde830701b3d..83defe1af619 100644 --- a/metadata/md5-cache/app-containers/docker-28.4.0 +++ b/metadata/md5-cache/app-containers/docker-28.4.0 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 apparmor? ( sys-libs/libapparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/v28.4.0.tar.gz -> docker-28.4.0.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=340b3521ac559a0ddce5e887bac2105d diff --git a/metadata/md5-cache/app-containers/docker-29.1.3-r1 b/metadata/md5-cache/app-containers/docker-29.1.3-r1 index 94d573f9a98c..c16ff5f085b9 100644 --- a/metadata/md5-cache/app-containers/docker-29.1.3-r1 +++ b/metadata/md5-cache/app-containers/docker-29.1.3-r1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/docker >=dev-db/sqlite-3.7.9:3 net-firewall/nftables:= apparm RESTRICT=installsources strip test SLOT=0 SRC_URI=https://github.com/moby/moby/archive/docker-v29.1.3.tar.gz -> docker-29.1.3.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=50e42197ef7b14b91313e99348e8679a diff --git a/metadata/md5-cache/app-crypt/acme-sh-3.1.2 b/metadata/md5-cache/app-crypt/acme-sh-3.1.3 index 6aafedd524e0..2a8846cf530c 100644 --- a/metadata/md5-cache/app-crypt/acme-sh-3.1.2 +++ b/metadata/md5-cache/app-crypt/acme-sh-3.1.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-3 RDEPEND=dev-libs/openssl:0 net-misc/curl net-misc/socat selinux? ( sec-policy/selinux-certbot ) SLOT=0 -SRC_URI=https://github.com/acmesh-official/acme.sh/archive/refs/tags/3.1.2.tar.gz -> acme.sh-3.1.2.tar.gz +SRC_URI=https://github.com/acmesh-official/acme.sh/archive/refs/tags/3.1.3.tar.gz -> acme.sh-3.1.3.tar.gz _eclasses_=optfeature 538bce96e5589935b57e178e8635f301 -_md5_=049c2d017500d90710b6c3a84720d774 +_md5_=b667050ff5e14b9335ed8fa8b6a1d2e0 diff --git a/metadata/md5-cache/app-crypt/acr38u-1.7.11-r4 b/metadata/md5-cache/app-crypt/acr38u-1.7.11-r4 index 7f886275727f..16ca319f2a68 100644 --- a/metadata/md5-cache/app-crypt/acr38u-1.7.11-r4 +++ b/metadata/md5-cache/app-crypt/acr38u-1.7.11-r4 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=sys-apps/pcsc-lite-1.6.4 virtual/libusb:0 SLOT=0 SRC_URI=https://www.linuxunderground.be/ACR38_LINUX_100711_P.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=acbede72d2cf4c5bbb486ceb931e92dd diff --git a/metadata/md5-cache/app-crypt/asekey-3.7-r1 b/metadata/md5-cache/app-crypt/asekey-3.7-r1 index 5f62e6f84a14..65f087eed23c 100644 --- a/metadata/md5-cache/app-crypt/asekey-3.7-r1 +++ b/metadata/md5-cache/app-crypt/asekey-3.7-r1 @@ -10,5 +10,5 @@ LICENSE=BSD LGPL-2.1 RDEPEND=sys-apps/pcsc-lite[udev] virtual/libusb:0 SLOT=0 SRC_URI=https://dev.gentoo.org/~sam/distfiles/app-crypt/asekey/asekey-3.7.tar.bz2 -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9728f03f51f83a1cb9a3d1dff0fde963 diff --git a/metadata/md5-cache/app-crypt/ccid-1.6.1 b/metadata/md5-cache/app-crypt/ccid-1.6.1 index 8cd83102b055..39168c743da2 100644 --- a/metadata/md5-cache/app-crypt/ccid-1.6.1 +++ b/metadata/md5-cache/app-crypt/ccid-1.6.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ LGPL-2+ GPL-2+ RDEPEND=sys-apps/pcsc-lite virtual/libusb:1 SLOT=0 SRC_URI=https://ccid.apdu.fr/files/ccid-1.6.1.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f526aa663af05e0d492603f9b1d83c13 diff --git a/metadata/md5-cache/app-crypt/ccid-1.7.0 b/metadata/md5-cache/app-crypt/ccid-1.7.0 index e3b7ae64e959..53730f9eb248 100644 --- a/metadata/md5-cache/app-crypt/ccid-1.7.0 +++ b/metadata/md5-cache/app-crypt/ccid-1.7.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ LGPL-2+ GPL-2+ RDEPEND=sys-apps/pcsc-lite virtual/libusb:1 SLOT=0 SRC_URI=https://ccid.apdu.fr/files/ccid-1.7.0.tar.xz verify-sig? ( https://ccid.apdu.fr/files/ccid-1.7.0.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=7200cae58edaffe04513a659733d23f8 diff --git a/metadata/md5-cache/app-crypt/ccid-1.7.1 b/metadata/md5-cache/app-crypt/ccid-1.7.1 index e22950fea92c..a5bc1bc65aa4 100644 --- a/metadata/md5-cache/app-crypt/ccid-1.7.1 +++ b/metadata/md5-cache/app-crypt/ccid-1.7.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ LGPL-2+ GPL-2+ RDEPEND=sys-apps/pcsc-lite virtual/libusb:1 SLOT=0 SRC_URI=https://ccid.apdu.fr/files/ccid-1.7.1.tar.xz verify-sig? ( https://ccid.apdu.fr/files/ccid-1.7.1.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=7200cae58edaffe04513a659733d23f8 diff --git a/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r101 b/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r101 index 48239329bc02..0b9efa6767da 100644 --- a/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r101 +++ b/metadata/md5-cache/app-crypt/ekeyd-1.1.5-r101 @@ -12,5 +12,5 @@ RDEPEND=!minimal? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_t REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) minimal? ( !munin ) SLOT=0 SRC_URI=mirror://ubuntu/pool/universe/e/ekeyd/ekeyd_1.1.5.orig.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ebb61d6e262d941a928a948ebfea267e diff --git a/metadata/md5-cache/app-crypt/keepsecret-1.1.0 b/metadata/md5-cache/app-crypt/keepsecret-1.1.0 new file mode 100644 index 000000000000..8f4ce3c8e05d --- /dev/null +++ b/metadata/md5-cache/app-crypt/keepsecret-1.1.0 @@ -0,0 +1,16 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.22.0:* +DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack +DEPEND=app-crypt/libsecret >=dev-qt/qtbase-6.10.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.10.1:6 >=dev-qt/qtsvg-6.10.1:6 >=kde-frameworks/kconfig-6.22.0:6[qml] >=kde-frameworks/kcoreaddons-6.22.0:6 >=kde-frameworks/kcrash-6.22.0:6 >=kde-frameworks/kdbusaddons-6.22.0:6 >=kde-frameworks/ki18n-6.22.0:6 >=kde-frameworks/kirigami-6.22.0:6 >=kde-frameworks/kitemmodels-6.22.0:6 dev-qt/qtbase:6 +DESCRIPTION=Password manager GUI for SecretService providers +EAPI=8 +HOMEPAGE=https://apps.kde.org/keepsecret/ https://invent.kde.org/utilities/keepsecret +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm kde.org xdg +IUSE=debug +KEYWORDS=~amd64 +LICENSE=GPL-2+ +RDEPEND=app-crypt/libsecret >=dev-qt/qtbase-6.10.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.10.1:6 >=dev-qt/qtsvg-6.10.1:6 >=kde-frameworks/kconfig-6.22.0:6[qml] >=kde-frameworks/kcoreaddons-6.22.0:6 >=kde-frameworks/kcrash-6.22.0:6 >=kde-frameworks/kdbusaddons-6.22.0:6 >=kde-frameworks/ki18n-6.22.0:6 >=kde-frameworks/kirigami-6.22.0:6 >=kde-frameworks/kitemmodels-6.22.0:6 dev-libs/kirigami-addons:6 >=kde-frameworks/qqc2-desktop-style-6.22.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 +SLOT=0 +SRC_URI=mirror://kde/stable/keepsecret/keepsecret-1.1.0.tar.xz +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 ecm c3772d432284de03db6df21d71be747a flag-o-matic fd3558f73f6503093adee69adf41020d kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=9bfea14210a4ef66a25d7bbf54a4b51c diff --git a/metadata/md5-cache/app-crypt/libu2f-host-1.1.10-r1 b/metadata/md5-cache/app-crypt/libu2f-host-1.1.10-r1 index 338ba3fdd393..76e1e75f362c 100644 --- a/metadata/md5-cache/app-crypt/libu2f-host-1.1.10-r1 +++ b/metadata/md5-cache/app-crypt/libu2f-host-1.1.10-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=dev-libs/hidapi dev-libs/json-c:= !systemd? ( acct-group/plugdev ) systemd? ( sys-apps/systemd[acl] ) SLOT=0 SRC_URI=https://developers.yubico.com/libu2f-host/Releases/libu2f-host-1.1.10.tar.xz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6e7ba2aafc29c3c06425782f56335ece diff --git a/metadata/md5-cache/app-crypt/moolticute-1.03.0-r2 b/metadata/md5-cache/app-crypt/moolticute-1.03.0-r2 index a6e7e9966059..d14d8084d594 100644 --- a/metadata/md5-cache/app-crypt/moolticute-1.03.0-r2 +++ b/metadata/md5-cache/app-crypt/moolticute-1.03.0-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-libs/libusb-1.0.20 dev-qt/qtbase:6[dbus,gui,network,widgets] dev-qt/qtwebsockets:6 virtual/libudev:= SLOT=0 SRC_URI=https://github.com/mooltipass/moolticute/archive/refs/tags/v1.03.0.tar.gz -> moolticute-1.03.0.tar.gz -_eclasses_=qmake-utils 28f99dba9219112f4785f46ed426a021 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=qmake-utils 28f99dba9219112f4785f46ed426a021 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0ced48e1fb6b955b5baa0e9efaf3166e diff --git a/metadata/md5-cache/app-crypt/moolticute-9999 b/metadata/md5-cache/app-crypt/moolticute-9999 index 60da8afa98fd..c95c97dd5c53 100644 --- a/metadata/md5-cache/app-crypt/moolticute-9999 +++ b/metadata/md5-cache/app-crypt/moolticute-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=>=dev-libs/libusb-1.0.20 dev-qt/qtbase:6[dbus,gui,network,widgets] dev-qt/qtwebsockets:6 virtual/libudev:= SLOT=0 -_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 qmake-utils 28f99dba9219112f4785f46ed426a021 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 qmake-utils 28f99dba9219112f4785f46ed426a021 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=944fa917a0730418bec8bb7304cc12f3 diff --git a/metadata/md5-cache/app-crypt/tpm2-tss-4.0.2-r2 b/metadata/md5-cache/app-crypt/tpm2-tss-4.0.2-r2 index cbe6d514f973..135a7b52cb85 100644 --- a/metadata/md5-cache/app-crypt/tpm2-tss-4.0.2-r2 +++ b/metadata/md5-cache/app-crypt/tpm2-tss-4.0.2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( mbedtls openssl ) fapi? ( openssl !mbedtls ) policy? ( openssl RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://github.com/tpm2-software/tpm2-tss/releases/download/4.0.2/tpm2-tss-4.0.2.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f0be80cc6a7fdad68dd96a45f012c671 diff --git a/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r1 b/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r1 index 50c2af01d869..b6b07b0450b9 100644 --- a/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r1 +++ b/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( mbedtls openssl ) fapi? ( openssl !mbedtls ) policy? ( openssl RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://github.com/tpm2-software/tpm2-tss/releases/download/4.1.3/tpm2-tss-4.1.3.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3e001dd86d97192e0e222d629d373245 diff --git a/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r2 b/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r2 index 7c61dbe8df21..1f2431f1024a 100644 --- a/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r2 +++ b/metadata/md5-cache/app-crypt/tpm2-tss-4.1.3-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( mbedtls openssl ) fapi? ( openssl !mbedtls ) policy? ( openssl RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://github.com/tpm2-software/tpm2-tss/releases/download/4.1.3/tpm2-tss-4.1.3.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ec19c58fd86bd9384de1804dd8eb3cf6 diff --git a/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 b/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 index 17186fffec33..1e5c6f51a4c8 100644 --- a/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 +++ b/metadata/md5-cache/app-crypt/trousers-0.3.14-r3 @@ -11,5 +11,5 @@ LICENSE=CPL-1.0 GPL-2 RDEPEND=acct-group/tss acct-user/tss >=dev-libs/glib-2 !libressl? ( >=dev-libs/openssl-0.9.7:0= ) libressl? ( dev-libs/libressl:0= ) selinux? ( sec-policy/selinux-tcsd ) SLOT=0 SRC_URI=mirror://sourceforge/trousers/trousers/trousers-0.3.14.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=0d8ea6fd6acac236509d2c95936e4f76 diff --git a/metadata/md5-cache/app-crypt/trousers-0.3.15 b/metadata/md5-cache/app-crypt/trousers-0.3.15 index 67c870d8fe40..cb05d79adbab 100644 --- a/metadata/md5-cache/app-crypt/trousers-0.3.15 +++ b/metadata/md5-cache/app-crypt/trousers-0.3.15 @@ -11,5 +11,5 @@ LICENSE=CPL-1.0 GPL-2 RDEPEND=acct-group/tss acct-user/tss >=dev-libs/glib-2 !libressl? ( >=dev-libs/openssl-0.9.7:0= ) libressl? ( dev-libs/libressl:0= ) selinux? ( sec-policy/selinux-tcsd ) SLOT=0 SRC_URI=mirror://sourceforge/trousers/trousers/trousers-0.3.15.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e6944419f45e265658e81f401a88deca diff --git a/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.7 b/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.7 index 457411b87ef0..1f8bfc3a0ff0 100644 --- a/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.7 +++ b/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.7 @@ -10,5 +10,5 @@ RDEPEND=virtual/libusb:1 virtual/udev acct-user/yubihsm-connector acct-group/yub RESTRICT=test SLOT=0 SRC_URI=https://developers.yubico.com/yubihsm-connector/Releases/yubihsm-connector-3.0.7.tar.gz https://dev.gentoo.org/~zx2c4/distfiles/yubihsm-connector-3.0.7-vendor.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=750a37e2762565c8a69251df58cd86ca diff --git a/metadata/md5-cache/app-dicts/aspell-da-4.6.0 b/metadata/md5-cache/app-dicts/aspell-da-4.6.0 new file mode 100644 index 000000000000..c898281e9180 --- /dev/null +++ b/metadata/md5-cache/app-dicts/aspell-da-4.6.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install +DEPEND=app-text/aspell +DESCRIPTION=Aspell (Danish) language dictionary +EAPI=8 +HOMEPAGE=https://github.com/mortenivar/aspell-da +INHERIT=aspell-dict-r1 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=app-text/aspell +SLOT=0 +SRC_URI=https://github.com/mortenivar/aspell-da/archive/refs/tags/4.6.0.tar.gz -> aspell-da-4.6.0.tar.gz +_eclasses_=aspell-dict-r1 33512bdd1f3f9a8ffbb26832ee5fb687 +_md5_=addc6c33135ea7bf80017894f0c378cf diff --git a/metadata/md5-cache/app-emulation/cloud-init-24.4-r4 b/metadata/md5-cache/app-emulation/cloud-init-24.4-r4 index 01e60c89dfe8..f8abdca102ef 100644 --- a/metadata/md5-cache/app-emulation/cloud-init-24.4-r4 +++ b/metadata/md5-cache/app-emulation/cloud-init-24.4-r4 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://launchpad.net/cloud-init/trunk/24.4/+download/cloud-init-24.4.tar.gz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=929b306b94372e72b1493846d7d8faa1 diff --git a/metadata/md5-cache/app-emulation/cloud-init-25.1 b/metadata/md5-cache/app-emulation/cloud-init-25.1 index 1bda7f4b3575..517d6c925291 100644 --- a/metadata/md5-cache/app-emulation/cloud-init-25.1 +++ b/metadata/md5-cache/app-emulation/cloud-init-25.1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://launchpad.net/cloud-init/trunk/25.1/+download/cloud-init-25.1.tar.gz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=394d16801e7259081bec2a1c844f6cf3 diff --git a/metadata/md5-cache/app-emulation/cloud-init-9999 b/metadata/md5-cache/app-emulation/cloud-init-9999 index 643fccd04deb..a286f20a22c3 100644 --- a/metadata/md5-cache/app-emulation/cloud-init-9999 +++ b/metadata/md5-cache/app-emulation/cloud-init-9999 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_10? ( dev-python/jinja2[python_targets_pyth 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 -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=28ac38fcccfc4346872dc0afee116d9c diff --git a/metadata/md5-cache/app-emulation/glean-1.24.0 b/metadata/md5-cache/app-emulation/glean-1.24.0 index e1e763cd8f3d..a01af26dc3d1 100644 --- a/metadata/md5-cache/app-emulation/glean-1.24.0 +++ b/metadata/md5-cache/app-emulation/glean-1.24.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/g/glean/glean-1.24.0.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2f453079b66bd2b349b8eb2c871cb4a1 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r3 b/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r3 index 8f3ce62be6de..07bed602a5d2 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r3 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib net-libs/libtirpc deploypkg? ( dev-libs/libmspack ) fuse? REQUIRED_USE=multimon? ( X ) vgauth? ( ssl ) SLOT=0 SRC_URI=https://github.com/vmware/open-vm-tools/releases/download/stable-12.5.0/open-vm-tools-12.5.0-24276846.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4ee3e90f61b1162de049900575f86f90 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r5 b/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r5 index 55e40182c0b0..cd0f561c19ec 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r5 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-12.5.0-r5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib net-libs/libtirpc deploypkg? ( dev-libs/libmspack ) fuse? REQUIRED_USE=multimon? ( X ) vgauth? ( ssl ) SLOT=0 SRC_URI=https://github.com/vmware/open-vm-tools/releases/download/stable-12.5.0/open-vm-tools-12.5.0-24276846.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b7e38a8352705ca731934890b5ce333f diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-13.0.10 b/metadata/md5-cache/app-emulation/open-vm-tools-13.0.10 index 0e14e1f342cd..dbcc962919c9 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-13.0.10 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-13.0.10 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib net-libs/libtirpc deploypkg? ( dev-libs/libmspack ) fuse? REQUIRED_USE=multimon? ( X ) vgauth? ( ssl ) SLOT=0 SRC_URI=https://github.com/vmware/open-vm-tools/releases/download/stable-13.0.10/open-vm-tools-13.0.10-25056151.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a630610d7aa48e0df38b25024479e6c2 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-13.0.5-r1 b/metadata/md5-cache/app-emulation/open-vm-tools-13.0.5-r1 index a9386b4533d6..8ae0221da2cc 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-13.0.5-r1 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-13.0.5-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib net-libs/libtirpc deploypkg? ( dev-libs/libmspack ) fuse? REQUIRED_USE=multimon? ( X ) vgauth? ( ssl ) SLOT=0 SRC_URI=https://github.com/vmware/open-vm-tools/releases/download/stable-13.0.5/open-vm-tools-13.0.5-24915695.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1305f75c9fc0fc933376e80cfc6b67a1 diff --git a/metadata/md5-cache/app-emulation/qemu-10.0.5 b/metadata/md5-cache/app-emulation/qemu-10.0.5 index b94ddd4d51d4..e587698d1bd6 100644 --- a/metadata/md5-cache/app-emulation/qemu-10.0.5 +++ b/metadata/md5-cache/app-emulation/qemu-10.0.5 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-10.0.5.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-10.0.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bb37082b7585b36ce3747248178e4699 diff --git a/metadata/md5-cache/app-emulation/qemu-10.0.7 b/metadata/md5-cache/app-emulation/qemu-10.0.7 index 5d8322313921..80f5d415b7bd 100644 --- a/metadata/md5-cache/app-emulation/qemu-10.0.7 +++ b/metadata/md5-cache/app-emulation/qemu-10.0.7 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-10.0.7.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-10.0.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=01ab8633fc8e67623c34c459ae7cc633 diff --git a/metadata/md5-cache/app-emulation/qemu-10.1.3-r1 b/metadata/md5-cache/app-emulation/qemu-10.1.3-r1 index e0c4cfd7c517..afbd338a35e1 100644 --- a/metadata/md5-cache/app-emulation/qemu-10.1.3-r1 +++ b/metadata/md5-cache/app-emulation/qemu-10.1.3-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-10.1.3.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-10.1.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a4889eb689ccdd887390000d146d6004 diff --git a/metadata/md5-cache/app-emulation/qemu-10.2.0-r1 b/metadata/md5-cache/app-emulation/qemu-10.2.0-r1 index 596d9e75f630..46967da0a346 100644 --- a/metadata/md5-cache/app-emulation/qemu-10.2.0-r1 +++ b/metadata/md5-cache/app-emulation/qemu-10.2.0-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-10.2.0.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-10.2.0-docs.tar.xz ) https://dev.gentoo.org/~dilfridge/distfiles/qemu-10-termios2-patches.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=11ae88bac871b96289d3f96c3c6215cc diff --git a/metadata/md5-cache/app-emulation/qemu-10.2.2 b/metadata/md5-cache/app-emulation/qemu-10.2.2 index 2c3e87aa7b91..ba867b71a38a 100644 --- a/metadata/md5-cache/app-emulation/qemu-10.2.2 +++ b/metadata/md5-cache/app-emulation/qemu-10.2.2 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-10.2.2.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-10.2.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ac69c0c7bc3ee247f2c2174d3bfecf97 diff --git a/metadata/md5-cache/app-emulation/qemu-9.1.3-r2 b/metadata/md5-cache/app-emulation/qemu-9.1.3-r2 index f8c4395ea01a..dbbc21c1afd2 100644 --- a/metadata/md5-cache/app-emulation/qemu-9.1.3-r2 +++ b/metadata/md5-cache/app-emulation/qemu-9.1.3-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-9.1.3.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-9.1.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=164f0ec0cab4b1dff0580da325943709 diff --git a/metadata/md5-cache/app-emulation/qemu-9.2.3-r3 b/metadata/md5-cache/app-emulation/qemu-9.2.3-r3 index 922ec325df91..4861ac0ae109 100644 --- a/metadata/md5-cache/app-emulation/qemu-9.2.3-r3 +++ b/metadata/md5-cache/app-emulation/qemu-9.2.3-r3 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-9.2.3.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-9.2.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=aaa3737a4ebcd2dbb91bb548f566e7cb diff --git a/metadata/md5-cache/app-emulation/qemu-9.2.4 b/metadata/md5-cache/app-emulation/qemu-9.2.4 index 1c3a8423b4d3..ce709b618e74 100644 --- a/metadata/md5-cache/app-emulation/qemu-9.2.4 +++ b/metadata/md5-cache/app-emulation/qemu-9.2.4 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-9.2.4.tar.xz !doc? ( https://dev.gentoo.org/~sam/distfiles/app-emulation/qemu/qemu-9.2.0-docs.tar.xz ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=314b0d6a246e8e04dd34ff58dc6bb6d5 diff --git a/metadata/md5-cache/app-emulation/qemu-9999 b/metadata/md5-cache/app-emulation/qemu-9999 index a607bde5aec9..a64642d531c0 100644 --- a/metadata/md5-cache/app-emulation/qemu-9999 +++ b/metadata/md5-cache/app-emulation/qemu-9999 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/qemu-project/berkeley-softfloat-3/-/archive/b64af41c3276f97f0e181920400ee056b9c88037/berkeley-softfloat-3-b64af41c3276f97f0e181920400ee056b9c88037.tar.bz2 https://gitlab.com/qemu-project/berkeley-testfloat-3/-/archive/e7af9751d9f9fd3b47911f51a5cfd08af256a9ab/berkeley-testfloat-3-e7af9751d9f9fd3b47911f51a5cfd08af256a9ab.tar.bz2 https://gitlab.com/qemu-project/keycodemapdb/-/archive/f5772a62ec52591ff6870b7e8ef32482371f22c6/keycodemapdb-f5772a62ec52591ff6870b7e8ef32482371f22c6.tar.bz2 https://dev.gentoo.org/~dilfridge/distfiles/qemu-10-termios2-patches.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pax-utils 5555f2e75744739fe100ee62c22d28fe python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1fcfa5e99dbe6c28ac981478e80acad9 diff --git a/metadata/md5-cache/app-emulation/qemu-guest-agent-8.2.0 b/metadata/md5-cache/app-emulation/qemu-guest-agent-8.2.0 index 416fc3eb2ec6..5937c47fb32c 100644 --- a/metadata/md5-cache/app-emulation/qemu-guest-agent-8.2.0 +++ b/metadata/md5-cache/app-emulation/qemu-guest-agent-8.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 BSD-2 RDEPEND=dev-libs/glib SLOT=0 SRC_URI=https://download.qemu.org/qemu-8.2.0.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7df644d8d2b555111b5159faa166d8c3 diff --git a/metadata/md5-cache/app-emulation/qemu-guest-agent-9.2.0 b/metadata/md5-cache/app-emulation/qemu-guest-agent-9.2.0 index abfb28780e31..becca45682f6 100644 --- a/metadata/md5-cache/app-emulation/qemu-guest-agent-9.2.0 +++ b/metadata/md5-cache/app-emulation/qemu-guest-agent-9.2.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 BSD-2 RDEPEND=dev-libs/glib SLOT=0 SRC_URI=https://download.qemu.org/qemu-9.2.0.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7df644d8d2b555111b5159faa166d8c3 diff --git a/metadata/md5-cache/app-emulation/spice-vdagent-0.22.1 b/metadata/md5-cache/app-emulation/spice-vdagent-0.22.1 index 10e02e4e93c1..5cb4e5bb6644 100644 --- a/metadata/md5-cache/app-emulation/spice-vdagent-0.22.1 +++ b/metadata/md5-cache/app-emulation/spice-vdagent-0.22.1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/glib:2 >=app-emulation/spice-protocol-0.14.0 media-libs/alsa-lib sys-apps/dbus x11-libs/libdrm >=x11-libs/libpciaccess-0.10 x11-libs/libXfixes x11-libs/libXrandr x11-libs/libX11 x11-libs/libXinerama gtk? ( x11-libs/gtk+:3 ) systemd? ( sys-apps/systemd ) selinux? ( sec-policy/selinux-vdagent ) virtual/tmpfiles SLOT=0 SRC_URI=https://www.spice-space.org/download/releases/spice-vdagent-0.22.1.tar.bz2 -_eclasses_=linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=db0920755b5496a205fce20933c31fc2 diff --git a/metadata/md5-cache/app-emulation/virtualbox-7.2.6 b/metadata/md5-cache/app-emulation/virtualbox-7.2.6 index b0798883f098..e49cd4ea9657 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-7.2.6 +++ b/metadata/md5-cache/app-emulation/virtualbox-7.2.6 @@ -14,5 +14,5 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ^^ ( python_single_target_python3_10 py RESTRICT=!test? ( test ) SLOT=0/7.2 SRC_URI=https://download.virtualbox.org/virtualbox/7.2.6/VirtualBox-7.2.6.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 gui? ( !doc? ( https://dev.gentoo.org/~ceamac/app-emulation/virtualbox/virtualbox-help-7.2.6.tar.xz ) ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=598d6ac18a17dce5e6670b585fe0e779 diff --git a/metadata/md5-cache/app-emulation/virtualbox-7.2.8 b/metadata/md5-cache/app-emulation/virtualbox-7.2.8 index 00098722abee..4315648b7cce 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-7.2.8 +++ b/metadata/md5-cache/app-emulation/virtualbox-7.2.8 @@ -14,5 +14,5 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ^^ ( python_single_target_python3_10 py RESTRICT=!test? ( test ) SLOT=0/7.2 SRC_URI=https://download.virtualbox.org/virtualbox/7.2.8/VirtualBox-7.2.8.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 gui? ( !doc? ( https://dev.gentoo.org/~ceamac/app-emulation/virtualbox/virtualbox-help-7.2.8.tar.xz ) ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=598d6ac18a17dce5e6670b585fe0e779 diff --git a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.0.26 b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.0.26 index 0de9191a08ce..314a5e9b1c00 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.0.26 +++ b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.0.26 @@ -11,5 +11,5 @@ LICENSE=GPL-3 LGPL-2.1+ MIT || ( GPL-3 CDDL ) RDEPEND=acct-group/vboxguest acct-group/vboxsf acct-user/vboxguest sys-libs/pam virtual/zlib:= ~app-emulation/virtualbox-guest-modules-7.0.26 dbus? ( sys-apps/dbus ) gui? ( x11-apps/xrandr x11-apps/xrefresh x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) SLOT=0/7.0 SRC_URI=https://download.virtualbox.org/virtualbox/7.0.26/VirtualBox-7.0.26.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.0.16.tar.bz2 -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f16e047532bb9d0f596dfa1760020799 diff --git a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.1.18 b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.1.18 index 0c1adc2f9a91..2621448fc720 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.1.18 +++ b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.1.18 @@ -11,5 +11,5 @@ LICENSE=GPL-3 LGPL-2.1+ MIT || ( GPL-3 CDDL ) RDEPEND=acct-group/vboxguest acct-group/vboxsf acct-user/vboxguest sys-libs/pam virtual/zlib:= ~app-emulation/virtualbox-guest-modules-7.1.18 dbus? ( sys-apps/dbus ) gui? ( x11-apps/xrandr x11-apps/xrefresh x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) SLOT=0/7.1 SRC_URI=https://download.virtualbox.org/virtualbox/7.1.18/VirtualBox-7.1.18.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.1.16.tar.bz2 -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6e1e2630f71aa854a945d9d229296f97 diff --git a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.6 b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.6 index 8cd4ef167b8d..592626e71308 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.6 +++ b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.6 @@ -11,5 +11,5 @@ LICENSE=GPL-3 LGPL-2.1+ MIT || ( GPL-3 CDDL ) RDEPEND=acct-group/vboxguest acct-group/vboxsf acct-user/vboxguest sys-libs/pam virtual/zlib:= ~app-emulation/virtualbox-guest-modules-7.2.6 dbus? ( sys-apps/dbus ) gui? ( x11-apps/xrandr x11-apps/xrefresh x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) SLOT=0/7.2 SRC_URI=https://download.virtualbox.org/virtualbox/7.2.6/VirtualBox-7.2.6.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=77e6837d83956dfe21629e3ae016dee9 diff --git a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.8 b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.8 index de52f853da55..5a5fb692766b 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.8 +++ b/metadata/md5-cache/app-emulation/virtualbox-guest-additions-7.2.8 @@ -11,5 +11,5 @@ LICENSE=GPL-3 LGPL-2.1+ MIT || ( GPL-3 CDDL ) RDEPEND=acct-group/vboxguest acct-group/vboxsf acct-user/vboxguest sys-libs/pam virtual/zlib:= ~app-emulation/virtualbox-guest-modules-7.2.8 dbus? ( sys-apps/dbus ) gui? ( x11-apps/xrandr x11-apps/xrefresh x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXt ) SLOT=0/7.2 SRC_URI=https://download.virtualbox.org/virtualbox/7.2.8/VirtualBox-7.2.8.tar.bz2 https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d4e9421f1a58bcf7d1c7288db1f7b099 diff --git a/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.6_pre20260201-r1 b/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.6_pre20260201-r1 index aee560b602b0..3be54a27d687 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.6_pre20260201-r1 +++ b/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.6_pre20260201-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ^^ ( python_single_target_python3_11 py RESTRICT=!test? ( test ) SLOT=0/7.2 SRC_URI=https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 https://github.com/cyberus-technology/virtualbox-kvm/archive/dev-20260201.tar.gz -> virtualbox-kvm-20260201.tar.gz https://download.virtualbox.org/virtualbox/7.2.6/VirtualBox-7.2.6.tar.bz2 gui? ( !doc? ( https://dev.gentoo.org/~ceamac/app-emulation/virtualbox/virtualbox-help-7.2.6.tar.xz ) ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1d0dc551d1617f7fe0ba8837ec47f611 diff --git a/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.8_pre20260201 b/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.8_pre20260201 index b6e6ba6d6114..075b15f1a063 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.8_pre20260201 +++ b/metadata/md5-cache/app-emulation/virtualbox-kvm-7.2.8_pre20260201 @@ -14,5 +14,5 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ^^ ( python_single_target_python3_12 py RESTRICT=!test? ( test ) SLOT=0/7.2 SRC_URI=https://gitweb.gentoo.org/proj/virtualbox-patches.git/snapshot/virtualbox-patches-7.2.6.tar.bz2 https://github.com/cyberus-technology/virtualbox-kvm/archive/dev-20260201.tar.gz -> virtualbox-kvm-20260201.tar.gz https://download.virtualbox.org/virtualbox/7.2.8/VirtualBox-7.2.8.tar.bz2 gui? ( !doc? ( https://dev.gentoo.org/~ceamac/app-emulation/virtualbox/virtualbox-help-7.2.8.tar.xz ) ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=50c94c8853e953d83da1b21c658074ba diff --git a/metadata/md5-cache/app-emulation/xe-guest-utilities-6.2.0_p1120-r1 b/metadata/md5-cache/app-emulation/xe-guest-utilities-6.2.0_p1120-r1 index a939d1abd106..20b76a2313ef 100644 --- a/metadata/md5-cache/app-emulation/xe-guest-utilities-6.2.0_p1120-r1 +++ b/metadata/md5-cache/app-emulation/xe-guest-utilities-6.2.0_p1120-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-3 LGPL-2.1 RDEPEND=!xenstore? ( app-emulation/xen-tools ) xenstore? ( !app-emulation/xen-tools ) SLOT=0 SRC_URI=http://updates.vmd.citrix.com/XenServer/6.2.0/rhel4x/SRPMS/xe-guest-utilities-6.2.0-1120.src.rpm -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd estack c61c368a76fdf3a82fdf8dbaebea3804 linux-info efd923656513c879204fec6638eadee5 rpm 716d8645cb3f94e78951eda6c33e0546 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd estack c61c368a76fdf3a82fdf8dbaebea3804 linux-info efd923656513c879204fec6638eadee5 rpm 716d8645cb3f94e78951eda6c33e0546 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d7178aceaa2cce3b8e2d83cad1698c3c diff --git a/metadata/md5-cache/app-laptop/hdapsd-20141203-r3 b/metadata/md5-cache/app-laptop/hdapsd-20141203-r3 index f6cc128cc125..021997cf0c78 100644 --- a/metadata/md5-cache/app-laptop/hdapsd-20141203-r3 +++ b/metadata/md5-cache/app-laptop/hdapsd-20141203-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=libconfig? ( dev-libs/libconfig:= ) SLOT=0 SRC_URI=https://github.com/evgeni/hdapsd/releases/download/20141203/hdapsd-20141203.tar.gz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd linux-info efd923656513c879204fec6638eadee5 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=85beb7362791fa26da7aa476861d7529 diff --git a/metadata/md5-cache/app-laptop/laptop-mode-tools-1.74-r1 b/metadata/md5-cache/app-laptop/laptop-mode-tools-1.74-r1 index 110a58bf982c..c259991ae64c 100644 --- a/metadata/md5-cache/app-laptop/laptop-mode-tools-1.74-r1 +++ b/metadata/md5-cache/app-laptop/laptop-mode-tools-1.74-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/ethtool sys-apps/iproute2 sys-apps/which || ( sys-apps/sdparm sys-apps/hdparm ) acpi? ( sys-power/acpid ) apm? ( sys-apps/apmd ) virtual/tmpfiles SLOT=0 SRC_URI=https://github.com/rickysarraf/laptop-mode-tools/releases/download/1.74/laptop-mode-tools_1.74.tar.gz -_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=004f18b0e9c0e4785b7a87014b7fedd0 diff --git a/metadata/md5-cache/app-laptop/msi-keyboard-1.0-r1 b/metadata/md5-cache/app-laptop/msi-keyboard-1.0-r1 index 558a6bf8d221..d37b267317d2 100644 --- a/metadata/md5-cache/app-laptop/msi-keyboard-1.0-r1 +++ b/metadata/md5-cache/app-laptop/msi-keyboard-1.0-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/hidapi SLOT=0 SRC_URI=https://github.com/makkarpov/msi-keyboard/archive/v1.0.tar.gz -> msi-keyboard-1.0.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d07a69c88bc7eab467ea31ad91b6e064 diff --git a/metadata/md5-cache/app-laptop/rogauracore-1.6 b/metadata/md5-cache/app-laptop/rogauracore-1.6 index 397899993702..85459625c250 100644 --- a/metadata/md5-cache/app-laptop/rogauracore-1.6 +++ b/metadata/md5-cache/app-laptop/rogauracore-1.6 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=virtual/libusb:= SLOT=0 SRC_URI=https://github.com/wroberts/rogauracore/archive/refs/tags/1.6.tar.gz -> rogauracore-1.6.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a2d4f5b9c834c0f5d274b7f26646bd90 diff --git a/metadata/md5-cache/app-laptop/rogauracore-9999 b/metadata/md5-cache/app-laptop/rogauracore-9999 index b46e8f67fbe0..bc7619625fba 100644 --- a/metadata/md5-cache/app-laptop/rogauracore-9999 +++ b/metadata/md5-cache/app-laptop/rogauracore-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=virtual/libusb:= SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7c6992e20ffe97d9e246d25b78cf2a68 diff --git a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.0-r1 b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.0-r1 index 94731897f3be..db9c67dc806a 100644 --- a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.0-r1 +++ b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libinput x11-libs/pango x11-libs/gdk-pixbuf SLOT=0 SRC_URI=https://crates.io/api/v1/crates/aho-corasick/1.0.5/download -> aho-corasick-1.0.5.crate https://crates.io/api/v1/crates/anyhow/1.0.75/download -> anyhow-1.0.75.crate https://crates.io/api/v1/crates/approx/0.5.1/download -> approx-0.5.1.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.4.0/download -> bitflags-2.4.0.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/bytemuck/1.14.0/download -> bytemuck-1.14.0.crate https://crates.io/api/v1/crates/bytemuck_derive/1.5.0/download -> bytemuck_derive-1.5.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/cairo-rs/0.18.5/download -> cairo-rs-0.18.5.crate https://crates.io/api/v1/crates/cairo-sys-rs/0.18.0/download -> cairo-sys-rs-0.18.0.crate https://crates.io/api/v1/crates/cast/0.3.0/download -> cast-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.83/download -> cc-1.0.83.crate https://crates.io/api/v1/crates/cfg-expr/0.15.5/download -> cfg-expr-0.15.5.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/crossbeam-channel/0.5.8/download -> crossbeam-channel-0.5.8.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.3/download -> crossbeam-deque-0.8.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.15/download -> crossbeam-epoch-0.9.15.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.16/download -> crossbeam-utils-0.8.16.crate https://crates.io/api/v1/crates/cssparser/0.31.2/download -> cssparser-0.31.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.1/download -> cssparser-macros-0.6.1.crate https://crates.io/api/v1/crates/data-url/0.3.0/download -> data-url-0.3.0.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/drm/0.11.1/download -> drm-0.11.1.crate https://crates.io/api/v1/crates/drm-ffi/0.7.1/download -> drm-ffi-0.7.1.crate https://crates.io/api/v1/crates/drm-fourcc/2.2.0/download -> drm-fourcc-2.2.0.crate https://crates.io/api/v1/crates/drm-sys/0.6.1/download -> drm-sys-0.6.1.crate https://crates.io/api/v1/crates/dtoa/1.0.9/download -> dtoa-1.0.9.crate https://crates.io/api/v1/crates/dtoa-short/0.3.4/download -> dtoa-short-0.3.4.crate https://crates.io/api/v1/crates/either/1.9.0/download -> either-1.9.0.crate https://crates.io/api/v1/crates/encoding_rs/0.8.33/download -> encoding_rs-0.8.33.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/errno/0.3.8/download -> errno-0.3.8.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.0/download -> form_urlencoded-1.2.0.crate https://crates.io/api/v1/crates/freetype-rs/0.32.0/download -> freetype-rs-0.32.0.crate https://crates.io/api/v1/crates/freetype-sys/0.17.0/download -> freetype-sys-0.17.0.crate https://crates.io/api/v1/crates/futf/0.1.5/download -> futf-0.1.5.crate https://crates.io/api/v1/crates/futures-channel/0.3.28/download -> futures-channel-0.3.28.crate https://crates.io/api/v1/crates/futures-core/0.3.28/download -> futures-core-0.3.28.crate https://crates.io/api/v1/crates/futures-executor/0.3.28/download -> futures-executor-0.3.28.crate https://crates.io/api/v1/crates/futures-io/0.3.28/download -> futures-io-0.3.28.crate https://crates.io/api/v1/crates/futures-macro/0.3.28/download -> futures-macro-0.3.28.crate https://crates.io/api/v1/crates/futures-task/0.3.28/download -> futures-task-0.3.28.crate https://crates.io/api/v1/crates/futures-util/0.3.28/download -> futures-util-0.3.28.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/gdk-pixbuf/0.18.0/download -> gdk-pixbuf-0.18.0.crate https://crates.io/api/v1/crates/gdk-pixbuf-sys/0.18.0/download -> gdk-pixbuf-sys-0.18.0.crate https://crates.io/api/v1/crates/getrandom/0.2.10/download -> getrandom-0.2.10.crate https://crates.io/api/v1/crates/gio/0.18.1/download -> gio-0.18.1.crate https://crates.io/api/v1/crates/gio-sys/0.18.1/download -> gio-sys-0.18.1.crate https://crates.io/api/v1/crates/glib/0.18.1/download -> glib-0.18.1.crate https://crates.io/api/v1/crates/glib-macros/0.18.0/download -> glib-macros-0.18.0.crate https://crates.io/api/v1/crates/glib-sys/0.18.1/download -> glib-sys-0.18.1.crate https://crates.io/api/v1/crates/gobject-sys/0.18.0/download -> gobject-sys-0.18.0.crate https://crates.io/api/v1/crates/hashbrown/0.14.0/download -> hashbrown-0.14.0.crate https://crates.io/api/v1/crates/heck/0.4.1/download -> heck-0.4.1.crate https://crates.io/api/v1/crates/hermit-abi/0.3.2/download -> hermit-abi-0.3.2.crate https://crates.io/api/v1/crates/idna/0.4.0/download -> idna-0.4.0.crate https://crates.io/api/v1/crates/indexmap/2.0.0/download -> indexmap-2.0.0.crate https://crates.io/api/v1/crates/input/0.8.3/download -> input-0.8.3.crate https://crates.io/api/v1/crates/input-linux/0.6.0/download -> input-linux-0.6.0.crate https://crates.io/api/v1/crates/input-linux-sys/0.8.0/download -> input-linux-sys-0.8.0.crate https://crates.io/api/v1/crates/input-sys/1.17.0/download -> input-sys-1.17.0.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.11/download -> io-lifetimes-1.0.11.crate https://crates.io/api/v1/crates/itertools/0.11.0/download -> itertools-0.11.0.crate https://crates.io/api/v1/crates/itoa/1.0.9/download -> itoa-1.0.9.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/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.152/download -> libc-0.2.152.crate https://crates.io/api/v1/crates/librsvg/2.57.1/download -> librsvg-2.57.1.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download -> linux-raw-sys-0.4.13.crate https://crates.io/api/v1/crates/linux-raw-sys/0.6.4/download -> linux-raw-sys-0.6.4.crate https://crates.io/api/v1/crates/locale_config/0.3.0/download -> locale_config-0.3.0.crate https://crates.io/api/v1/crates/lock_api/0.4.10/download -> lock_api-0.4.10.crate https://crates.io/api/v1/crates/log/0.4.20/download -> log-0.4.20.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.11.0/download -> markup5ever-0.11.0.crate https://crates.io/api/v1/crates/matrixmultiply/0.3.7/download -> matrixmultiply-0.3.7.crate https://crates.io/api/v1/crates/memchr/2.6.3/download -> memchr-2.6.3.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/memoffset/0.9.0/download -> memoffset-0.9.0.crate https://crates.io/api/v1/crates/nalgebra/0.32.3/download -> nalgebra-0.32.3.crate https://crates.io/api/v1/crates/nalgebra-macros/0.2.1/download -> nalgebra-macros-0.2.1.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nix/0.26.4/download -> nix-0.26.4.crate https://crates.io/api/v1/crates/nix/0.27.1/download -> nix-0.27.1.crate https://crates.io/api/v1/crates/num-complex/0.4.4/download -> num-complex-0.4.4.crate https://crates.io/api/v1/crates/num-integer/0.1.45/download -> num-integer-0.1.45.crate https://crates.io/api/v1/crates/num-rational/0.4.1/download -> num-rational-0.4.1.crate https://crates.io/api/v1/crates/num-traits/0.2.16/download -> num-traits-0.2.16.crate https://crates.io/api/v1/crates/num_cpus/1.16.0/download -> num_cpus-1.16.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/once_cell/1.18.0/download -> once_cell-1.18.0.crate https://crates.io/api/v1/crates/pango/0.18.0/download -> pango-0.18.0.crate https://crates.io/api/v1/crates/pango-sys/0.18.0/download -> pango-sys-0.18.0.crate https://crates.io/api/v1/crates/pangocairo/0.18.0/download -> pangocairo-0.18.0.crate https://crates.io/api/v1/crates/pangocairo-sys/0.18.0/download -> pangocairo-sys-0.18.0.crate https://crates.io/api/v1/crates/parking_lot/0.12.1/download -> parking_lot-0.12.1.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.8/download -> parking_lot_core-0.9.8.crate https://crates.io/api/v1/crates/paste/1.0.14/download -> paste-1.0.14.crate https://crates.io/api/v1/crates/percent-encoding/2.3.0/download -> percent-encoding-2.3.0.crate https://crates.io/api/v1/crates/phf/0.10.1/download -> phf-0.10.1.crate https://crates.io/api/v1/crates/phf_codegen/0.10.0/download -> phf_codegen-0.10.0.crate https://crates.io/api/v1/crates/phf_generator/0.10.0/download -> phf_generator-0.10.0.crate https://crates.io/api/v1/crates/phf_macros/0.10.0/download -> phf_macros-0.10.0.crate https://crates.io/api/v1/crates/phf_shared/0.10.0/download -> phf_shared-0.10.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download -> pin-project-lite-0.2.13.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.27/download -> pkg-config-0.3.27.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.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/privdrop/0.5.4/download -> privdrop-0.5.4.crate https://crates.io/api/v1/crates/proc-macro-crate/1.3.1/download -> proc-macro-crate-1.3.1.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.20+deprecated/download -> proc-macro-hack-0.5.20+deprecated.crate https://crates.io/api/v1/crates/proc-macro2/1.0.66/download -> proc-macro2-1.0.66.crate https://crates.io/api/v1/crates/quote/1.0.33/download -> quote-1.0.33.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.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/rawpointer/0.2.1/download -> rawpointer-0.2.1.crate https://crates.io/api/v1/crates/rayon/1.7.0/download -> rayon-1.7.0.crate https://crates.io/api/v1/crates/rayon-core/1.11.0/download -> rayon-core-1.11.0.crate https://crates.io/api/v1/crates/rctree/0.5.0/download -> rctree-0.5.0.crate https://crates.io/api/v1/crates/redox_syscall/0.3.5/download -> redox_syscall-0.3.5.crate https://crates.io/api/v1/crates/regex/1.9.5/download -> regex-1.9.5.crate https://crates.io/api/v1/crates/regex-automata/0.3.8/download -> regex-automata-0.3.8.crate https://crates.io/api/v1/crates/regex-syntax/0.7.5/download -> regex-syntax-0.7.5.crate https://crates.io/api/v1/crates/rgb/0.8.36/download -> rgb-0.8.36.crate https://crates.io/api/v1/crates/rustix/0.38.30/download -> rustix-0.38.30.crate https://crates.io/api/v1/crates/safe_arch/0.7.1/download -> safe_arch-0.7.1.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/selectors/0.25.0/download -> selectors-0.25.0.crate https://crates.io/api/v1/crates/serde/1.0.188/download -> serde-1.0.188.crate https://crates.io/api/v1/crates/serde_derive/1.0.188/download -> serde_derive-1.0.188.crate https://crates.io/api/v1/crates/serde_spanned/0.6.4/download -> serde_spanned-0.6.4.crate https://crates.io/api/v1/crates/servo_arc/0.3.0/download -> servo_arc-0.3.0.crate https://crates.io/api/v1/crates/simba/0.8.1/download -> simba-0.8.1.crate https://crates.io/api/v1/crates/siphasher/0.3.11/download -> siphasher-0.3.11.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.11.0/download -> smallvec-1.11.0.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.7/download -> string_cache-0.8.7.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download -> string_cache_codegen-0.5.2.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.32/download -> syn-2.0.32.crate https://crates.io/api/v1/crates/system-deps/6.1.1/download -> system-deps-6.1.1.crate https://crates.io/api/v1/crates/target-lexicon/0.12.11/download -> target-lexicon-0.12.11.crate https://crates.io/api/v1/crates/tendril/0.4.3/download -> tendril-0.4.3.crate https://crates.io/api/v1/crates/thiserror/1.0.48/download -> thiserror-1.0.48.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.48/download -> thiserror-impl-1.0.48.crate https://crates.io/api/v1/crates/tiny-dfr/0.3.0/download -> tiny-dfr-0.3.0.crate https://crates.io/api/v1/crates/tinyvec/1.6.0/download -> tinyvec-1.6.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/toml/0.7.8/download -> toml-0.7.8.crate https://crates.io/api/v1/crates/toml/0.8.8/download -> toml-0.8.8.crate https://crates.io/api/v1/crates/toml_datetime/0.6.5/download -> toml_datetime-0.6.5.crate https://crates.io/api/v1/crates/toml_edit/0.19.15/download -> toml_edit-0.19.15.crate https://crates.io/api/v1/crates/toml_edit/0.21.0/download -> toml_edit-0.21.0.crate https://crates.io/api/v1/crates/typenum/1.16.0/download -> typenum-1.16.0.crate https://crates.io/api/v1/crates/udev/0.7.0/download -> udev-0.7.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.13/download -> unicode-bidi-0.3.13.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download -> unicode-normalization-0.1.22.crate https://crates.io/api/v1/crates/url/2.4.1/download -> url-2.4.1.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/version-compare/0.1.1/download -> version-compare-0.1.1.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.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/wide/0.7.11/download -> wide-0.7.11.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.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-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.0/download -> windows-targets-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download -> windows_aarch64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download -> windows_aarch64_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download -> windows_i686_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download -> windows_i686_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download -> windows_x86_64_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download -> windows_x86_64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download -> windows_x86_64_msvc-0.52.0.crate https://crates.io/api/v1/crates/winnow/0.5.15/download -> winnow-0.5.15.crate https://crates.io/api/v1/crates/xml5ever/0.17.0/download -> xml5ever-0.17.0.crate https://github.com/AsahiLinux/tiny-dfr/archive/refs/tags/v0.3.0.tar.gz -> tiny-dfr-0.3.0.tar.gz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a8feade80fcf1647c478d8179c3763cd diff --git a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.1-r1 b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.1-r1 index 9c3a01dcdb7c..79d65d09d648 100644 --- a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.1-r1 +++ b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.1-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libinput x11-libs/pango x11-libs/gdk-pixbuf SLOT=0 SRC_URI=https://crates.io/api/v1/crates/aho-corasick/1.0.5/download -> aho-corasick-1.0.5.crate https://crates.io/api/v1/crates/anyhow/1.0.75/download -> anyhow-1.0.75.crate https://crates.io/api/v1/crates/approx/0.5.1/download -> approx-0.5.1.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.4.0/download -> bitflags-2.4.0.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/bytemuck/1.14.0/download -> bytemuck-1.14.0.crate https://crates.io/api/v1/crates/bytemuck_derive/1.5.0/download -> bytemuck_derive-1.5.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/cairo-rs/0.18.5/download -> cairo-rs-0.18.5.crate https://crates.io/api/v1/crates/cairo-sys-rs/0.18.0/download -> cairo-sys-rs-0.18.0.crate https://crates.io/api/v1/crates/cast/0.3.0/download -> cast-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.83/download -> cc-1.0.83.crate https://crates.io/api/v1/crates/cfg-expr/0.15.5/download -> cfg-expr-0.15.5.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/crossbeam-channel/0.5.8/download -> crossbeam-channel-0.5.8.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.3/download -> crossbeam-deque-0.8.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.15/download -> crossbeam-epoch-0.9.15.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.16/download -> crossbeam-utils-0.8.16.crate https://crates.io/api/v1/crates/cssparser/0.31.2/download -> cssparser-0.31.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.1/download -> cssparser-macros-0.6.1.crate https://crates.io/api/v1/crates/data-url/0.3.0/download -> data-url-0.3.0.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/drm/0.11.1/download -> drm-0.11.1.crate https://crates.io/api/v1/crates/drm-ffi/0.7.1/download -> drm-ffi-0.7.1.crate https://crates.io/api/v1/crates/drm-fourcc/2.2.0/download -> drm-fourcc-2.2.0.crate https://crates.io/api/v1/crates/drm-sys/0.6.1/download -> drm-sys-0.6.1.crate https://crates.io/api/v1/crates/dtoa/1.0.9/download -> dtoa-1.0.9.crate https://crates.io/api/v1/crates/dtoa-short/0.3.4/download -> dtoa-short-0.3.4.crate https://crates.io/api/v1/crates/either/1.9.0/download -> either-1.9.0.crate https://crates.io/api/v1/crates/encoding_rs/0.8.33/download -> encoding_rs-0.8.33.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/errno/0.3.8/download -> errno-0.3.8.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.0/download -> form_urlencoded-1.2.0.crate https://crates.io/api/v1/crates/freetype-rs/0.32.0/download -> freetype-rs-0.32.0.crate https://crates.io/api/v1/crates/freetype-sys/0.17.0/download -> freetype-sys-0.17.0.crate https://crates.io/api/v1/crates/futf/0.1.5/download -> futf-0.1.5.crate https://crates.io/api/v1/crates/futures-channel/0.3.28/download -> futures-channel-0.3.28.crate https://crates.io/api/v1/crates/futures-core/0.3.28/download -> futures-core-0.3.28.crate https://crates.io/api/v1/crates/futures-executor/0.3.28/download -> futures-executor-0.3.28.crate https://crates.io/api/v1/crates/futures-io/0.3.28/download -> futures-io-0.3.28.crate https://crates.io/api/v1/crates/futures-macro/0.3.28/download -> futures-macro-0.3.28.crate https://crates.io/api/v1/crates/futures-task/0.3.28/download -> futures-task-0.3.28.crate https://crates.io/api/v1/crates/futures-util/0.3.28/download -> futures-util-0.3.28.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/gdk-pixbuf/0.18.0/download -> gdk-pixbuf-0.18.0.crate https://crates.io/api/v1/crates/gdk-pixbuf-sys/0.18.0/download -> gdk-pixbuf-sys-0.18.0.crate https://crates.io/api/v1/crates/getrandom/0.2.10/download -> getrandom-0.2.10.crate https://crates.io/api/v1/crates/gio/0.18.1/download -> gio-0.18.1.crate https://crates.io/api/v1/crates/gio-sys/0.18.1/download -> gio-sys-0.18.1.crate https://crates.io/api/v1/crates/glib/0.18.1/download -> glib-0.18.1.crate https://crates.io/api/v1/crates/glib-macros/0.18.0/download -> glib-macros-0.18.0.crate https://crates.io/api/v1/crates/glib-sys/0.18.1/download -> glib-sys-0.18.1.crate https://crates.io/api/v1/crates/gobject-sys/0.18.0/download -> gobject-sys-0.18.0.crate https://crates.io/api/v1/crates/hashbrown/0.14.0/download -> hashbrown-0.14.0.crate https://crates.io/api/v1/crates/heck/0.4.1/download -> heck-0.4.1.crate https://crates.io/api/v1/crates/hermit-abi/0.3.2/download -> hermit-abi-0.3.2.crate https://crates.io/api/v1/crates/idna/0.4.0/download -> idna-0.4.0.crate https://crates.io/api/v1/crates/indexmap/2.0.0/download -> indexmap-2.0.0.crate https://crates.io/api/v1/crates/input/0.8.3/download -> input-0.8.3.crate https://crates.io/api/v1/crates/input-linux/0.6.0/download -> input-linux-0.6.0.crate https://crates.io/api/v1/crates/input-linux-sys/0.8.0/download -> input-linux-sys-0.8.0.crate https://crates.io/api/v1/crates/input-sys/1.17.0/download -> input-sys-1.17.0.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.11/download -> io-lifetimes-1.0.11.crate https://crates.io/api/v1/crates/itertools/0.11.0/download -> itertools-0.11.0.crate https://crates.io/api/v1/crates/itoa/1.0.9/download -> itoa-1.0.9.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/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.152/download -> libc-0.2.152.crate https://crates.io/api/v1/crates/librsvg/2.57.1/download -> librsvg-2.57.1.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download -> linux-raw-sys-0.4.13.crate https://crates.io/api/v1/crates/linux-raw-sys/0.6.4/download -> linux-raw-sys-0.6.4.crate https://crates.io/api/v1/crates/locale_config/0.3.0/download -> locale_config-0.3.0.crate https://crates.io/api/v1/crates/lock_api/0.4.10/download -> lock_api-0.4.10.crate https://crates.io/api/v1/crates/log/0.4.20/download -> log-0.4.20.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.11.0/download -> markup5ever-0.11.0.crate https://crates.io/api/v1/crates/matrixmultiply/0.3.7/download -> matrixmultiply-0.3.7.crate https://crates.io/api/v1/crates/memchr/2.6.3/download -> memchr-2.6.3.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/memoffset/0.9.0/download -> memoffset-0.9.0.crate https://crates.io/api/v1/crates/nalgebra/0.32.3/download -> nalgebra-0.32.3.crate https://crates.io/api/v1/crates/nalgebra-macros/0.2.1/download -> nalgebra-macros-0.2.1.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nix/0.26.4/download -> nix-0.26.4.crate https://crates.io/api/v1/crates/nix/0.27.1/download -> nix-0.27.1.crate https://crates.io/api/v1/crates/num-complex/0.4.4/download -> num-complex-0.4.4.crate https://crates.io/api/v1/crates/num-integer/0.1.45/download -> num-integer-0.1.45.crate https://crates.io/api/v1/crates/num-rational/0.4.1/download -> num-rational-0.4.1.crate https://crates.io/api/v1/crates/num-traits/0.2.16/download -> num-traits-0.2.16.crate https://crates.io/api/v1/crates/num_cpus/1.16.0/download -> num_cpus-1.16.0.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/once_cell/1.18.0/download -> once_cell-1.18.0.crate https://crates.io/api/v1/crates/pango/0.18.0/download -> pango-0.18.0.crate https://crates.io/api/v1/crates/pango-sys/0.18.0/download -> pango-sys-0.18.0.crate https://crates.io/api/v1/crates/pangocairo/0.18.0/download -> pangocairo-0.18.0.crate https://crates.io/api/v1/crates/pangocairo-sys/0.18.0/download -> pangocairo-sys-0.18.0.crate https://crates.io/api/v1/crates/parking_lot/0.12.1/download -> parking_lot-0.12.1.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.8/download -> parking_lot_core-0.9.8.crate https://crates.io/api/v1/crates/paste/1.0.14/download -> paste-1.0.14.crate https://crates.io/api/v1/crates/percent-encoding/2.3.0/download -> percent-encoding-2.3.0.crate https://crates.io/api/v1/crates/phf/0.10.1/download -> phf-0.10.1.crate https://crates.io/api/v1/crates/phf_codegen/0.10.0/download -> phf_codegen-0.10.0.crate https://crates.io/api/v1/crates/phf_generator/0.10.0/download -> phf_generator-0.10.0.crate https://crates.io/api/v1/crates/phf_macros/0.10.0/download -> phf_macros-0.10.0.crate https://crates.io/api/v1/crates/phf_shared/0.10.0/download -> phf_shared-0.10.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download -> pin-project-lite-0.2.13.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.27/download -> pkg-config-0.3.27.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.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/privdrop/0.5.4/download -> privdrop-0.5.4.crate https://crates.io/api/v1/crates/proc-macro-crate/1.3.1/download -> proc-macro-crate-1.3.1.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-hack/0.5.20+deprecated/download -> proc-macro-hack-0.5.20+deprecated.crate https://crates.io/api/v1/crates/proc-macro2/1.0.66/download -> proc-macro2-1.0.66.crate https://crates.io/api/v1/crates/quote/1.0.33/download -> quote-1.0.33.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.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/rawpointer/0.2.1/download -> rawpointer-0.2.1.crate https://crates.io/api/v1/crates/rayon/1.7.0/download -> rayon-1.7.0.crate https://crates.io/api/v1/crates/rayon-core/1.11.0/download -> rayon-core-1.11.0.crate https://crates.io/api/v1/crates/rctree/0.5.0/download -> rctree-0.5.0.crate https://crates.io/api/v1/crates/redox_syscall/0.3.5/download -> redox_syscall-0.3.5.crate https://crates.io/api/v1/crates/regex/1.9.5/download -> regex-1.9.5.crate https://crates.io/api/v1/crates/regex-automata/0.3.8/download -> regex-automata-0.3.8.crate https://crates.io/api/v1/crates/regex-syntax/0.7.5/download -> regex-syntax-0.7.5.crate https://crates.io/api/v1/crates/rgb/0.8.36/download -> rgb-0.8.36.crate https://crates.io/api/v1/crates/rustix/0.38.30/download -> rustix-0.38.30.crate https://crates.io/api/v1/crates/safe_arch/0.7.1/download -> safe_arch-0.7.1.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/selectors/0.25.0/download -> selectors-0.25.0.crate https://crates.io/api/v1/crates/serde/1.0.188/download -> serde-1.0.188.crate https://crates.io/api/v1/crates/serde_derive/1.0.188/download -> serde_derive-1.0.188.crate https://crates.io/api/v1/crates/serde_spanned/0.6.4/download -> serde_spanned-0.6.4.crate https://crates.io/api/v1/crates/servo_arc/0.3.0/download -> servo_arc-0.3.0.crate https://crates.io/api/v1/crates/simba/0.8.1/download -> simba-0.8.1.crate https://crates.io/api/v1/crates/siphasher/0.3.11/download -> siphasher-0.3.11.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.11.0/download -> smallvec-1.11.0.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.7/download -> string_cache-0.8.7.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download -> string_cache_codegen-0.5.2.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.32/download -> syn-2.0.32.crate https://crates.io/api/v1/crates/system-deps/6.1.1/download -> system-deps-6.1.1.crate https://crates.io/api/v1/crates/target-lexicon/0.12.11/download -> target-lexicon-0.12.11.crate https://crates.io/api/v1/crates/tendril/0.4.3/download -> tendril-0.4.3.crate https://crates.io/api/v1/crates/thiserror/1.0.48/download -> thiserror-1.0.48.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.48/download -> thiserror-impl-1.0.48.crate https://crates.io/api/v1/crates/tiny-dfr/0.3.0/download -> tiny-dfr-0.3.0.crate https://crates.io/api/v1/crates/tinyvec/1.6.0/download -> tinyvec-1.6.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/toml/0.7.8/download -> toml-0.7.8.crate https://crates.io/api/v1/crates/toml/0.8.8/download -> toml-0.8.8.crate https://crates.io/api/v1/crates/toml_datetime/0.6.5/download -> toml_datetime-0.6.5.crate https://crates.io/api/v1/crates/toml_edit/0.19.15/download -> toml_edit-0.19.15.crate https://crates.io/api/v1/crates/toml_edit/0.21.0/download -> toml_edit-0.21.0.crate https://crates.io/api/v1/crates/typenum/1.16.0/download -> typenum-1.16.0.crate https://crates.io/api/v1/crates/udev/0.7.0/download -> udev-0.7.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.13/download -> unicode-bidi-0.3.13.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download -> unicode-normalization-0.1.22.crate https://crates.io/api/v1/crates/url/2.4.1/download -> url-2.4.1.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/version-compare/0.1.1/download -> version-compare-0.1.1.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.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/wide/0.7.11/download -> wide-0.7.11.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.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-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.0/download -> windows-targets-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download -> windows_aarch64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download -> windows_aarch64_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download -> windows_i686_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download -> windows_i686_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download -> windows_x86_64_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download -> windows_x86_64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download -> windows_x86_64_msvc-0.52.0.crate https://crates.io/api/v1/crates/winnow/0.5.15/download -> winnow-0.5.15.crate https://crates.io/api/v1/crates/xml5ever/0.17.0/download -> xml5ever-0.17.0.crate https://github.com/AsahiLinux/tiny-dfr/archive/refs/tags/v0.3.1.tar.gz -> tiny-dfr-0.3.1.tar.gz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=00623142a6a1f1d18c306198c05a2bdc diff --git a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.3 b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.3 index 882df077d818..5dc7601745e3 100644 --- a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.3 +++ b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.3 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libinput x11-libs/pango x11-libs/gdk-pixbuf SLOT=0 SRC_URI=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.0.5/download -> aho-corasick-1.0.5.crate https://crates.io/api/v1/crates/anyhow/1.0.75/download -> anyhow-1.0.75.crate https://crates.io/api/v1/crates/approx/0.5.1/download -> approx-0.5.1.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.6.0/download -> bitflags-2.6.0.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/bytemuck/1.14.0/download -> bytemuck-1.14.0.crate https://crates.io/api/v1/crates/bytemuck_derive/1.5.0/download -> bytemuck_derive-1.5.0.crate https://crates.io/api/v1/crates/byteorder-lite/0.1.0/download -> byteorder-lite-0.1.0.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/cairo-rs/0.20.1/download -> cairo-rs-0.20.1.crate https://crates.io/api/v1/crates/cairo-sys-rs/0.20.0/download -> cairo-sys-rs-0.20.0.crate https://crates.io/api/v1/crates/cast/0.3.0/download -> cast-0.3.0.crate https://crates.io/api/v1/crates/cc/1.0.83/download -> cc-1.0.83.crate https://crates.io/api/v1/crates/cfg-expr/0.17.0/download -> cfg-expr-0.17.0.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/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/color_quant/1.1.0/download -> color_quant-1.1.0.crate https://crates.io/api/v1/crates/const-random-macro/0.1.16/download -> const-random-macro-0.1.16.crate https://crates.io/api/v1/crates/const-random/0.1.18/download -> const-random-0.1.18.crate https://crates.io/api/v1/crates/crc32fast/1.4.2/download -> crc32fast-1.4.2.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.8/download -> crossbeam-channel-0.5.8.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.3/download -> crossbeam-deque-0.8.3.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.15/download -> crossbeam-epoch-0.9.15.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.16/download -> crossbeam-utils-0.8.16.crate https://crates.io/api/v1/crates/crunchy/0.2.2/download -> crunchy-0.2.2.crate https://crates.io/api/v1/crates/cssparser-macros/0.6.1/download -> cssparser-macros-0.6.1.crate https://crates.io/api/v1/crates/cssparser/0.31.2/download -> cssparser-0.31.2.crate https://crates.io/api/v1/crates/data-url/0.3.0/download -> data-url-0.3.0.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/dirs-sys/0.4.1/download -> dirs-sys-0.4.1.crate https://crates.io/api/v1/crates/dirs/5.0.1/download -> dirs-5.0.1.crate https://crates.io/api/v1/crates/dlv-list/0.5.2/download -> dlv-list-0.5.2.crate https://crates.io/api/v1/crates/drm-ffi/0.7.1/download -> drm-ffi-0.7.1.crate https://crates.io/api/v1/crates/drm-fourcc/2.2.0/download -> drm-fourcc-2.2.0.crate https://crates.io/api/v1/crates/drm-sys/0.6.1/download -> drm-sys-0.6.1.crate https://crates.io/api/v1/crates/drm/0.11.1/download -> drm-0.11.1.crate https://crates.io/api/v1/crates/dtoa-short/0.3.4/download -> dtoa-short-0.3.4.crate https://crates.io/api/v1/crates/dtoa/1.0.9/download -> dtoa-1.0.9.crate https://crates.io/api/v1/crates/either/1.9.0/download -> either-1.9.0.crate https://crates.io/api/v1/crates/encoding_rs/0.8.33/download -> encoding_rs-0.8.33.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/errno/0.3.8/download -> errno-0.3.8.crate https://crates.io/api/v1/crates/fdeflate/0.3.5/download -> fdeflate-0.3.5.crate https://crates.io/api/v1/crates/flate2/1.0.34/download -> flate2-1.0.34.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.0/download -> form_urlencoded-1.2.0.crate https://crates.io/api/v1/crates/freedesktop-icons/0.2.6/download -> freedesktop-icons-0.2.6.crate https://crates.io/api/v1/crates/freetype-rs/0.37.0/download -> freetype-rs-0.37.0.crate https://crates.io/api/v1/crates/freetype-sys/0.21.0/download -> freetype-sys-0.21.0.crate https://crates.io/api/v1/crates/futf/0.1.5/download -> futf-0.1.5.crate https://crates.io/api/v1/crates/futures-channel/0.3.28/download -> futures-channel-0.3.28.crate https://crates.io/api/v1/crates/futures-core/0.3.28/download -> futures-core-0.3.28.crate https://crates.io/api/v1/crates/futures-executor/0.3.28/download -> futures-executor-0.3.28.crate https://crates.io/api/v1/crates/futures-io/0.3.28/download -> futures-io-0.3.28.crate https://crates.io/api/v1/crates/futures-macro/0.3.28/download -> futures-macro-0.3.28.crate https://crates.io/api/v1/crates/futures-task/0.3.28/download -> futures-task-0.3.28.crate https://crates.io/api/v1/crates/futures-util/0.3.28/download -> futures-util-0.3.28.crate https://crates.io/api/v1/crates/fxhash/0.2.1/download -> fxhash-0.2.1.crate https://crates.io/api/v1/crates/getrandom/0.2.10/download -> getrandom-0.2.10.crate https://crates.io/api/v1/crates/gif/0.13.1/download -> gif-0.13.1.crate https://crates.io/api/v1/crates/gio-sys/0.20.4/download -> gio-sys-0.20.4.crate https://crates.io/api/v1/crates/gio/0.20.4/download -> gio-0.20.4.crate https://crates.io/api/v1/crates/glib-macros/0.20.4/download -> glib-macros-0.20.4.crate https://crates.io/api/v1/crates/glib-sys/0.20.4/download -> glib-sys-0.20.4.crate https://crates.io/api/v1/crates/glib/0.20.4/download -> glib-0.20.4.crate https://crates.io/api/v1/crates/gobject-sys/0.20.4/download -> gobject-sys-0.20.4.crate https://crates.io/api/v1/crates/hashbrown/0.14.5/download -> hashbrown-0.14.5.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hermit-abi/0.3.2/download -> hermit-abi-0.3.2.crate https://crates.io/api/v1/crates/idna/0.4.0/download -> idna-0.4.0.crate https://crates.io/api/v1/crates/image-webp/0.1.3/download -> image-webp-0.1.3.crate https://crates.io/api/v1/crates/image/0.25.2/download -> image-0.25.2.crate https://crates.io/api/v1/crates/indexmap/2.5.0/download -> indexmap-2.5.0.crate https://crates.io/api/v1/crates/input-linux-sys/0.9.0/download -> input-linux-sys-0.9.0.crate https://crates.io/api/v1/crates/input-linux/0.7.1/download -> input-linux-0.7.1.crate https://crates.io/api/v1/crates/input-sys/1.17.0/download -> input-sys-1.17.0.crate https://crates.io/api/v1/crates/input/0.8.3/download -> input-0.8.3.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.11/download -> io-lifetimes-1.0.11.crate https://crates.io/api/v1/crates/itertools/0.13.0/download -> itertools-0.13.0.crate https://crates.io/api/v1/crates/itoa/1.0.9/download -> itoa-1.0.9.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/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.159/download -> libc-0.2.159.crate https://crates.io/api/v1/crates/libredox/0.1.3/download -> libredox-0.1.3.crate https://crates.io/api/v1/crates/librsvg/2.59.1/download -> librsvg-2.59.1.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download -> linux-raw-sys-0.4.13.crate https://crates.io/api/v1/crates/linux-raw-sys/0.6.4/download -> linux-raw-sys-0.6.4.crate https://crates.io/api/v1/crates/locale_config/0.3.0/download -> locale_config-0.3.0.crate https://crates.io/api/v1/crates/lock_api/0.4.10/download -> lock_api-0.4.10.crate https://crates.io/api/v1/crates/log/0.4.20/download -> log-0.4.20.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/markup5ever/0.12.1/download -> markup5ever-0.12.1.crate https://crates.io/api/v1/crates/matrixmultiply/0.3.7/download -> matrixmultiply-0.3.7.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/memoffset/0.9.0/download -> memoffset-0.9.0.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.0/download -> miniz_oxide-0.8.0.crate https://crates.io/api/v1/crates/nalgebra-macros/0.2.2/download -> nalgebra-macros-0.2.2.crate https://crates.io/api/v1/crates/nalgebra/0.33.0/download -> nalgebra-0.33.0.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download -> new_debug_unreachable-1.0.4.crate https://crates.io/api/v1/crates/nix/0.26.4/download -> nix-0.26.4.crate https://crates.io/api/v1/crates/nix/0.29.0/download -> nix-0.29.0.crate https://crates.io/api/v1/crates/num-complex/0.4.4/download -> num-complex-0.4.4.crate https://crates.io/api/v1/crates/num-integer/0.1.45/download -> num-integer-0.1.45.crate https://crates.io/api/v1/crates/num-rational/0.4.1/download -> num-rational-0.4.1.crate https://crates.io/api/v1/crates/num-traits/0.2.16/download -> num-traits-0.2.16.crate https://crates.io/api/v1/crates/num_cpus/1.16.0/download -> num_cpus-1.16.0.crate https://crates.io/api/v1/crates/objc-foundation/0.1.1/download -> objc-foundation-0.1.1.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc_id/0.1.1/download -> objc_id-0.1.1.crate https://crates.io/api/v1/crates/once_cell/1.20.2/download -> once_cell-1.20.2.crate https://crates.io/api/v1/crates/option-ext/0.2.0/download -> option-ext-0.2.0.crate https://crates.io/api/v1/crates/ordered-multimap/0.7.3/download -> ordered-multimap-0.7.3.crate https://crates.io/api/v1/crates/pango-sys/0.20.4/download -> pango-sys-0.20.4.crate https://crates.io/api/v1/crates/pango/0.20.4/download -> pango-0.20.4.crate https://crates.io/api/v1/crates/pangocairo-sys/0.20.4/download -> pangocairo-sys-0.20.4.crate https://crates.io/api/v1/crates/pangocairo/0.20.4/download -> pangocairo-0.20.4.crate https://crates.io/api/v1/crates/parking_lot/0.12.1/download -> parking_lot-0.12.1.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.8/download -> parking_lot_core-0.9.8.crate https://crates.io/api/v1/crates/paste/1.0.14/download -> paste-1.0.14.crate https://crates.io/api/v1/crates/percent-encoding/2.3.0/download -> percent-encoding-2.3.0.crate https://crates.io/api/v1/crates/phf/0.10.1/download -> phf-0.10.1.crate https://crates.io/api/v1/crates/phf/0.11.2/download -> phf-0.11.2.crate https://crates.io/api/v1/crates/phf_codegen/0.10.0/download -> phf_codegen-0.10.0.crate https://crates.io/api/v1/crates/phf_codegen/0.11.2/download -> phf_codegen-0.11.2.crate https://crates.io/api/v1/crates/phf_generator/0.10.0/download -> phf_generator-0.10.0.crate https://crates.io/api/v1/crates/phf_generator/0.11.2/download -> phf_generator-0.11.2.crate https://crates.io/api/v1/crates/phf_macros/0.11.2/download -> phf_macros-0.11.2.crate https://crates.io/api/v1/crates/phf_shared/0.10.0/download -> phf_shared-0.10.0.crate https://crates.io/api/v1/crates/phf_shared/0.11.2/download -> phf_shared-0.11.2.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download -> pin-project-lite-0.2.13.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.27/download -> pkg-config-0.3.27.crate https://crates.io/api/v1/crates/png/0.17.14/download -> png-0.17.14.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.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/privdrop/0.5.4/download -> privdrop-0.5.4.crate https://crates.io/api/v1/crates/proc-macro-crate/3.2.0/download -> proc-macro-crate-3.2.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.86/download -> proc-macro2-1.0.86.crate https://crates.io/api/v1/crates/quick-error/2.0.1/download -> quick-error-2.0.1.crate https://crates.io/api/v1/crates/quote/1.0.37/download -> quote-1.0.37.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.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/rawpointer/0.2.1/download -> rawpointer-0.2.1.crate https://crates.io/api/v1/crates/rayon-core/1.11.0/download -> rayon-core-1.11.0.crate https://crates.io/api/v1/crates/rayon/1.7.0/download -> rayon-1.7.0.crate https://crates.io/api/v1/crates/rctree/0.6.0/download -> rctree-0.6.0.crate https://crates.io/api/v1/crates/redox_syscall/0.3.5/download -> redox_syscall-0.3.5.crate https://crates.io/api/v1/crates/redox_users/0.4.6/download -> redox_users-0.4.6.crate https://crates.io/api/v1/crates/regex-automata/0.3.8/download -> regex-automata-0.3.8.crate https://crates.io/api/v1/crates/regex-syntax/0.7.5/download -> regex-syntax-0.7.5.crate https://crates.io/api/v1/crates/regex/1.9.5/download -> regex-1.9.5.crate https://crates.io/api/v1/crates/rgb/0.8.36/download -> rgb-0.8.36.crate https://crates.io/api/v1/crates/rust-ini/0.20.0/download -> rust-ini-0.20.0.crate https://crates.io/api/v1/crates/rustix/0.38.30/download -> rustix-0.38.30.crate https://crates.io/api/v1/crates/safe_arch/0.7.1/download -> safe_arch-0.7.1.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/selectors/0.25.0/download -> selectors-0.25.0.crate https://crates.io/api/v1/crates/serde/1.0.188/download -> serde-1.0.188.crate https://crates.io/api/v1/crates/serde_derive/1.0.188/download -> serde_derive-1.0.188.crate https://crates.io/api/v1/crates/serde_spanned/0.6.4/download -> serde_spanned-0.6.4.crate https://crates.io/api/v1/crates/servo_arc/0.3.0/download -> servo_arc-0.3.0.crate https://crates.io/api/v1/crates/simba/0.9.0/download -> simba-0.9.0.crate https://crates.io/api/v1/crates/simd-adler32/0.3.7/download -> simd-adler32-0.3.7.crate https://crates.io/api/v1/crates/siphasher/0.3.11/download -> siphasher-0.3.11.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.13.2/download -> smallvec-1.13.2.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.7/download -> string_cache-0.8.7.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download -> string_cache_codegen-0.5.2.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.79/download -> syn-2.0.79.crate https://crates.io/api/v1/crates/system-deps/7.0.3/download -> system-deps-7.0.3.crate https://crates.io/api/v1/crates/target-lexicon/0.12.16/download -> target-lexicon-0.12.16.crate https://crates.io/api/v1/crates/tendril/0.4.3/download -> tendril-0.4.3.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.65/download -> thiserror-impl-1.0.65.crate https://crates.io/api/v1/crates/thiserror/1.0.65/download -> thiserror-1.0.65.crate https://crates.io/api/v1/crates/tiny-keccak/2.0.2/download -> tiny-keccak-2.0.2.crate https://crates.io/api/v1/crates/tinyvec/1.6.0/download -> tinyvec-1.6.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/toml/0.8.8/download -> toml-0.8.8.crate https://crates.io/api/v1/crates/toml_datetime/0.6.8/download -> toml_datetime-0.6.8.crate https://crates.io/api/v1/crates/toml_edit/0.21.0/download -> toml_edit-0.21.0.crate https://crates.io/api/v1/crates/toml_edit/0.22.22/download -> toml_edit-0.22.22.crate https://crates.io/api/v1/crates/typenum/1.16.0/download -> typenum-1.16.0.crate https://crates.io/api/v1/crates/udev/0.7.0/download -> udev-0.7.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.13/download -> unicode-bidi-0.3.13.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download -> unicode-normalization-0.1.22.crate https://crates.io/api/v1/crates/url/2.4.1/download -> url-2.4.1.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/version-compare/0.2.0/download -> version-compare-0.2.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/weezl/0.1.8/download -> weezl-0.1.8.crate https://crates.io/api/v1/crates/wide/0.7.11/download -> wide-0.7.11.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.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-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.0/download -> windows-targets-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download -> windows_aarch64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download -> windows_aarch64_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download -> windows_i686_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download -> windows_i686_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download -> windows_x86_64_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download -> windows_x86_64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download -> windows_x86_64_msvc-0.52.0.crate https://crates.io/api/v1/crates/winnow/0.5.15/download -> winnow-0.5.15.crate https://crates.io/api/v1/crates/winnow/0.6.20/download -> winnow-0.6.20.crate https://crates.io/api/v1/crates/xdg/2.5.2/download -> xdg-2.5.2.crate https://crates.io/api/v1/crates/xml5ever/0.18.1/download -> xml5ever-0.18.1.crate https://crates.io/api/v1/crates/zune-core/0.4.12/download -> zune-core-0.4.12.crate https://crates.io/api/v1/crates/zune-jpeg/0.4.13/download -> zune-jpeg-0.4.13.crate https://github.com/AsahiLinux/tiny-dfr/archive/refs/tags/v0.3.3.tar.gz -> tiny-dfr-0.3.3.tar.gz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2d03aaf4d546e13ebd3b15671d75b99d diff --git a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.5 b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.5 index cc18aa6ccc6f..db00cd3a736c 100644 --- a/metadata/md5-cache/app-laptop/tiny-dfr-0.3.5 +++ b/metadata/md5-cache/app-laptop/tiny-dfr-0.3.5 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=dev-libs/libinput gnome-base/librsvg x11-libs/pango x11-libs/gdk-pixbuf SLOT=0 SRC_URI=https://crates.io/api/v1/crates/android-tzdata/0.1.1/download -> android-tzdata-0.1.1.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/anyhow/1.0.75/download -> anyhow-1.0.75.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.6.0/download -> bitflags-2.6.0.crate https://crates.io/api/v1/crates/bumpalo/3.17.0/download -> bumpalo-3.17.0.crate https://crates.io/api/v1/crates/bytemuck/1.14.0/download -> bytemuck-1.14.0.crate https://crates.io/api/v1/crates/bytemuck_derive/1.5.0/download -> bytemuck_derive-1.5.0.crate https://crates.io/api/v1/crates/cairo-rs/0.20.1/download -> cairo-rs-0.20.1.crate https://crates.io/api/v1/crates/cairo-sys-rs/0.20.0/download -> cairo-sys-rs-0.20.0.crate https://crates.io/api/v1/crates/cc/1.0.83/download -> cc-1.0.83.crate https://crates.io/api/v1/crates/cfg-expr/0.17.0/download -> cfg-expr-0.17.0.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/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/chrono/0.4.40/download -> chrono-0.4.40.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/dirs-sys/0.4.1/download -> dirs-sys-0.4.1.crate https://crates.io/api/v1/crates/dirs/5.0.1/download -> dirs-5.0.1.crate https://crates.io/api/v1/crates/drm-ffi/0.7.1/download -> drm-ffi-0.7.1.crate https://crates.io/api/v1/crates/drm-fourcc/2.2.0/download -> drm-fourcc-2.2.0.crate https://crates.io/api/v1/crates/drm-sys/0.6.1/download -> drm-sys-0.6.1.crate https://crates.io/api/v1/crates/drm/0.11.1/download -> drm-0.11.1.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/errno/0.3.8/download -> errno-0.3.8.crate https://crates.io/api/v1/crates/freedesktop-icons/0.4.0/download -> freedesktop-icons-0.4.0.crate https://crates.io/api/v1/crates/freetype-rs/0.37.0/download -> freetype-rs-0.37.0.crate https://crates.io/api/v1/crates/freetype-sys/0.21.0/download -> freetype-sys-0.21.0.crate https://crates.io/api/v1/crates/futures-channel/0.3.28/download -> futures-channel-0.3.28.crate https://crates.io/api/v1/crates/futures-core/0.3.28/download -> futures-core-0.3.28.crate https://crates.io/api/v1/crates/futures-executor/0.3.28/download -> futures-executor-0.3.28.crate https://crates.io/api/v1/crates/futures-io/0.3.28/download -> futures-io-0.3.28.crate https://crates.io/api/v1/crates/futures-macro/0.3.28/download -> futures-macro-0.3.28.crate https://crates.io/api/v1/crates/futures-task/0.3.28/download -> futures-task-0.3.28.crate https://crates.io/api/v1/crates/futures-util/0.3.28/download -> futures-util-0.3.28.crate https://crates.io/api/v1/crates/gdk-pixbuf-sys/0.20.7/download -> gdk-pixbuf-sys-0.20.7.crate https://crates.io/api/v1/crates/getrandom/0.2.10/download -> getrandom-0.2.10.crate https://crates.io/api/v1/crates/gio-sys/0.20.9/download -> gio-sys-0.20.9.crate https://crates.io/api/v1/crates/gio/0.20.4/download -> gio-0.20.4.crate https://crates.io/api/v1/crates/glib-macros/0.20.4/download -> glib-macros-0.20.4.crate https://crates.io/api/v1/crates/glib-sys/0.20.9/download -> glib-sys-0.20.9.crate https://crates.io/api/v1/crates/glib/0.20.4/download -> glib-0.20.4.crate https://crates.io/api/v1/crates/gobject-sys/0.20.4/download -> gobject-sys-0.20.4.crate https://crates.io/api/v1/crates/hashbrown/0.14.5/download -> hashbrown-0.14.5.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hermit-abi/0.3.2/download -> hermit-abi-0.3.2.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.63/download -> iana-time-zone-0.1.63.crate https://crates.io/api/v1/crates/indexmap/2.5.0/download -> indexmap-2.5.0.crate https://crates.io/api/v1/crates/ini_core/0.2.0/download -> ini_core-0.2.0.crate https://crates.io/api/v1/crates/input-linux-sys/0.9.0/download -> input-linux-sys-0.9.0.crate https://crates.io/api/v1/crates/input-linux/0.7.1/download -> input-linux-0.7.1.crate https://crates.io/api/v1/crates/input-sys/1.17.0/download -> input-sys-1.17.0.crate https://crates.io/api/v1/crates/input/0.8.3/download -> input-0.8.3.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.11/download -> io-lifetimes-1.0.11.crate https://crates.io/api/v1/crates/js-sys/0.3.77/download -> js-sys-0.3.77.crate https://crates.io/api/v1/crates/libc/0.2.159/download -> libc-0.2.159.crate https://crates.io/api/v1/crates/libredox/0.1.3/download -> libredox-0.1.3.crate https://crates.io/api/v1/crates/librsvg-rebind-sys/0.1.0/download -> librsvg-rebind-sys-0.1.0.crate https://crates.io/api/v1/crates/librsvg-rebind/0.1.0/download -> librsvg-rebind-0.1.0.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download -> linux-raw-sys-0.4.13.crate https://crates.io/api/v1/crates/linux-raw-sys/0.6.4/download -> linux-raw-sys-0.6.4.crate https://crates.io/api/v1/crates/log/0.4.20/download -> log-0.4.20.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/nix/0.26.4/download -> nix-0.26.4.crate https://crates.io/api/v1/crates/nix/0.29.0/download -> nix-0.29.0.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/once_cell/1.20.2/download -> once_cell-1.20.2.crate https://crates.io/api/v1/crates/option-ext/0.2.0/download -> option-ext-0.2.0.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download -> pin-project-lite-0.2.13.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.27/download -> pkg-config-0.3.27.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.crate https://crates.io/api/v1/crates/privdrop/0.5.4/download -> privdrop-0.5.4.crate https://crates.io/api/v1/crates/proc-macro-crate/3.2.0/download -> proc-macro-crate-3.2.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.86/download -> proc-macro2-1.0.86.crate https://crates.io/api/v1/crates/pure-rust-locales/0.8.1/download -> pure-rust-locales-0.8.1.crate https://crates.io/api/v1/crates/quote/1.0.37/download -> quote-1.0.37.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.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/redox_users/0.4.6/download -> redox_users-0.4.6.crate https://crates.io/api/v1/crates/rustix/0.38.30/download -> rustix-0.38.30.crate https://crates.io/api/v1/crates/rustversion/1.0.20/download -> rustversion-1.0.20.crate https://crates.io/api/v1/crates/serde/1.0.188/download -> serde-1.0.188.crate https://crates.io/api/v1/crates/serde_derive/1.0.188/download -> serde_derive-1.0.188.crate https://crates.io/api/v1/crates/serde_spanned/0.6.4/download -> serde_spanned-0.6.4.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.13.2/download -> smallvec-1.13.2.crate https://crates.io/api/v1/crates/syn/2.0.79/download -> syn-2.0.79.crate https://crates.io/api/v1/crates/system-deps/7.0.3/download -> system-deps-7.0.3.crate https://crates.io/api/v1/crates/target-lexicon/0.12.16/download -> target-lexicon-0.12.16.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.65/download -> thiserror-impl-1.0.65.crate https://crates.io/api/v1/crates/thiserror/1.0.65/download -> thiserror-1.0.65.crate https://crates.io/api/v1/crates/toml/0.8.8/download -> toml-0.8.8.crate https://crates.io/api/v1/crates/toml_datetime/0.6.8/download -> toml_datetime-0.6.8.crate https://crates.io/api/v1/crates/toml_edit/0.21.0/download -> toml_edit-0.21.0.crate https://crates.io/api/v1/crates/toml_edit/0.22.22/download -> toml_edit-0.22.22.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/udev/0.7.0/download -> udev-0.7.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/version-compare/0.2.0/download -> version-compare-0.2.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/wasm-bindgen-backend/0.2.100/download -> wasm-bindgen-backend-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.100/download -> wasm-bindgen-macro-support-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.100/download -> wasm-bindgen-macro-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.100/download -> wasm-bindgen-shared-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.100/download -> wasm-bindgen-0.2.100.crate https://crates.io/api/v1/crates/windows-core/0.61.0/download -> windows-core-0.61.0.crate https://crates.io/api/v1/crates/windows-implement/0.60.0/download -> windows-implement-0.60.0.crate https://crates.io/api/v1/crates/windows-interface/0.59.1/download -> windows-interface-0.59.1.crate https://crates.io/api/v1/crates/windows-link/0.1.1/download -> windows-link-0.1.1.crate https://crates.io/api/v1/crates/windows-result/0.3.2/download -> windows-result-0.3.2.crate https://crates.io/api/v1/crates/windows-strings/0.4.0/download -> windows-strings-0.4.0.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.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-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.0/download -> windows-targets-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download -> windows_aarch64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download -> windows_aarch64_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download -> windows_i686_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download -> windows_i686_msvc-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download -> windows_x86_64_gnu-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download -> windows_x86_64_gnullvm-0.52.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download -> windows_x86_64_msvc-0.52.0.crate https://crates.io/api/v1/crates/winnow/0.5.15/download -> winnow-0.5.15.crate https://crates.io/api/v1/crates/winnow/0.6.20/download -> winnow-0.6.20.crate https://crates.io/api/v1/crates/xdg/2.5.2/download -> xdg-2.5.2.crate https://github.com/AsahiLinux/tiny-dfr/archive/refs/tags/v0.3.5.tar.gz -> tiny-dfr-0.3.5.tar.gz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=33471fdc0c1299c93583e9e3182b7364 diff --git a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.15.4 b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.15.4 index 15026967510d..6711b9319d20 100644 --- a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.15.4 +++ b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.15.4 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v4.15.4/tuxedo-drivers-v4.15.4.tar.bz2 -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9b284ee4789d48d0a42ce6d51ab30dde diff --git a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.18.2 b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.18.2 index 20ff9d808cc8..dc35ff673dd2 100644 --- a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.18.2 +++ b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.18.2 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v4.18.2/tuxedo-drivers-v4.18.2.tar.bz2 -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c5a2803e458cf580203569c2597302c7 diff --git a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.21.0 b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.21.0 index c3ea5ad459a3..3585f20aee70 100644 --- a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.21.0 +++ b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.21.0 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v4.21.0/tuxedo-drivers-v4.21.0.tar.bz2 -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a1a4c248c90c9816dc0567465d67ff41 diff --git a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.22.1 b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.22.1 index bbc8932baa65..e4c56b2e11e5 100644 --- a/metadata/md5-cache/app-laptop/tuxedo-drivers-4.22.1 +++ b/metadata/md5-cache/app-laptop/tuxedo-drivers-4.22.1 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/archive/v4.22.1/tuxedo-drivers-v4.22.1.tar.bz2 -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a1a4c248c90c9816dc0567465d67ff41 diff --git a/metadata/md5-cache/app-metrics/collectd-5.12.0-r12 b/metadata/md5-cache/app-metrics/collectd-5.12.0-r12 index 77fe365a9fd5..87c1d518f1af 100644 --- a/metadata/md5-cache/app-metrics/collectd-5.12.0-r12 +++ b/metadata/md5-cache/app-metrics/collectd-5.12.0-r12 @@ -13,5 +13,5 @@ RDEPEND=acct-group/collectd acct-user/collectd dev-libs/libgcrypt:= dev-libs/lib REQUIRED_USE=collectd_plugins_lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) collectd_plugins_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 ) ) collectd_plugins_smart? ( udev ) contrib? ( perl ) SLOT=0 SRC_URI=https://github.com/collectd/collectd/releases/download/collectd-5.12.0/collectd-5.12.0.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 fcaps c94316d02a37fb5cbe79b7d41c729119 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 fcaps c94316d02a37fb5cbe79b7d41c729119 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=18f5e96362cc86bc5adca831b4928b82 diff --git a/metadata/md5-cache/app-misc/beep-1.4.12-r3 b/metadata/md5-cache/app-misc/beep-1.4.12-r3 index bd53ae48c760..39c17924ddd3 100644 --- a/metadata/md5-cache/app-misc/beep-1.4.12-r3 +++ b/metadata/md5-cache/app-misc/beep-1.4.12-r3 @@ -10,5 +10,5 @@ RDEPEND=acct-group/beep RESTRICT=test SLOT=0 SRC_URI=https://github.com/spkr-beep/beep/archive/v1.4.12.tar.gz -> beep-1.4.12.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e488461b1d4f7273d7a154641eedfd55 diff --git a/metadata/md5-cache/app-misc/brightnessctl-0.5.1 b/metadata/md5-cache/app-misc/brightnessctl-0.5.1 index 18f58e9e8d2e..f3fa481b620c 100644 --- a/metadata/md5-cache/app-misc/brightnessctl-0.5.1 +++ b/metadata/md5-cache/app-misc/brightnessctl-0.5.1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=systemd? ( sys-apps/systemd ) udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/Hummer12007/brightnessctl/archive/0.5.1.tar.gz -> brightnessctl-0.5.1.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5cd6e876c6ddd0b6790ef9858f3c90a3 diff --git a/metadata/md5-cache/app-misc/ckb-0.6.1-r1 b/metadata/md5-cache/app-misc/ckb-0.6.1-r1 index 7a38d74e1988..a7c10811a41e 100644 --- a/metadata/md5-cache/app-misc/ckb-0.6.1-r1 +++ b/metadata/md5-cache/app-misc/ckb-0.6.1-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/quazip-1.3-r2:=[qt6(+)] dev-qt/qtbase:6[dbus,gui,network,opengl,widgets] || ( media-libs/libpulse media-sound/apulse[sdk] ) virtual/libudev:= x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 SRC_URI=https://github.com/ckb-next/ckb-next/archive/v0.6.1.tar.gz -> ckb-0.6.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2f93d1bca425ea9e7a7d00953a8ef4a5 diff --git a/metadata/md5-cache/app-misc/ckb-0.6.2-r1 b/metadata/md5-cache/app-misc/ckb-0.6.2-r1 index 2729c26d1aa2..592b04e0982f 100644 --- a/metadata/md5-cache/app-misc/ckb-0.6.2-r1 +++ b/metadata/md5-cache/app-misc/ckb-0.6.2-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/quazip-1.3-r2:=[qt6(+)] dev-qt/qtbase:6[dbus,gui,network,opengl,widgets] || ( media-libs/libpulse media-sound/apulse[sdk] ) virtual/libudev:= x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 SRC_URI=https://github.com/ckb-next/ckb-next/archive/v0.6.2.tar.gz -> ckb-0.6.2.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1c69cb6727d4743fb7c681a5a6562d96 diff --git a/metadata/md5-cache/app-misc/ckb-9999 b/metadata/md5-cache/app-misc/ckb-9999 index 3f98fb7bfad7..ae99ff647656 100644 --- a/metadata/md5-cache/app-misc/ckb-9999 +++ b/metadata/md5-cache/app-misc/ckb-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=>=dev-libs/quazip-1.3-r2:=[qt6(+)] dev-qt/qtbase:6[dbus,gui,network,opengl,widgets] || ( media-libs/libpulse media-sound/apulse[sdk] ) virtual/libudev:= x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1c69cb6727d4743fb7c681a5a6562d96 diff --git a/metadata/md5-cache/app-misc/ddcutil-1.3.0 b/metadata/md5-cache/app-misc/ddcutil-1.3.0 index a66d5f05cb05..782d790d6175 100644 --- a/metadata/md5-cache/app-misc/ddcutil-1.3.0 +++ b/metadata/md5-cache/app-misc/ddcutil-1.3.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 sys-apps/i2c-tools virtual/udev drm? ( x11-libs/libdrm ) REQUIRED_USE=drm? ( X ) SLOT=0/4 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v1.3.0.tar.gz -> ddcutil-1.3.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=bf355772682397e14e23f61f02e7c933 diff --git a/metadata/md5-cache/app-misc/ddcutil-1.4.5 b/metadata/md5-cache/app-misc/ddcutil-1.4.5 index dc673c515332..08485983e69a 100644 --- a/metadata/md5-cache/app-misc/ddcutil-1.4.5 +++ b/metadata/md5-cache/app-misc/ddcutil-1.4.5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 sys-apps/i2c-tools virtual/udev drm? ( x11-libs/libdrm ) REQUIRED_USE=drm? ( X ) SLOT=0/4 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v1.4.5.tar.gz -> ddcutil-1.4.5.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9fd33ad4d516ffb68227241b8bda23de diff --git a/metadata/md5-cache/app-misc/ddcutil-2.1.4 b/metadata/md5-cache/app-misc/ddcutil-2.1.4 index d6333a16824f..470ab1912b64 100644 --- a/metadata/md5-cache/app-misc/ddcutil-2.1.4 +++ b/metadata/md5-cache/app-misc/ddcutil-2.1.4 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 >=dev-libs/jansson-2 sys-apps/i2c-tools virtual/udev drm REQUIRED_USE=drm? ( X ) SLOT=0/5 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v2.1.4.tar.gz -> ddcutil-2.1.4.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1fcf5a837ca4e5487d5dfd323a4cfda0 diff --git a/metadata/md5-cache/app-misc/ddcutil-2.2.0 b/metadata/md5-cache/app-misc/ddcutil-2.2.0 index cdc412055ee3..df42fbb9689f 100644 --- a/metadata/md5-cache/app-misc/ddcutil-2.2.0 +++ b/metadata/md5-cache/app-misc/ddcutil-2.2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-libs/jansson-2 sys-apps/i2c-tools virtual/udev x11-libs/libdrm usb-monitor? ( dev-libs/hidapi virtual/libusb:1 sys-apps/usbutils ) user-permissions? ( acct-group/i2c ) X? ( x11-libs/libXrandr x11-libs/libX11 ) SLOT=0/5 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v2.2.0.tar.gz -> ddcutil-2.2.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=22e20f2e6e7dc0c7b03130952a0106bd diff --git a/metadata/md5-cache/app-misc/ddcutil-2.2.5 b/metadata/md5-cache/app-misc/ddcutil-2.2.5 index 33c06abf0fe4..ce64e5c198c7 100644 --- a/metadata/md5-cache/app-misc/ddcutil-2.2.5 +++ b/metadata/md5-cache/app-misc/ddcutil-2.2.5 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-libs/jansson-2 sys-apps/i2c-tools virtual/udev x11-libs/libdrm usb-monitor? ( dev-libs/hidapi virtual/libusb:1 sys-apps/usbutils ) user-permissions? ( acct-group/i2c ) X? ( x11-libs/libXrandr x11-libs/libX11 ) SLOT=0/5 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v2.2.5.tar.gz -> ddcutil-2.2.5.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e625ed779b7da9575ab4f1e3c1147b04 diff --git a/metadata/md5-cache/app-misc/ddcutil-2.2.5-r1 b/metadata/md5-cache/app-misc/ddcutil-2.2.5-r1 index a677ed1eb8c3..45142a9bcf3b 100644 --- a/metadata/md5-cache/app-misc/ddcutil-2.2.5-r1 +++ b/metadata/md5-cache/app-misc/ddcutil-2.2.5-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-libs/jansson-2 sys-apps/i2c-tools virtual/udev x11-libs/libdrm usb-monitor? ( dev-libs/hidapi virtual/libusb:1 sys-apps/usbutils ) user-permissions? ( acct-group/i2c ) X? ( x11-libs/libXrandr x11-libs/libX11 ) SLOT=0/5 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v2.2.5.tar.gz -> ddcutil-2.2.5.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=96a4f59335f8b153b81d45aef9a15a81 diff --git a/metadata/md5-cache/app-misc/ddcutil-2.2.6 b/metadata/md5-cache/app-misc/ddcutil-2.2.6 index 004d39c34cff..d1bf062310da 100644 --- a/metadata/md5-cache/app-misc/ddcutil-2.2.6 +++ b/metadata/md5-cache/app-misc/ddcutil-2.2.6 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib:2 >=dev-libs/jansson-2 sys-apps/i2c-tools virtual/udev x11-libs/libdrm usb-monitor? ( dev-libs/hidapi virtual/libusb:1 sys-apps/usbutils ) user-permissions? ( acct-group/i2c ) X? ( x11-libs/libXrandr x11-libs/libX11 ) SLOT=0/5 SRC_URI=https://github.com/rockowitz/ddcutil/archive/v2.2.6.tar.gz -> ddcutil-2.2.6.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e625ed779b7da9575ab4f1e3c1147b04 diff --git a/metadata/md5-cache/app-misc/g810-led-0.4.2 b/metadata/md5-cache/app-misc/g810-led-0.4.2 index ad4c5b4d0758..7d2843ba0109 100644 --- a/metadata/md5-cache/app-misc/g810-led-0.4.2 +++ b/metadata/md5-cache/app-misc/g810-led-0.4.2 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=hidapi? ( dev-libs/hidapi:= ) !hidapi? ( virtual/libusb:= ) SLOT=0 SRC_URI=https://github.com/MatMoul/g810-led/archive/v0.4.2.tar.gz -> g810-led-0.4.2.tar.gz -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ad1a5c2bedc5b531ce65235a63ac8fa7 diff --git a/metadata/md5-cache/app-misc/graphlcd-base-2.0.3-r3 b/metadata/md5-cache/app-misc/graphlcd-base-2.0.3-r3 index 803ffb138080..34d68be8daf0 100644 --- a/metadata/md5-cache/app-misc/graphlcd-base-2.0.3-r3 +++ b/metadata/md5-cache/app-misc/graphlcd-base-2.0.3-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libhid net-libs/libvncserver freetype? ( media-libs/freetype:2= ) fontconfig? ( media-libs/fontconfig:1.0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:= ) graphicsmagick? ( media-gfx/graphicsmagick:0/1.3[cxx] ) ) lcd_devices_ax206dpf? ( virtual/libusb:0 ) lcd_devices_picolcd_256x64? ( virtual/libusb:0 ) SLOT=0 SRC_URI=https://github.com/M-Reimer/graphlcd-base/archive/refs/tags/2.0.3.tar.gz -> graphlcd-base-2.0.3.tar.gz -_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=bcec4238bd8ebf8c77c9daa7a8209622 diff --git a/metadata/md5-cache/app-misc/infnoise-0.3.3 b/metadata/md5-cache/app-misc/infnoise-0.3.3 index 0714723ecaf5..7b5f2a109dcf 100644 --- a/metadata/md5-cache/app-misc/infnoise-0.3.3 +++ b/metadata/md5-cache/app-misc/infnoise-0.3.3 @@ -10,5 +10,5 @@ LICENSE=CC0-1.0 RDEPEND=dev-embedded/libftdi SLOT=0 SRC_URI=https://github.com/leetronics/infnoise/archive/refs/tags/0.3.3.tar.gz -> infnoise-0.3.3.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b66464664a6b3f59044a8e87ffd54f8d diff --git a/metadata/md5-cache/app-misc/kloak-0.3.7_p1 b/metadata/md5-cache/app-misc/kloak-0.3.7_p1 index baba51b38cf2..e3427727338b 100644 --- a/metadata/md5-cache/app-misc/kloak-0.3.7_p1 +++ b/metadata/md5-cache/app-misc/kloak-0.3.7_p1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-libs/libevdev dev-libs/libsodium SLOT=0 SRC_URI=https://github.com/Whonix/kloak/archive/0.3.7-1.tar.gz -> kloak-0.3.7-1.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6d4c845e59dff82634dee75e08eea061 diff --git a/metadata/md5-cache/app-misc/kloak-9999 b/metadata/md5-cache/app-misc/kloak-9999 index be3f712f7007..b4cda0a1af43 100644 --- a/metadata/md5-cache/app-misc/kloak-9999 +++ b/metadata/md5-cache/app-misc/kloak-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=dev-libs/libevdev dev-libs/libsodium SLOT=0 -_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=938348fc3fc41c6765f4520c243c9795 diff --git a/metadata/md5-cache/app-misc/kryoflux-dtc-2.6-r3 b/metadata/md5-cache/app-misc/kryoflux-dtc-2.6-r3 index 7321f1a51878..4ffb063d2bea 100644 --- a/metadata/md5-cache/app-misc/kryoflux-dtc-2.6-r3 +++ b/metadata/md5-cache/app-misc/kryoflux-dtc-2.6-r3 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/spsdeclib virtual/libusb:1 virtual/udev gui? ( virtual/jre ) RESTRICT=bindist mirror SLOT=0 SRC_URI=https://www.kryoflux.com/download/kryoflux_2.6_linux.tar.bz2 gui? ( https://www.kryoflux.com/download/kryoflux_3.00_windows.zip ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b82ee86a64801117f89599f8be5558a9 diff --git a/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p2-r2 b/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p2-r2 index a621753d7ece..fe120c3793a6 100644 --- a/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p2-r2 +++ b/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p2-r2 @@ -11,5 +11,5 @@ RDEPEND=<dev-libs/libfmt-10 virtual/libusb:1 gui? ( virtual/jre ) RESTRICT=bindist mirror SLOT=0 SRC_URI=https://www.kryoflux.com/download/kryoflux_3.50_linux_2.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6a34249ffa68b5d88929b04a5d674f10 diff --git a/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p4 b/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p4 index c840d64fde84..8787d6ae513c 100644 --- a/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p4 +++ b/metadata/md5-cache/app-misc/kryoflux-dtc-3.50_p4 @@ -11,5 +11,5 @@ RDEPEND=virtual/libusb:1 gui? ( virtual/jre ) RESTRICT=bindist mirror SLOT=0 SRC_URI=https://www.kryoflux.com/download/kryoflux_3.50_linux_r4.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=3a79a385b0e09d30f1d7f1e61723210c diff --git a/metadata/md5-cache/app-misc/liquidctl-1.14.0 b/metadata/md5-cache/app-misc/liquidctl-1.14.0 index b454da791a2d..708a95104490 100644 --- a/metadata/md5-cache/app-misc/liquidctl-1.14.0 +++ b/metadata/md5-cache/app-misc/liquidctl-1.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/liquidctl/liquidctl/releases/download/v1.14.0/liquidctl-1.14.0.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8547a80d50f9332b3ef28ec8bbf0aad4 diff --git a/metadata/md5-cache/app-misc/liquidctl-1.15.0 b/metadata/md5-cache/app-misc/liquidctl-1.15.0 index b198a1f2669c..c21bed9ffeab 100644 --- a/metadata/md5-cache/app-misc/liquidctl-1.15.0 +++ b/metadata/md5-cache/app-misc/liquidctl-1.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/liquidctl/liquidctl/releases/download/v1.15.0/liquidctl-1.15.0.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=857c6cf5306b143c2d294a34866d1399 diff --git a/metadata/md5-cache/app-misc/ltunify-0.3 b/metadata/md5-cache/app-misc/ltunify-0.3 index 91a0e87519ce..02a7cbe206e3 100644 --- a/metadata/md5-cache/app-misc/ltunify-0.3 +++ b/metadata/md5-cache/app-misc/ltunify-0.3 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://git.lekensteyn.nl/ltunify/snapshot/ltunify-0.3.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4d77efd3689eaff22ec74bcf034fbed5 diff --git a/metadata/md5-cache/app-misc/media-player-info-24-r1 b/metadata/md5-cache/app-misc/media-player-info-24-r1 index b910fa9b968d..178c82aceeaa 100644 --- a/metadata/md5-cache/app-misc/media-player-info-24-r1 +++ b/metadata/md5-cache/app-misc/media-player-info-24-r1 @@ -11,5 +11,5 @@ RDEPEND=>=virtual/udev-208 RESTRICT=binchecks strip SLOT=0 SRC_URI=https://www.freedesktop.org/software/media-player-info/media-player-info-24.tar.gz -_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e2a42aeb40d1b37733cb25b6622429ef diff --git a/metadata/md5-cache/app-misc/openrgb-1.0_rc2 b/metadata/md5-cache/app-misc/openrgb-1.0_rc2 index b7bd1af57462..82ab633bfbf1 100644 --- a/metadata/md5-cache/app-misc/openrgb-1.0_rc2 +++ b/metadata/md5-cache/app-misc/openrgb-1.0_rc2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-cpp/cpp-httplib:= dev-libs/hidapi dev-qt/qtbase:6[gui,widgets] net-libs/mbedtls:0= virtual/libusb:1 SLOT=0/4 SRC_URI=https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_candidate_1.0rc2/OpenRGB-release_candidate_1.0rc2.tar.bz2 -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c flag-o-matic fd3558f73f6503093adee69adf41020d qmake-utils 28f99dba9219112f4785f46ed426a021 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c flag-o-matic fd3558f73f6503093adee69adf41020d qmake-utils 28f99dba9219112f4785f46ed426a021 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8c7bb11f9b2971bad6d308f6141c6663 diff --git a/metadata/md5-cache/app-misc/openrgb-9999 b/metadata/md5-cache/app-misc/openrgb-9999 index 89c2322750a5..befb1d7b8c55 100644 --- a/metadata/md5-cache/app-misc/openrgb-9999 +++ b/metadata/md5-cache/app-misc/openrgb-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-cpp/cpp-httplib:= dev-libs/hidapi dev-qt/qtbase:6[gui,widgets] net-libs/mbedtls:0= virtual/libusb:1 SLOT=0/4 -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 qmake-utils 28f99dba9219112f4785f46ed426a021 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 qmake-utils 28f99dba9219112f4785f46ed426a021 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8b6125b412a94938194db7effe5a35ca diff --git a/metadata/md5-cache/app-misc/prog-express-3.8.9 b/metadata/md5-cache/app-misc/prog-express-3.8.9 index 398a61fa3273..0cd7ac60f9e2 100644 --- a/metadata/md5-cache/app-misc/prog-express-3.8.9 +++ b/metadata/md5-cache/app-misc/prog-express-3.8.9 @@ -9,5 +9,5 @@ LICENSE=prog-express RDEPEND=dev-db/sqlite:3 dev-dotnet/libgdiplus dev-lang/mono dev-lang/mono-basic virtual/libusb:1 virtual/udev SLOT=0 SRC_URI=amd64? ( https://www.batronix.com/exe/Batronix/Prog-Express/deb/prog-express-3.8.9-1.amd64.deb ) x86? ( https://www.batronix.com/exe/Batronix/Prog-Express/deb/prog-express-3.8.9-1.i386.deb ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=5d6113fa2f03463de93ae9f79b32b9a7 diff --git a/metadata/md5-cache/app-misc/qlcplus-4.14.3 b/metadata/md5-cache/app-misc/qlcplus-4.14.3 index 24398b6b7791..369ec37a6769 100644 --- a/metadata/md5-cache/app-misc/qlcplus-4.14.3 +++ b/metadata/md5-cache/app-misc/qlcplus-4.14.3 @@ -13,5 +13,5 @@ RDEPEND=dev-embedded/libftdi:1 dev-qt/qtbase:6[gui,network,widgets] dev-qt/qtdec RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mcallegari/qlcplus/archive/QLC+_4.14.3.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=03608f715781aaddd255187f9de829f0 diff --git a/metadata/md5-cache/app-misc/razertool-0.0.7-r5 b/metadata/md5-cache/app-misc/razertool-0.0.7-r5 index ff8fafbf4d59..b0406b47e56a 100644 --- a/metadata/md5-cache/app-misc/razertool-0.0.7-r5 +++ b/metadata/md5-cache/app-misc/razertool-0.0.7-r5 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 virtual/libusb:0 virtual/udev gtk? ( dev-libs/atk >=gnome-base/librsvg-2.0 >=x11-libs/cairo-1.0.0 x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.8.0:2 ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/razertool/razertool_0.0.7.orig.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 desktop 26d57169ca094c04be416993844ec8bc gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 desktop 26d57169ca094c04be416993844ec8bc gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=23095ae80dd2b5d0cbae81d331c7208d diff --git a/metadata/md5-cache/app-misc/rioutil-1.5.4-r1 b/metadata/md5-cache/app-misc/rioutil-1.5.4-r1 index 4ff3290048df..cbd3ce88b60a 100644 --- a/metadata/md5-cache/app-misc/rioutil-1.5.4-r1 +++ b/metadata/md5-cache/app-misc/rioutil-1.5.4-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/hjelmn/rioutil/archive/v1.5.4.tar.gz -> rioutil-1.5.4.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=dadd54b7066162a8036d98a9a9246d0b diff --git a/metadata/md5-cache/app-misc/solaar-1.1.14-r1 b/metadata/md5-cache/app-misc/solaar-1.1.14-r1 index c8e3629dba38..39e3c247c8d8 100644 --- a/metadata/md5-cache/app-misc/solaar-1.1.14-r1 +++ b/metadata/md5-cache/app-misc/solaar-1.1.14-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/pwr-Solaar/Solaar/archive/1.1.14.tar.gz -> solaar-1.1.14.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a6ddb0499e6721187388c85e02ce0e60 diff --git a/metadata/md5-cache/app-misc/solaar-1.1.16 b/metadata/md5-cache/app-misc/solaar-1.1.16 index cb817df59f8e..c4a4357c6d4f 100644 --- a/metadata/md5-cache/app-misc/solaar-1.1.16 +++ b/metadata/md5-cache/app-misc/solaar-1.1.16 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/pwr-Solaar/Solaar/archive/1.1.16.tar.gz -> solaar-1.1.16.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e739094e411be655d93cfd4bbf03df8e diff --git a/metadata/md5-cache/app-misc/solaar-1.1.18 b/metadata/md5-cache/app-misc/solaar-1.1.18 index 2ea9c2c48887..42fde215b6ae 100644 --- a/metadata/md5-cache/app-misc/solaar-1.1.18 +++ b/metadata/md5-cache/app-misc/solaar-1.1.18 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/pwr-Solaar/Solaar/archive/1.1.18.tar.gz -> solaar-1.1.18.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8e01a7723693e9aa9ad620f17f8f8357 diff --git a/metadata/md5-cache/app-misc/solaar-1.1.19 b/metadata/md5-cache/app-misc/solaar-1.1.19 index 0e1a5b9ba401..9ace8b7aea1c 100644 --- a/metadata/md5-cache/app-misc/solaar-1.1.19 +++ b/metadata/md5-cache/app-misc/solaar-1.1.19 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/pwr-Solaar/Solaar/archive/1.1.19.tar.gz -> solaar-1.1.19.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8e01a7723693e9aa9ad620f17f8f8357 diff --git a/metadata/md5-cache/app-misc/solaar-9999 b/metadata/md5-cache/app-misc/solaar-9999 index ae6b98054901..73bdbb332c44 100644 --- a/metadata/md5-cache/app-misc/solaar-9999 +++ b/metadata/md5-cache/app-misc/solaar-9999 @@ -12,5 +12,5 @@ RDEPEND=acct-group/plugdev dev-python/evdev[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 ) !test? ( test ) SLOT=0 -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e739094e411be655d93cfd4bbf03df8e diff --git a/metadata/md5-cache/app-misc/spacenavd-1.2 b/metadata/md5-cache/app-misc/spacenavd-1.2 index 3a5e3868c2da..3328becaeb54 100644 --- a/metadata/md5-cache/app-misc/spacenavd-1.2 +++ b/metadata/md5-cache/app-misc/spacenavd-1.2 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=X? ( x11-apps/xdpyinfo x11-base/xorg-proto x11-libs/libX11 x11-libs/libXi x11-libs/libXtst ) SLOT=0 SRC_URI=https://github.com/FreeSpacenav/spacenavd/releases/download/v1.2/spacenavd-1.2.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=93418debf343c5df55753290ebb919c2 diff --git a/metadata/md5-cache/app-misc/spacenavd-1.3 b/metadata/md5-cache/app-misc/spacenavd-1.3 index 200b079fb43d..c03792c878ab 100644 --- a/metadata/md5-cache/app-misc/spacenavd-1.3 +++ b/metadata/md5-cache/app-misc/spacenavd-1.3 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=X? ( x11-apps/xdpyinfo x11-base/xorg-proto x11-libs/libX11 x11-libs/libXi x11-libs/libXtst ) SLOT=0 SRC_URI=https://github.com/FreeSpacenav/spacenavd/releases/download/v1.3/spacenavd-1.3.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=92b5b029a0094473d346865b26727054 diff --git a/metadata/md5-cache/app-misc/spacenavd-1.3-r1 b/metadata/md5-cache/app-misc/spacenavd-1.3-r1 index bee28eeb4a80..d039de85accd 100644 --- a/metadata/md5-cache/app-misc/spacenavd-1.3-r1 +++ b/metadata/md5-cache/app-misc/spacenavd-1.3-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=X? ( x11-apps/xdpyinfo x11-base/xorg-proto x11-libs/libX11 x11-libs/libXi x11-libs/libXtst ) SLOT=0 SRC_URI=https://github.com/FreeSpacenav/spacenavd/releases/download/v1.3/spacenavd-1.3.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c15f744f2acaff781458c05441f6f14b diff --git a/metadata/md5-cache/app-misc/spacenavd-1.3.1 b/metadata/md5-cache/app-misc/spacenavd-1.3.1 index 9be3bd3fe116..972c3faf7bb0 100644 --- a/metadata/md5-cache/app-misc/spacenavd-1.3.1 +++ b/metadata/md5-cache/app-misc/spacenavd-1.3.1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=X? ( x11-apps/xdpyinfo x11-base/xorg-proto x11-libs/libX11 x11-libs/libXi x11-libs/libXtst ) SLOT=0 SRC_URI=https://github.com/FreeSpacenav/spacenavd/releases/download/v1.3.1/spacenavd-1.3.1.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b6e4d971ae18f6b474d4f7a639bd9439 diff --git a/metadata/md5-cache/app-misc/wally-cli-2.0.1-r1 b/metadata/md5-cache/app-misc/wally-cli-2.0.1-r1 index ed37648f0662..48c69801f8a7 100644 --- a/metadata/md5-cache/app-misc/wally-cli-2.0.1-r1 +++ b/metadata/md5-cache/app-misc/wally-cli-2.0.1-r1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-4 MIT public-domain RDEPEND=acct-group/plugdev dev-libs/libusb:1 SLOT=0 SRC_URI=https://github.com/zsa/wally-cli/archive/refs/tags/2.0.1-linux.tar.gz -> wally-cli-2.0.1.tar.gz https://dev.gentoo.org/~ajak/dist/app-misc/wally-cli/wally-cli-2.0.1-deps.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ad524d77aebed559edf9de9888576012 diff --git a/metadata/md5-cache/app-mobilephone/flashlight-0.1.1-r3 b/metadata/md5-cache/app-mobilephone/flashlight-0.1.1-r3 index bb97930f368e..52b8b30a692d 100644 --- a/metadata/md5-cache/app-mobilephone/flashlight-0.1.1-r3 +++ b/metadata/md5-cache/app-mobilephone/flashlight-0.1.1-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/glib x11-libs/gtk+ SLOT=0 SRC_URI=https://gitlab.com/a-wai/flashlight/-/archive/f5feb4b3d17bbf16171d716bbb8e28f3a84542ef.tar.gz -> flashlight-0.1.1.tar.gz -_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b3ca70708f70523bd35f2f73e8e79bfb diff --git a/metadata/md5-cache/app-mobilephone/heimdall-2.2.2 b/metadata/md5-cache/app-mobilephone/heimdall-2.2.2 index 9c603592a92f..5d76a10aa9f3 100644 --- a/metadata/md5-cache/app-mobilephone/heimdall-2.2.2 +++ b/metadata/md5-cache/app-mobilephone/heimdall-2.2.2 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=virtual/zlib:= virtual/libusb:1= gui? ( dev-qt/qtbase:6[gui,widgets] ) SLOT=0 SRC_URI=https://git.sr.ht/~grimler/Heimdall/archive/v2.2.2.tar.gz -> heimdall-2.2.2.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0558f4b0a361b379ea48f464c2d35a9d diff --git a/metadata/md5-cache/app-mobilephone/pinephone-modem-scripts-0.20.8 b/metadata/md5-cache/app-mobilephone/pinephone-modem-scripts-0.20.8 index 25e250a1204b..57ef18ca40c6 100644 --- a/metadata/md5-cache/app-mobilephone/pinephone-modem-scripts-0.20.8 +++ b/metadata/md5-cache/app-mobilephone/pinephone-modem-scripts-0.20.8 @@ -8,5 +8,5 @@ KEYWORDS=~arm64 LICENSE=GPL-3 RDEPEND=net-dialup/atinout sci-geosciences/gpsd SLOT=0 -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=03025a1113858d2482fcfbc743eaa7d5 diff --git a/metadata/md5-cache/app-office/joplin-desktop-3.6.10 b/metadata/md5-cache/app-office/joplin-desktop-3.6.10 new file mode 100644 index 000000000000..2f71c267de52 --- /dev/null +++ b/metadata/md5-cache/app-office/joplin-desktop-3.6.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst prepare unpack +DESCRIPTION=Secure note taking and to-do app with synchronization capabilities +EAPI=8 +HOMEPAGE=https://joplinapp.org/ https://github.com/laurent22/joplin/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop xdg +KEYWORDS=-* ~amd64 +LICENSE=AGPL-3+ +RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-crypt/libsecret[crypt] app-misc/ca-certificates dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib || ( media-libs/libcanberra-gtk3 media-libs/libcanberra[gtk3(-)] ) media-libs/libglvnd media-libs/mesa net-misc/curl net-print/cups sys-apps/dbus virtual/zlib:= sys-process/lsof x11-libs/cairo x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libnotify x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXScrnSaver x11-libs/pango x11-misc/xdg-utils +RESTRICT=bindist splitdebug +SLOT=0 +SRC_URI=https://github.com/laurent22/joplin/releases/download/v3.6.10/Joplin-3.6.10.AppImage +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=38c81d5b518f87d296c8ae6593df996a diff --git a/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20231011 b/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20231011 index 5908293bd0ce..96da56467a21 100644 --- a/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20231011 +++ b/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20231011 @@ -11,5 +11,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) LGPL-2.1+ RDEPEND=acct-user/usbmux >=app-pda/libimobiledevice-1.3.0:= app-pda/libimobiledevice-glue:= >=app-pda/libplist-2.3:= virtual/libusb:1= virtual/udev selinux? ( sec-policy/selinux-usbmuxd ) systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=https://github.com/libimobiledevice/usbmuxd/archive/360619c5f721f93f0b9d8af1a2df0b926fbcf281.tar.gz -> usbmuxd-1.1.1_p20231011.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2d770c5b95e3fb5d1d5e29a13465286e diff --git a/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20240915 b/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20240915 index bc249d7a6f8f..5cc4000c1f19 100644 --- a/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20240915 +++ b/metadata/md5-cache/app-pda/usbmuxd-1.1.1_p20240915 @@ -11,5 +11,5 @@ LICENSE=|| ( GPL-2 GPL-3 ) LGPL-2.1+ RDEPEND=>=app-pda/libimobiledevice-1.3.0:= app-pda/libimobiledevice-glue:= >=app-pda/libplist-2.6:= virtual/libusb:1= acct-user/usbmux virtual/udev selinux? ( sec-policy/selinux-usbmuxd ) systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=https://github.com/libimobiledevice/usbmuxd/archive/0b1b233b57d581515978a09e5a4394bfa4ee4962.tar.gz -> usbmuxd-1.1.1_p20240915.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c70995b114ce311681a095af6d8b8c9c diff --git a/metadata/md5-cache/app-portage/getuto-1.16 b/metadata/md5-cache/app-portage/getuto-1.19.1 index 2c1ced55dd0d..01b7f2f2790b 100644 --- a/metadata/md5-cache/app-portage/getuto-1.16 +++ b/metadata/md5-cache/app-portage/getuto-1.19.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/gnupg !libressl? ( dev-libs/openssl ) libressl? ( dev-libs/libressl ) sec-keys/openpgp-keys-gentoo-release sys-apps/gentoo-functions RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/projg2/getuto/archive/refs/tags/getuto-1.16.tar.gz test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar ) +SRC_URI=https://github.com/projg2/getuto/archive/refs/tags/getuto-1.19.1.tar.gz test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar ) _md5_=f69c33e2ba2b17d00b87742dcffa3fc6 diff --git a/metadata/md5-cache/app-text/texlive-2024 b/metadata/md5-cache/app-text/texlive-2024 index 865a0f7d4a77..20dae4697652 100644 --- a/metadata/md5-cache/app-text/texlive-2024 +++ b/metadata/md5-cache/app-text/texlive-2024 @@ -3,8 +3,8 @@ DESCRIPTION=A complete TeX distribution EAPI=8 HOMEPAGE=https://tug.org/texlive/ IUSE=cjk context extra games graphics humanities luatex metapost music pdfannotextractor png pstricks publishers science tex4ht texi2html truetype xetex xml X l10n_af l10n_ar l10n_as l10n_bg l10n_bn l10n_br l10n_ca l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ko l10n_kn l10n_la l10n_lo l10n_lt l10n_lv l10n_ml l10n_mn l10n_mr l10n_nb l10n_nl l10n_nn l10n_no l10n_or l10n_pa l10n_pl l10n_pt l10n_rm l10n_ro l10n_ru l10n_sa l10n_sco l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tk l10n_tr l10n_uk l10n_vi l10n_zh -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=metapackage RDEPEND=>=app-text/texlive-core-2024 app-text/psutils >=dev-texlive/texlive-fontutils-2024 media-gfx/sam2p texi2html? ( app-text/texi2html ) sys-apps/texinfo app-text/t1utils >=app-text/lcdf-typetools-2.92[kpathsea] truetype? ( >=app-text/ttf2pk2-2.0_p20240311 ) app-text/ps2eps png? ( app-text/dvipng ) X? ( >=app-text/xdvik-22.87 ) >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-fontsrecommended-2024 >=dev-texlive/texlive-latex-2024 luatex? ( >=dev-texlive/texlive-luatex-2024 ) >=dev-texlive/texlive-latexrecommended-2024 metapost? ( >=dev-texlive/texlive-metapost-2024 ) >=dev-texlive/texlive-plaingeneric-2024 pdfannotextractor? ( dev-tex/pdfannotextractor ) extra? ( >=dev-texlive/texlive-bibtexextra-2024 >=dev-texlive/texlive-binextra-2024 >=dev-texlive/texlive-fontsextra-2024 >=dev-texlive/texlive-formatsextra-2024 >=dev-texlive/texlive-latexextra-2024 ) xetex? ( >=dev-texlive/texlive-xetex-2024 ) graphics? ( >=dev-texlive/texlive-pictures-2024 ) science? ( >=dev-texlive/texlive-mathscience-2024 ) publishers? ( >=dev-texlive/texlive-publishers-2024 ) music? ( >=dev-texlive/texlive-music-2024 ) pstricks? ( >=dev-texlive/texlive-pstricks-2024 ) context? ( >=dev-texlive/texlive-context-2024 ) games? ( >=dev-texlive/texlive-games-2024 ) humanities? ( >=dev-texlive/texlive-humanities-2024 ) tex4ht? ( >=dev-tex/tex4ht-20240311_p72882 ) xml? ( >=dev-texlive/texlive-formatsextra-2024 ) l10n_af? ( >=dev-texlive/texlive-langother-2024 ) l10n_ar? ( >=dev-texlive/texlive-langarabic-2024 ) l10n_fa? ( >=dev-texlive/texlive-langarabic-2024 ) l10n_hy? ( >=dev-texlive/texlive-langeuropean-2024 ) cjk? ( >=dev-texlive/texlive-langcjk-2024 ) l10n_hr? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_bg? ( >=dev-texlive/texlive-langcyrillic-2024 ) l10n_br? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_ru? ( >=dev-texlive/texlive-langcyrillic-2024 ) l10n_uk? ( >=dev-texlive/texlive-langcyrillic-2024 ) l10n_cs? ( >=dev-texlive/texlive-langczechslovak-2024 ) l10n_sk? ( >=dev-texlive/texlive-langczechslovak-2024 ) l10n_da? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_nl? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_en? ( >=dev-texlive/texlive-langenglish-2024 ) l10n_fi? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_eu? ( >=dev-texlive/texlive-langfrench-2024 ) l10n_fr? ( >=dev-texlive/texlive-langfrench-2024 ) l10n_de? ( >=dev-texlive/texlive-langgerman-2024 ) l10n_el? ( >=dev-texlive/texlive-langgreek-2024 ) l10n_he? ( >=dev-texlive/texlive-langother-2024 ) l10n_hu? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_as? ( >=dev-texlive/texlive-langother-2024 ) l10n_bn? ( >=dev-texlive/texlive-langother-2024 ) l10n_gu? ( >=dev-texlive/texlive-langother-2024 ) l10n_hi? ( >=dev-texlive/texlive-langother-2024 ) l10n_kn? ( >=dev-texlive/texlive-langother-2024 ) l10n_ml? ( >=dev-texlive/texlive-langother-2024 ) l10n_mr? ( >=dev-texlive/texlive-langother-2024 ) l10n_or? ( >=dev-texlive/texlive-langother-2024 ) l10n_pa? ( >=dev-texlive/texlive-langother-2024 ) l10n_sa? ( >=dev-texlive/texlive-langother-2024 ) l10n_ta? ( >=dev-texlive/texlive-langother-2024 ) l10n_te? ( >=dev-texlive/texlive-langother-2024 ) l10n_it? ( >=dev-texlive/texlive-langitalian-2024 ) l10n_ja? ( >=dev-texlive/texlive-langjapanese-2024 ) l10n_ko? ( >=dev-texlive/texlive-langkorean-2024 ) l10n_la? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_lt? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_lv? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_mn? ( >=dev-texlive/texlive-langcyrillic-2024 ) l10n_nb? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_nn? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_no? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_cy? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_eo? ( >=dev-texlive/texlive-langother-2024 ) l10n_et? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_ga? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_rm? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_hsb? ( >=dev-texlive/texlive-langother-2024 ) l10n_ia? ( >=dev-texlive/texlive-langother-2024 ) l10n_id? ( >=dev-texlive/texlive-langother-2024 ) l10n_is? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_lo? ( >=dev-texlive/texlive-langother-2024 ) l10n_ro? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_sq? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_sr? ( >=dev-texlive/texlive-langeuropean-2024 >=dev-texlive/texlive-langcyrillic-2024 ) l10n_sl? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_tr? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_pl? ( >=dev-texlive/texlive-langpolish-2024 ) l10n_pt? ( >=dev-texlive/texlive-langportuguese-2024 ) l10n_ca? ( >=dev-texlive/texlive-langspanish-2024 ) l10n_gl? ( >=dev-texlive/texlive-langspanish-2024 ) l10n_es? ( >=dev-texlive/texlive-langspanish-2024 ) l10n_sco? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_sv? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_tk? ( >=dev-texlive/texlive-langeuropean-2024 ) l10n_vi? ( >=dev-texlive/texlive-langother-2024 ) l10n_zh? ( >=dev-texlive/texlive-langchinese-2024 ) SLOT=0 -_md5_=d4d986b160246099649a8a389e73042c +_md5_=d2c7f9b6956f21235dab6d0a7213528f diff --git a/metadata/md5-cache/app-text/texlive-core-2024-r2 b/metadata/md5-cache/app-text/texlive-core-2024-r2 index 7d8c57089fb0..e4ca2a9063c3 100644 --- a/metadata/md5-cache/app-text/texlive-core-2024-r2 +++ b/metadata/md5-cache/app-text/texlive-core-2024-r2 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://tug.org/texlive/ INHERIT=branding flag-o-matic toolchain-funcs libtool texlive-common IUSE=cjk X doc source tk +luajittex xetex xindy -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD CC-BY-SA-4.0 GPL-1+ GPL-2 GPL-2+ GPL-3+ MIT TeX-other-free RDEPEND=X? ( x11-libs/libX11 x11-libs/libXmu ) sci-libs/mpfi virtual/zlib:= >=media-libs/harfbuzz-1.4.5:=[icu,graphite] >=media-libs/libpng-1.2.43-r2:0= media-libs/gd[png] media-gfx/graphite2:= media-gfx/potrace:= >=x11-libs/cairo-1.12 >=x11-libs/pixman-0.18 dev-libs/zziplib:= app-text/libpaper:= dev-libs/gmp:= dev-libs/mpfr:= >=dev-libs/ptexenc-1.4.6 xetex? ( >=app-text/teckit-2.5.10 media-libs/fontconfig ) xindy? ( dev-lisp/clisp:= ) media-libs/freetype:2 >=dev-libs/icu-50:= >=dev-libs/kpathsea-6.4.0:= virtual/perl-Getopt-Long dev-perl/File-HomeDir dev-perl/Log-Dispatch dev-perl/Unicode-LineBreak dev-perl/YAML-Tiny tk? ( dev-lang/tk dev-perl/Tk ) !<dev-texlive/texlive-basic-2023 !<dev-texlive/texlive-mathscience-2023 !<dev-texlive/texlive-langother-2023 !<dev-texlive/texlive-music-2023 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/Source/texlive-20240311-source.tar.xz https://gitweb.gentoo.org/proj/tex-patches.git/snapshot/tex-patches-6.tar.bz2 -> gentoo-tex-patches-6.tar.bz2 https://bugs.gentoo.org/attachment.cgi?id=908573 -> texlive-core-2023-mplib-h.patch https://github.com/TeX-Live/texlive-source/commit/aec02cd7402652f00460b47a73db0e46e9fb48aa.patch -> texlive-core-2024-remove-call-to-undefined-MPFI_CONFIGS.patch https://mirrors.ctan.org/systems/texlive/tlnet/archive/autosp.r69814.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/axodraw2.r58155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chktex.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/detex.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvi2tty.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvidvi.r65952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviljk.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvipdfmx.r72890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvipos.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extractbb.r72890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gsftopk.r52851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-base.r70247.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lacheck.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/m-tx.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeindex.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmx.r65926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdoctk.r62186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-scripts.r72904.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-scripts-extra.r71746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive.infra.r72854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tpic2pdftex.r52851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upmendex.r66381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/velthuis.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vlna.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xindy.r65958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xml2pmx.r57972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autosp.r69814.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axodraw2.r58155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chktex.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/detex.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvi2tty.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvidvi.r65952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviljk.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvipdfmx.r72890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvipos.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extractbb.r72890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gsftopk.r52851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-base.r70247.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lacheck.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/m-tx.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeindex.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmx.r65926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdoctk.r62186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-scripts.r72904.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-scripts-extra.r71746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive.infra.r72854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tpic2pdftex.r52851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upmendex.r66381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/velthuis.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vlna.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xindy.r65958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xml2pmx.r57972.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/autosp.doc.r69814.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/axodraw2.doc.r58155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chktex.doc.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/detex.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvi2tty.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvidvi.doc.r65952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviljk.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvipdfmx.doc.r72890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvipos.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extractbb.doc.r72890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gsftopk.doc.r52851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lacheck.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/m-tx.doc.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeindex.doc.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmx.doc.r65926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdoctk.doc.r62186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-scripts.doc.r72904.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-scripts-extra.doc.r71746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive.infra.doc.r72854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tpic2pdftex.doc.r52851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upmendex.doc.r66381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/velthuis.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vlna.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xindy.doc.r65958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xml2pmx.doc.r57972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autosp.doc.r69814.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axodraw2.doc.r58155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chktex.doc.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/detex.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvi2tty.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvidvi.doc.r65952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviljk.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvipdfmx.doc.r72890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvipos.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extractbb.doc.r72890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gsftopk.doc.r52851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lacheck.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/m-tx.doc.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeindex.doc.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmx.doc.r65926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdoctk.doc.r62186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-scripts.doc.r72904.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-scripts-extra.doc.r71746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive.infra.doc.r72854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tpic2pdftex.doc.r52851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upmendex.doc.r66381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/velthuis.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vlna.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xindy.doc.r65958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xml2pmx.doc.r57972.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/axodraw2.source.r58155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axodraw2.source.r58155.tar.xz ) _eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d libtool 6a96cd90e5da8c7c615015479f46f1a4 texlive-common 2c70ed981525ed068beb038b87db7d10 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=787410840640e0d80ea370dda64f2efb +_md5_=8fb61c06bb7ab0200de9e2937275b71f diff --git a/metadata/md5-cache/dev-build/bazelisk-1.27.0 b/metadata/md5-cache/dev-build/bazelisk-1.27.0 deleted file mode 100644 index af3d0b9150c5..000000000000 --- a/metadata/md5-cache/dev-build/bazelisk-1.27.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.20:= app-arch/unzip -DEFINED_PHASES=compile install unpack -DESCRIPTION=A user-friendly launcher for Bazel written in Go -EAPI=8 -HOMEPAGE=https://github.com/bazelbuild/bazelisk/ -INHERIT=go-module -IUSE=+bazel-symlink -KEYWORDS=amd64 arm64 -LICENSE=Apache-2.0 -SLOT=0 -SRC_URI=https://github.com/bazelbuild/bazelisk/archive/refs/tags/v1.27.0.tar.gz -> bazelisk-1.27.0.gh.tar.gz https://dev.gentoo.org/~xgqt/distfiles/deps/bazelisk-1.27.0-deps.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=f80705c9c2e8bcd041c6131ec32e89d3 diff --git a/metadata/md5-cache/dev-build/guildmaster-0_pre20250712 b/metadata/md5-cache/dev-build/guildmaster-0_pre20250712 index 810dd52fffe5..95d06741c331 100644 --- a/metadata/md5-cache/dev-build/guildmaster-0_pre20250712 +++ b/metadata/md5-cache/dev-build/guildmaster-0_pre20250712 @@ -10,5 +10,5 @@ LICENSE=ISC RDEPEND=sys-fs/fuse:3= SLOT=0 SRC_URI=https://codeberg.org/amonakov/guildmaster/archive/463382ba5b47625a9355832cd792a164c54237f9.tar.gz -> guildmaster-463382ba5b47625a9355832cd792a164c54237f9.cb.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2305d58a73464800ba4fd4fe329b46a4 diff --git a/metadata/md5-cache/dev-build/guildmaster-9999 b/metadata/md5-cache/dev-build/guildmaster-9999 index f0740635d10d..dcee3f88bfc8 100644 --- a/metadata/md5-cache/dev-build/guildmaster-9999 +++ b/metadata/md5-cache/dev-build/guildmaster-9999 @@ -9,5 +9,5 @@ LICENSE=ISC PROPERTIES=live RDEPEND=sys-fs/fuse:3= SLOT=0 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2305d58a73464800ba4fd4fe329b46a4 diff --git a/metadata/md5-cache/dev-build/steve-1.5.0 b/metadata/md5-cache/dev-build/steve-1.5.0 index a481875de11e..bfec16cb8e63 100644 --- a/metadata/md5-cache/dev-build/steve-1.5.0 +++ b/metadata/md5-cache/dev-build/steve-1.5.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libevent:= sys-fs/fuse:3= acct-group/jobserver acct-user/steve RESTRICT=test SLOT=0 SRC_URI=https://dev.gentoo.org/~mgorny/dist/steve-1.5.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=979e6e71bf1c4dea1bff04b0d2b3e69a diff --git a/metadata/md5-cache/dev-build/steve-9999 b/metadata/md5-cache/dev-build/steve-9999 index 2302b774fd3c..3cee0bb81db4 100644 --- a/metadata/md5-cache/dev-build/steve-9999 +++ b/metadata/md5-cache/dev-build/steve-9999 @@ -11,5 +11,5 @@ PROPERTIES=test? ( test_privileged ) live RDEPEND=dev-libs/libevent:= sys-fs/fuse:3= acct-group/jobserver acct-user/steve >=sys-fs/fuse-common-3.10.4-r2 RESTRICT=test SLOT=0 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1ac57eab404d4f53c3124a254dd1acc0 diff --git a/metadata/md5-cache/dev-db/sqlcipher-4.13.0 b/metadata/md5-cache/dev-db/sqlcipher-4.15.0 index 33029a9704db..3ec331d555bf 100644 --- a/metadata/md5-cache/dev-db/sqlcipher-4.13.0 +++ b/metadata/md5-cache/dev-db/sqlcipher-4.15.0 @@ -12,6 +12,6 @@ RDEPEND=!libressl? ( >=dev-libs/openssl-3.0:= ) libressl? ( dev-libs/libressl:= REQUIRED_USE=?? ( libedit readline ) test? ( tcl ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/sqlcipher/sqlcipher/archive/v4.13.0.tar.gz -> sqlcipher-4.13.0.tar.gz +SRC_URI=https://github.com/sqlcipher/sqlcipher/archive/v4.15.0.tar.gz -> sqlcipher-4.15.0.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 _md5_=e011c6680e5735c5f6d5204498b5af25 diff --git a/metadata/md5-cache/dev-debug/dtrace-2.0.6 b/metadata/md5-cache/dev-debug/dtrace-2.0.6 index e81a3f780a64..2468b6083ea1 100644 --- a/metadata/md5-cache/dev-debug/dtrace-2.0.6 +++ b/metadata/md5-cache/dev-debug/dtrace-2.0.6 @@ -11,5 +11,5 @@ LICENSE=UPL-1.0 RDEPEND=dev-libs/elfutils dev-libs/libbpf dev-libs/libpfm:= net-analyzer/wireshark[dumpcap] net-libs/libpcap >=sys-fs/fuse-3.2.0:3= >=sys-libs/binutils-libs-2.42:= virtual/zlib:= !dev-debug/systemtap[dtrace-symlink(+)] net-analyzer/wireshark test-install? ( app-alternatives/bc app-editors/vim-core dev-build/make dev-lang/perl dev-util/perf net-fs/nfs-utils sys-apps/coreutils sys-fs/xfsprogs sys-process/time virtual/jdk ) SLOT=0 SRC_URI=https://github.com/oracle/dtrace/archive/refs/tags/2.0.6.tar.gz -> dtrace-2.0.6.tar.gz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=657922e5aa61a12f57c1df3930467298 diff --git a/metadata/md5-cache/dev-debug/dtrace-9999 b/metadata/md5-cache/dev-debug/dtrace-9999 index edf3487063d8..62108ecae0c2 100644 --- a/metadata/md5-cache/dev-debug/dtrace-9999 +++ b/metadata/md5-cache/dev-debug/dtrace-9999 @@ -10,5 +10,5 @@ LICENSE=UPL-1.0 PROPERTIES=live RDEPEND=dev-libs/elfutils dev-libs/libbpf dev-libs/libpfm:= net-analyzer/wireshark[dumpcap] net-libs/libpcap >=sys-fs/fuse-3.2.0:3= >=sys-libs/binutils-libs-2.42:= virtual/zlib:= !dev-debug/systemtap[dtrace-symlink(+)] net-analyzer/wireshark test-install? ( app-alternatives/bc app-editors/vim-core dev-build/make dev-lang/perl dev-util/perf net-fs/nfs-utils sys-apps/coreutils sys-fs/xfsprogs sys-process/time virtual/jdk ) SLOT=0 -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6940bd1b0e0c1dd1277f5758f2ad9c22 diff --git a/metadata/md5-cache/dev-embedded/dfu-programmer-1.1.0 b/metadata/md5-cache/dev-embedded/dfu-programmer-1.1.0 index a60090a0eda8..73aff1f46627 100644 --- a/metadata/md5-cache/dev-embedded/dfu-programmer-1.1.0 +++ b/metadata/md5-cache/dev-embedded/dfu-programmer-1.1.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=acct-group/plugdev virtual/libusb:1 virtual/udev SLOT=0 SRC_URI=https://github.com/dfu-programmer/dfu-programmer/archive/refs/tags/v1.1.0.tar.gz -> dfu-programmer-1.1.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=008cba10d865724035ebcac3163b13f7 diff --git a/metadata/md5-cache/dev-embedded/imsprog-1.8.3 b/metadata/md5-cache/dev-embedded/imsprog-1.8.3 index e81ee3597658..f00a258762dc 100644 --- a/metadata/md5-cache/dev-embedded/imsprog-1.8.3 +++ b/metadata/md5-cache/dev-embedded/imsprog-1.8.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libusb dev-qt/qtwidgets dev-qt/qtnetwork SLOT=0 SRC_URI=https://github.com/bigbigmdm/IMSProg/archive/refs/tags/v1.8.3.tar.gz -> imsprog-1.8.3.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=56fd855442e0e7e47631d70c73618e13 diff --git a/metadata/md5-cache/dev-embedded/imsprog-1.8.3-r1 b/metadata/md5-cache/dev-embedded/imsprog-1.8.3-r1 index 3f611fde5bfe..866108a9b980 100644 --- a/metadata/md5-cache/dev-embedded/imsprog-1.8.3-r1 +++ b/metadata/md5-cache/dev-embedded/imsprog-1.8.3-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libusb dev-qt/qtwidgets dev-qt/qtnetwork SLOT=0 SRC_URI=https://github.com/bigbigmdm/IMSProg/archive/refs/tags/v1.8.3.tar.gz -> imsprog-1.8.3.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d176e31165f22e00df70542ac865d37f diff --git a/metadata/md5-cache/dev-embedded/libjaylink-0.3.1 b/metadata/md5-cache/dev-embedded/libjaylink-0.3.1 index ab061a3fb95c..647c2fe4ab2a 100644 --- a/metadata/md5-cache/dev-embedded/libjaylink-0.3.1 +++ b/metadata/md5-cache/dev-embedded/libjaylink-0.3.1 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/libusb:1 SLOT=0 SRC_URI=https://gitlab.zapb.de/libjaylink/libjaylink/-/archive/0.3.1/libjaylink-0.3.1.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=962876c2ba1c7cd42d496fe70419b54a diff --git a/metadata/md5-cache/dev-embedded/minipro-0.7.3 b/metadata/md5-cache/dev-embedded/minipro-0.7.3 index 2c23a144d530..219a9e37b706 100644 --- a/metadata/md5-cache/dev-embedded/minipro-0.7.3 +++ b/metadata/md5-cache/dev-embedded/minipro-0.7.3 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=virtual/libusb:= SLOT=0 SRC_URI=https://gitlab.com/DavidGriffith/minipro/-/archive/0.7.3/minipro-0.7.3.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=647563ad64d3cbc8afb8853ffcf62eb4 diff --git a/metadata/md5-cache/dev-embedded/minipro-0.7.4 b/metadata/md5-cache/dev-embedded/minipro-0.7.4 index 10bd3afff222..4880cb04f47a 100644 --- a/metadata/md5-cache/dev-embedded/minipro-0.7.4 +++ b/metadata/md5-cache/dev-embedded/minipro-0.7.4 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=virtual/libusb:= SLOT=0 SRC_URI=https://gitlab.com/DavidGriffith/minipro/-/archive/0.7.4/minipro-0.7.4.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1cc6f43a1ee14dc316f700a4a487a385 diff --git a/metadata/md5-cache/dev-embedded/minipro-9999 b/metadata/md5-cache/dev-embedded/minipro-9999 index ed83025ccb67..66bafa1b08a6 100644 --- a/metadata/md5-cache/dev-embedded/minipro-9999 +++ b/metadata/md5-cache/dev-embedded/minipro-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=virtual/libusb:= SLOT=0 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=633a84ca3fb263381a2c3dd76ba13618 diff --git a/metadata/md5-cache/dev-embedded/openocd-0.12.0-r1 b/metadata/md5-cache/dev-embedded/openocd-0.12.0-r1 index c6f936930ae3..ac5f49a41a8b 100644 --- a/metadata/md5-cache/dev-embedded/openocd-0.12.0-r1 +++ b/metadata/md5-cache/dev-embedded/openocd-0.12.0-r1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/plugdev >=dev-lang/jimtcl-0.81:= dev-libs/libgpiod:0/2 capsto RESTRICT=strip SLOT=0 SRC_URI=https://downloads.sourceforge.net/project/openocd/openocd/0.12.0/openocd-0.12.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=028a90ee6477030e98137e9cdda358bb diff --git a/metadata/md5-cache/dev-embedded/openocd-0.12.0-r2 b/metadata/md5-cache/dev-embedded/openocd-0.12.0-r2 index fc116ee62ffb..10db54bd74ed 100644 --- a/metadata/md5-cache/dev-embedded/openocd-0.12.0-r2 +++ b/metadata/md5-cache/dev-embedded/openocd-0.12.0-r2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/plugdev >=dev-lang/jimtcl-0.81:= gpiod? ( dev-libs/libgpiod:0 RESTRICT=strip SLOT=0 SRC_URI=https://downloads.sourceforge.net/project/openocd/openocd/0.12.0/openocd-0.12.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b9dd1a4e0480709f052f37a53a2e75d1 diff --git a/metadata/md5-cache/dev-embedded/openocd-9999 b/metadata/md5-cache/dev-embedded/openocd-9999 index 5c65ec417994..3b17bf790c2b 100644 --- a/metadata/md5-cache/dev-embedded/openocd-9999 +++ b/metadata/md5-cache/dev-embedded/openocd-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=acct-group/plugdev >=dev-lang/jimtcl-0.81:= gpiod? ( dev-libs/libgpiod:0/2 ) capstone? ( dev-libs/capstone ) cmsis-dap? ( dev-libs/hidapi ) jlink? ( >=dev-embedded/libjaylink-0.2.0 ) usb? ( virtual/libusb:1 ) ftdi? ( dev-embedded/libftdi:= ) RESTRICT=strip SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=69dbaea867f28e921a45fcfc0bc45d91 diff --git a/metadata/md5-cache/dev-embedded/platformio-6.1.19-r1 b/metadata/md5-cache/dev-embedded/platformio-6.1.19-r1 index f741be5ec6ca..e089425ac127 100644 --- a/metadata/md5-cache/dev-embedded/platformio-6.1.19-r1 +++ b/metadata/md5-cache/dev-embedded/platformio-6.1.19-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/platformio/platformio-core/archive/refs/tags/v6.1.19.tar.gz -> platformio-6.1.19.gh.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f5b208faea63be7e1341b223d36c91f7 diff --git a/metadata/md5-cache/dev-embedded/ponyprog-3.1.4_p20250501 b/metadata/md5-cache/dev-embedded/ponyprog-3.1.4_p20250501 index 0551b838a85c..8252b2f3778f 100644 --- a/metadata/md5-cache/dev-embedded/ponyprog-3.1.4_p20250501 +++ b/metadata/md5-cache/dev-embedded/ponyprog-3.1.4_p20250501 @@ -10,5 +10,5 @@ LICENSE=LGPL-2 RDEPEND=>=app-editors/qhexedit2-0.8.10 <app-editors/qhexedit2-0.9.0 dev-embedded/libftdi:1[cxx] dev-qt/qtbase:6[gui,widgets] dev-qt/qtmultimedia:6 virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/lancos/ponyprog/archive/5a4ef795b297ed1eaf6b4d4e71b3ce7a1bb63481.tar.gz -> ponyprog-3.1.4_p20250501.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2f0caabf89e50fcc48a5e9ce5a36665f diff --git a/metadata/md5-cache/dev-embedded/rpi-openocd-9999 b/metadata/md5-cache/dev-embedded/rpi-openocd-9999 index 35d319ac85b0..95cc5cdf9e06 100644 --- a/metadata/md5-cache/dev-embedded/rpi-openocd-9999 +++ b/metadata/md5-cache/dev-embedded/rpi-openocd-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=acct-group/plugdev >=dev-lang/jimtcl-0.79 capstone? ( dev-libs/capstone ) cmsis-dap? ( dev-libs/hidapi ) ftdi? ( dev-embedded/libftdi:= ) gpiod? ( dev-libs/libgpiod:0/2 ) jlink? ( >=dev-embedded/libjaylink-0.2.0 ) usb? ( virtual/libusb:1 ) RESTRICT=strip SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d5db1b5e8aa8713f2cc75d73daf5384d diff --git a/metadata/md5-cache/dev-embedded/stlink-1.8.0 b/metadata/md5-cache/dev-embedded/stlink-1.8.0 index 45e414ce82c0..5ad6011f4f35 100644 --- a/metadata/md5-cache/dev-embedded/stlink-1.8.0 +++ b/metadata/md5-cache/dev-embedded/stlink-1.8.0 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 SLOT=0 SRC_URI=https://github.com/texane/stlink/archive/v1.8.0.tar.gz -> stlink-1.8.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c554c87851524a368200cc6b80983a0b diff --git a/metadata/md5-cache/dev-embedded/stlink-9999 b/metadata/md5-cache/dev-embedded/stlink-9999 index e25ec6f08264..6cdbdbcc9e84 100644 --- a/metadata/md5-cache/dev-embedded/stlink-9999 +++ b/metadata/md5-cache/dev-embedded/stlink-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ef131998eefac5e16d0e1bf725d53903 diff --git a/metadata/md5-cache/dev-lang/crystal-1.20.0 b/metadata/md5-cache/dev-lang/crystal-1.20.0-r1 index 678b67077196..e8ed254497cd 100644 --- a/metadata/md5-cache/dev-lang/crystal-1.20.0 +++ b/metadata/md5-cache/dev-lang/crystal-1.20.0-r1 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/crystal-lang/crystal/archive/1.20.0.tar.gz -> crystal-1.20.0.gh.tar.gz amd64? ( https://github.com/crystal-lang/crystal/releases/download/1.20.0/crystal-1.20.0-1-linux-x86_64.tar.gz ) _eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 llvm-r2 8bc46809768366b4239eab39335419bc llvm-utils e7edb4086e31c8537574b263d899f826 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=0e26239dd33143528ef74ee717bbf618 +_md5_=cfc0259d7d8e197d87f8566d26cea5f2 diff --git a/metadata/md5-cache/dev-lang/crystal-1.20.1 b/metadata/md5-cache/dev-lang/crystal-1.20.1 new file mode 100644 index 000000000000..f4a0dc429a91 --- /dev/null +++ b/metadata/md5-cache/dev-lang/crystal-1.20.1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-libs/boehm-gc:=[threads] dev-libs/gmp:= dev-libs/libatomic_ops:= dev-libs/libevent:= dev-libs/libpcre2:=[unicode] dev-libs/libxml2:= dev-libs/libyaml dev-libs/pcl:= llvm_slot_19? ( llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/llvm:21= ) llvm-libunwind? ( llvm-runtimes/libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) +DESCRIPTION=The Crystal Programming Language +EAPI=8 +HOMEPAGE=https://crystal-lang.org/ https://github.com/crystal-lang/crystal/ +INHERIT=llvm-r2 multiprocessing shell-completion toolchain-funcs +IUSE=doc debug llvm-libunwind +llvm_slot_21 llvm_slot_19 llvm_slot_20 +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=dev-libs/boehm-gc:=[threads] dev-libs/gmp:= dev-libs/libatomic_ops:= dev-libs/libevent:= dev-libs/libpcre2:=[unicode] dev-libs/libxml2:= dev-libs/libyaml dev-libs/pcl:= llvm_slot_19? ( llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/llvm:21= ) llvm-libunwind? ( llvm-runtimes/libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) +REQUIRED_USE=^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/crystal-lang/crystal/archive/1.20.1.tar.gz -> crystal-1.20.1.gh.tar.gz amd64? ( https://github.com/crystal-lang/crystal/releases/download/1.20.1/crystal-1.20.1-1-linux-x86_64.tar.gz ) +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 llvm-r2 8bc46809768366b4239eab39335419bc llvm-utils e7edb4086e31c8537574b263d899f826 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=cfc0259d7d8e197d87f8566d26cea5f2 diff --git a/metadata/md5-cache/dev-libs/c-blosc2-3.0.0 b/metadata/md5-cache/dev-libs/c-blosc2-3.0.0 deleted file mode 100644 index 21b92f6e1b50..000000000000 --- a/metadata/md5-cache/dev-libs/c-blosc2-3.0.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=>=app-arch/lz4-1.7.5:= zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=Blocking, shuffling and lossless compression library -EAPI=8 -HOMEPAGE=https://blosc.org/c-blosc2/c-blosc2.html https://github.com/Blosc/c-blosc2/ -INHERIT=cmake -IUSE=test +zlib +zstd -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=BSD -RDEPEND=>=app-arch/lz4-1.7.5:= zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) -REQUIRED_USE=test? ( zlib zstd ) -RESTRICT=!test? ( test ) -SLOT=0/8 -SRC_URI=https://github.com/Blosc/c-blosc2/archive/v3.0.0.tar.gz -> c-blosc2-3.0.0.gh.tar.gz https://github.com/LLNL/zfp/archive/1.0.1.tar.gz -> zfp-1.0.1.gh.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=c9225227dce0433dc224805aef15f233 diff --git a/metadata/md5-cache/dev-libs/cyberjack-3.99.5_p17 b/metadata/md5-cache/dev-libs/cyberjack-3.99.5_p17 index e25bca820144..47e4252e24da 100644 --- a/metadata/md5-cache/dev-libs/cyberjack-3.99.5_p17 +++ b/metadata/md5-cache/dev-libs/cyberjack-3.99.5_p17 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=sys-apps/pcsc-lite virtual/libusb:1= udev? ( virtual/udev ) xml? ( dev-libs/libxml2:2= ) SLOT=0 SRC_URI=http://kernelport.com/reiner-sct/SP17/pcsc-cyberjack-3.99.5final.SP17.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=29682a01612ae664182c64df5b34bd5e diff --git a/metadata/md5-cache/dev-libs/feedbackd-0.8.8 b/metadata/md5-cache/dev-libs/feedbackd-0.8.8 index d7a17a41968c..afd4f6e7d1bc 100644 --- a/metadata/md5-cache/dev-libs/feedbackd-0.8.8 +++ b/metadata/md5-cache/dev-libs/feedbackd-0.8.8 @@ -13,5 +13,5 @@ REQUIRED_USE=vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sources.phosh.mobi/releases/feedbackd/feedbackd-0.8.8.tar.xz verify-sig? ( https://sources.phosh.mobi/releases/feedbackd/feedbackd-0.8.8.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=3d2754d334b2fa502124722068dc5886 diff --git a/metadata/md5-cache/dev-libs/feedbackd-0.8.9 b/metadata/md5-cache/dev-libs/feedbackd-0.8.9 index e24902c376ea..697cc89b6979 100644 --- a/metadata/md5-cache/dev-libs/feedbackd-0.8.9 +++ b/metadata/md5-cache/dev-libs/feedbackd-0.8.9 @@ -13,5 +13,5 @@ REQUIRED_USE=vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sources.phosh.mobi/releases/feedbackd/feedbackd-0.8.9.tar.xz verify-sig? ( https://sources.phosh.mobi/releases/feedbackd/feedbackd-0.8.9.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=6d63170224759c4a41f8d92a85a7bf9c diff --git a/metadata/md5-cache/dev-libs/gmobile-0.4.0 b/metadata/md5-cache/dev-libs/gmobile-0.4.0 index cdf08860ae1a..d7c11e5fdd32 100644 --- a/metadata/md5-cache/dev-libs/gmobile-0.4.0 +++ b/metadata/md5-cache/dev-libs/gmobile-0.4.0 @@ -14,5 +14,5 @@ REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sources.phosh.mobi/releases/gmobile/gmobile-0.4.0.tar.xz verify-sig? ( https://sources.phosh.mobi/releases/gmobile/gmobile-0.4.0.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=f7af9d197f6775cfce87677435efc422 diff --git a/metadata/md5-cache/dev-libs/gmobile-0.6.0 b/metadata/md5-cache/dev-libs/gmobile-0.6.0 index 8bc5c6f93dac..d98cfe885fe2 100644 --- a/metadata/md5-cache/dev-libs/gmobile-0.6.0 +++ b/metadata/md5-cache/dev-libs/gmobile-0.6.0 @@ -14,5 +14,5 @@ REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sources.phosh.mobi/releases/gmobile/gmobile-0.6.0.tar.xz verify-sig? ( https://sources.phosh.mobi/releases/gmobile/gmobile-0.6.0.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=9adf3f7688f0acc8102e4b312a6317a5 diff --git a/metadata/md5-cache/dev-libs/level-zero-1.28.3 b/metadata/md5-cache/dev-libs/level-zero-1.28.3 new file mode 100644 index 000000000000..09026be2c05d --- /dev/null +++ b/metadata/md5-cache/dev-libs/level-zero-1.28.3 @@ -0,0 +1,14 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/spdlog:= +DESCRIPTION=oneAPI Level Zero headers, loader and validation layer +EAPI=8 +HOMEPAGE=https://github.com/oneapi-src/level-zero +INHERIT=cmake +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=dev-libs/spdlog:= +SLOT=0/1.28.3 +SRC_URI=https://github.com/oneapi-src/level-zero/archive/refs/tags/v1.28.3.tar.gz -> level-zero-1.28.3.tar.gz +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=0cbac4da6039aac5138302439cc2f62a diff --git a/metadata/md5-cache/dev-libs/libcec-7.0.0 b/metadata/md5-cache/dev-libs/libcec-7.0.0 index 8105d91dc0f4..a1fe3dcd0e72 100644 --- a/metadata/md5-cache/dev-libs/libcec-7.0.0 +++ b/metadata/md5-cache/dev-libs/libcec-7.0.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libplatform-2.0.0 python? ( python_single_target_python3_10? 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 ) ) SLOT=0 SRC_URI=https://github.com/Pulse-Eight/libcec/archive/libcec-7.0.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b719abb6e51578116de1ecdc1e366dcc diff --git a/metadata/md5-cache/dev-libs/libcec-7.1.1 b/metadata/md5-cache/dev-libs/libcec-7.1.1 index 74143afd8f99..e0fe5cf91ead 100644 --- a/metadata/md5-cache/dev-libs/libcec-7.1.1 +++ b/metadata/md5-cache/dev-libs/libcec-7.1.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/libplatform-2.0.0 python? ( python_single_target_python3_10? 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 ) ) SLOT=0 SRC_URI=https://github.com/Pulse-Eight/libcec/archive/libcec-7.1.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=fd693657fb767d4de0d5cbd6a63125e1 diff --git a/metadata/md5-cache/dev-libs/libfido2-1.16.0 b/metadata/md5-cache/dev-libs/libfido2-1.16.0 index 14149ed27c55..42ae6cc6b401 100644 --- a/metadata/md5-cache/dev-libs/libfido2-1.16.0 +++ b/metadata/md5-cache/dev-libs/libfido2-1.16.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libcbor:= virtual/libudev:= app-text/mandoc sys-libs/zlib:0= !libressl? ( dev-libs/openssl:0= ) libressl? ( >=dev-libs/libressl-3.5.0:0= ) acct-group/plugdev SLOT=0/1 SRC_URI=https://github.com/Yubico/libfido2/archive/1.16.0.tar.gz -> libfido2-1.16.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=adac5de85573cae8abfd1d2d229ecc5f diff --git a/metadata/md5-cache/dev-libs/libfido2-1.17.0 b/metadata/md5-cache/dev-libs/libfido2-1.17.0 index 7ab089ab7377..9cc0753ff653 100644 --- a/metadata/md5-cache/dev-libs/libfido2-1.17.0 +++ b/metadata/md5-cache/dev-libs/libfido2-1.17.0 @@ -11,5 +11,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/libcbor:= virtual/libudev:= app-text/mandoc sys-libs/zlib:0= !libressl? ( dev-libs/openssl:0= ) libressl? ( >=dev-libs/libressl-3.5.0:0= ) acct-group/plugdev SLOT=0/1 SRC_URI=https://github.com/Yubico/libfido2/archive/1.17.0.tar.gz -> libfido2-1.17.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4d5699179ebf577bbbfce55837a7feb4 diff --git a/metadata/md5-cache/dev-libs/libinput-1.30.1 b/metadata/md5-cache/dev-libs/libinput-1.30.1 index 4a818fb23651..1352afdce482 100644 --- a/metadata/md5-cache/dev-libs/libinput-1.30.1 +++ b/metadata/md5-cache/dev-libs/libinput-1.30.1 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_s RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.30.1/libinput-1.30.1.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=200b61bff29664fc766c1535760bd965 diff --git a/metadata/md5-cache/dev-libs/libinput-1.30.3 b/metadata/md5-cache/dev-libs/libinput-1.30.3 index f11dd285e7fa..5d998c919030 100644 --- a/metadata/md5-cache/dev-libs/libinput-1.30.3 +++ b/metadata/md5-cache/dev-libs/libinput-1.30.3 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_s RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.30.3/libinput-1.30.3.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6aad6cf946a6bc06ccc935ffe7d95cd8 diff --git a/metadata/md5-cache/dev-libs/libinput-1.31.0 b/metadata/md5-cache/dev-libs/libinput-1.31.0 index 97201452567e..438124e0438a 100644 --- a/metadata/md5-cache/dev-libs/libinput-1.31.0 +++ b/metadata/md5-cache/dev-libs/libinput-1.31.0 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_s RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.31.0/libinput-1.31.0.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=200b61bff29664fc766c1535760bd965 diff --git a/metadata/md5-cache/dev-libs/libinput-1.31.1 b/metadata/md5-cache/dev-libs/libinput-1.31.1 index bec6c41f7f35..7533dbee45b2 100644 --- a/metadata/md5-cache/dev-libs/libinput-1.31.1 +++ b/metadata/md5-cache/dev-libs/libinput-1.31.1 @@ -13,5 +13,5 @@ REQUIRED_USE=lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_s RESTRICT=!test? ( test ) SLOT=0/10 SRC_URI=https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.31.1/libinput-1.31.1.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6aad6cf946a6bc06ccc935ffe7d95cd8 diff --git a/metadata/md5-cache/dev-libs/libratbag-0.17-r2 b/metadata/md5-cache/dev-libs/libratbag-0.17-r2 index 0b4201292e38..0bb99375a772 100644 --- a/metadata/md5-cache/dev-libs/libratbag-0.17-r2 +++ b/metadata/md5-cache/dev-libs/libratbag-0.17-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/libratbag/libratbag/archive/v0.17.tar.gz -> libratbag-0.17.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b2823156fa2b2077efff684512a432fb diff --git a/metadata/md5-cache/dev-libs/libratbag-0.18 b/metadata/md5-cache/dev-libs/libratbag-0.18 index b17df8a598c5..fa97bd2389e7 100644 --- a/metadata/md5-cache/dev-libs/libratbag-0.18 +++ b/metadata/md5-cache/dev-libs/libratbag-0.18 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/libratbag/libratbag/archive/v0.18.tar.gz -> libratbag-0.18.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b1f5556bef0809b2b896975149e55edb diff --git a/metadata/md5-cache/dev-libs/libratbag-9999 b/metadata/md5-cache/dev-libs/libratbag-9999 index 8a52c46aaa16..36fab47dc132 100644 --- a/metadata/md5-cache/dev-libs/libratbag-9999 +++ b/metadata/md5-cache/dev-libs/libratbag-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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 ) ^^ ( elogind systemd ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b1f5556bef0809b2b896975149e55edb diff --git a/metadata/md5-cache/dev-libs/libwacom-2.16.1 b/metadata/md5-cache/dev-libs/libwacom-2.16.1 index 932e0942123b..ab2e49b9bf70 100644 --- a/metadata/md5-cache/dev-libs/libwacom-2.16.1 +++ b/metadata/md5-cache/dev-libs/libwacom-2.16.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/libevdev dev-libs/libgudev:= RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://github.com/linuxwacom/libwacom/releases/download/libwacom-2.16.1/libwacom-2.16.1.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c898676b7bca512f4bc48f6fc235bdc2 diff --git a/metadata/md5-cache/dev-libs/libwacom-2.17.0 b/metadata/md5-cache/dev-libs/libwacom-2.17.0 index e63cd31a9b81..b49bdb4e509b 100644 --- a/metadata/md5-cache/dev-libs/libwacom-2.17.0 +++ b/metadata/md5-cache/dev-libs/libwacom-2.17.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/libevdev dev-libs/libgudev:= RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://github.com/linuxwacom/libwacom/releases/download/libwacom-2.17.0/libwacom-2.17.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c25620ad8650e8006f58ddcf159e4c55 diff --git a/metadata/md5-cache/dev-libs/libwacom-2.18.0 b/metadata/md5-cache/dev-libs/libwacom-2.18.0 index 3d35c0ef7ba1..7175b3d4918a 100644 --- a/metadata/md5-cache/dev-libs/libwacom-2.18.0 +++ b/metadata/md5-cache/dev-libs/libwacom-2.18.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/libevdev dev-libs/libgudev:= RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://github.com/linuxwacom/libwacom/releases/download/libwacom-2.18.0/libwacom-2.18.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c5a2a03befc35111d9bca3ac8d584983 diff --git a/metadata/md5-cache/dev-libs/light-1.2.2-r2 b/metadata/md5-cache/dev-libs/light-1.2.2-r2 index bcefd1d773cc..553f52574cab 100644 --- a/metadata/md5-cache/dev-libs/light-1.2.2-r2 +++ b/metadata/md5-cache/dev-libs/light-1.2.2-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=acct-group/video !sys-power/acpilight udev? ( virtual/libudev:= ) SLOT=0 SRC_URI=https://github.com/haikarainen/light/archive/v1.2.2.tar.gz -> light-1.2.2.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e09d3e5f13c012556a003acba11c2f3e diff --git a/metadata/md5-cache/dev-libs/openct-0.6.20-r6 b/metadata/md5-cache/dev-libs/openct-0.6.20-r6 index 46ded6b888a3..58dc70b5f3be 100644 --- a/metadata/md5-cache/dev-libs/openct-0.6.20-r6 +++ b/metadata/md5-cache/dev-libs/openct-0.6.20-r6 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=pcsc-lite? ( >=sys-apps/pcsc-lite-1.7.2-r1:= ) usb? ( virtual/libusb:0 ) dev-libs/libltdl:0= acct-group/openct acct-user/openctd selinux? ( sec-policy/selinux-openct ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/opensc/openct/openct-0.6.20.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5b485e8b279384bc72fcdc22073f5a34 diff --git a/metadata/md5-cache/dev-libs/openobex-1.7.2-r3 b/metadata/md5-cache/dev-libs/openobex-1.7.2-r3 index 08ee99548128..283c4a933b9b 100644 --- a/metadata/md5-cache/dev-libs/openobex-1.7.2-r3 +++ b/metadata/md5-cache/dev-libs/openobex-1.7.2-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=bluetooth? ( net-wireless/bluez:= ) usb? ( virtual/libusb:= ) SLOT=0/2 SRC_URI=https://downloads.sourceforge.net/openobex/1.7.2/openobex-1.7.2-Source.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1898229845a5543b1cb328249a10c2f2 diff --git a/metadata/md5-cache/dev-libs/serdisplib-2.02-r3 b/metadata/md5-cache/dev-libs/serdisplib-2.02-r3 index 9383b66fe299..b5f9f105d085 100644 --- a/metadata/md5-cache/dev-libs/serdisplib-2.02-r3 +++ b/metadata/md5-cache/dev-libs/serdisplib-2.02-r3 @@ -12,5 +12,5 @@ RDEPEND=media-libs/gd[jpeg,png,tiff] lcd_devices_acoolsdcm? ( virtual/libusb:1 ) REQUIRED_USE=|| ( lcd_devices_acoolsdcm lcd_devices_ddusbt lcd_devices_directgfx lcd_devices_displaylink lcd_devices_dpfax lcd_devices_framebuffer lcd_devices_glcd2usb lcd_devices_goldelox lcd_devices_i2c lcd_devices_ks0108 lcd_devices_l4m lcd_devices_lc7981 lcd_devices_lh155 lcd_devices_nokcol lcd_devices_pcd8544 lcd_devices_remote lcd_devices_rs232 lcd_devices_sed133x lcd_devices_sed153x lcd_devices_sed156x lcd_devices_ssdoled lcd_devices_stv8105 lcd_devices_t6963 lcd_devices_vssdcp ) lcd_devices_framebuffer? ( threads ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/serdisplib/serdisplib-2.02.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5313b8aa3719ab6f5f551caa6bca93d1 diff --git a/metadata/md5-cache/dev-libs/thrift-0.23.0 b/metadata/md5-cache/dev-libs/thrift-0.23.0 index b7d9fb8ed9b7..9b5007743935 100644 --- a/metadata/md5-cache/dev-libs/thrift-0.23.0 +++ b/metadata/md5-cache/dev-libs/thrift-0.23.0 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/0.23.0 SRC_URI=mirror://apache/thrift/0.23.0/thrift-0.23.0.tar.gz _eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=5bbb95d6c48a7818b45db6534002deb2 +_md5_=82916c151d19eb8be665be86e287358b diff --git a/metadata/md5-cache/dev-libs/weston-15.0.0 b/metadata/md5-cache/dev-libs/weston-15.0.1 index 6d9478797dd5..b2c8e7c45536 100644 --- a/metadata/md5-cache/dev-libs/weston-15.0.0 +++ b/metadata/md5-cache/dev-libs/weston-15.0.1 @@ -12,6 +12,6 @@ RDEPEND=>=dev-libs/libinput-1.2.0 >=dev-libs/wayland-1.22.0 <media-libs/libdispl REQUIRED_USE=drm? ( gles2 ) lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) pipewire? ( drm ) remoting? ( drm gles2 ) test? ( headless ) wayland-compositor? ( gles2 ) || ( drm headless rdp vnc wayland-compositor X ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://gitlab.freedesktop.org/wayland/weston/-/releases/15.0.0/downloads/weston-15.0.0.tar.xz +SRC_URI=https://gitlab.freedesktop.org/wayland/weston/-/releases/15.0.1/downloads/weston-15.0.1.tar.xz _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e3c9c2d328777689dce46371ef110214 diff --git a/metadata/md5-cache/dev-lua/dkjson-2.9 b/metadata/md5-cache/dev-lua/dkjson-2.9 new file mode 100644 index 000000000000..2c7e63a21dec --- /dev/null +++ b/metadata/md5-cache/dev-lua/dkjson-2.9 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig test? ( lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) ) +DEFINED_PHASES=install test +DEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) +DESCRIPTION=David Kolf's JSON module for Lua +EAPI=8 +HOMEPAGE=http://dkolf.de/src/dkjson-lua.fsl/ +INHERIT=lua +IUSE=test lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) +REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=http://dkolf.de/dkjson-lua/dkjson-2.9.tar.gz +_eclasses_=lua 3414f66fe14a8c3ffdb5a894097068c6 lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=def7ddd8dd551ef5b57831731a8a53e5 diff --git a/metadata/md5-cache/dev-lua/luasystem-0.7.1 b/metadata/md5-cache/dev-lua/luasystem-0.7.1 new file mode 100644 index 000000000000..47331ebcc4a5 --- /dev/null +++ b/metadata/md5-cache/dev-lua/luasystem-0.7.1 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig test? ( dev-lua/busted[lua_targets_luajit(-)?,lua_targets_lua5-1(-)?,lua_targets_lua5-3(-)?,lua_targets_lua5-4(-)?] dev-lua/lua_cliargs[lua_targets_luajit(-)?,lua_targets_lua5-1(-)?,lua_targets_lua5-3(-)?,lua_targets_lua5-4(-)?] lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) ) +DEFINED_PHASES=compile install prepare test +DEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) +DESCRIPTION=Platform independent system calls for Lua +EAPI=8 +HOMEPAGE=https://github.com/lunarmodules/luasystem +INHERIT=lua toolchain-funcs +IUSE=test lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) +REQUIRED_USE=|| ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-3 lua_targets_lua5-4 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/lunarmodules/luasystem/archive/refs/tags/v0.7.1.tar.gz -> luasystem-0.7.1.tar.gz +_eclasses_=lua 3414f66fe14a8c3ffdb5a894097068c6 lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=3de90cd441cba4e4e8439fb00357383c diff --git a/metadata/md5-cache/dev-php/pecl-mongodb-2.2.0 b/metadata/md5-cache/dev-php/pecl-mongodb-2.2.0 deleted file mode 100644 index e7c73701a62b..000000000000 --- a/metadata/md5-cache/dev-php/pecl-mongodb-2.2.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=php_targets_php8-1? ( dev-lang/php:8.1[ssl,zlib] ) php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 sys-devel/m4 dev-build/libtool php_targets_php8-1? ( dev-lang/php:8.1 ) php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) -DEFINED_PHASES=compile configure install prepare test -DEPEND=php_targets_php8-1? ( dev-lang/php:8.1[ssl,zlib] ) php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sasl? ( dev-libs/cyrus-sasl ) test? ( dev-db/mongodb ) php_targets_php8-1? ( dev-lang/php:8.1 ) php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) -DESCRIPTION=MongoDB database driver for PHP -EAPI=8 -HOMEPAGE=https://pecl.php.net/mongodb -INHERIT=php-ext-pecl-r3 -IUSE=libressl sasl test php_targets_php8-1 php_targets_php8-2 php_targets_php8-3 php_targets_php8-4 -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=php_targets_php8-1? ( dev-lang/php:8.1[ssl,zlib] ) php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sasl? ( dev-libs/cyrus-sasl ) php_targets_php8-1? ( dev-lang/php:8.1 ) php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) -REQUIRED_USE=|| ( php_targets_php8-1 php_targets_php8-2 php_targets_php8-3 php_targets_php8-4 ) -RESTRICT=x86? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://pecl.php.net/get/mongodb-2.2.0.tgz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 php-ext-pecl-r3 4ca93611caa4190394eb13cc22aedbd0 php-ext-source-r3 e20476389dc117cf0e27de650594d9f4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=163e7b89b0f0b6b305dca79cac1526f3 diff --git a/metadata/md5-cache/dev-php/pecl-mongodb-2.3.0 b/metadata/md5-cache/dev-php/pecl-mongodb-2.3.0 new file mode 100644 index 000000000000..6f70b3451df3 --- /dev/null +++ b/metadata/md5-cache/dev-php/pecl-mongodb-2.3.0 @@ -0,0 +1,17 @@ +BDEPEND=php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) php_targets_php8-5? ( dev-lang/php:8.5[ssl,zlib] ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 sys-devel/m4 dev-build/libtool php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) php_targets_php8-5? ( dev-lang/php:8.5 ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) php_targets_php8-5? ( dev-lang/php:8.5[ssl,zlib] ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sasl? ( dev-libs/cyrus-sasl ) test? ( dev-db/mongodb ) php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) php_targets_php8-5? ( dev-lang/php:8.5 ) +DESCRIPTION=MongoDB database driver for PHP +EAPI=8 +HOMEPAGE=https://pecl.php.net/mongodb +INHERIT=php-ext-pecl-r3 +IUSE=libressl sasl test php_targets_php8-2 php_targets_php8-3 php_targets_php8-4 php_targets_php8-5 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=php_targets_php8-2? ( dev-lang/php:8.2[ssl,zlib] ) php_targets_php8-3? ( dev-lang/php:8.3[ssl,zlib] ) php_targets_php8-4? ( dev-lang/php:8.4[ssl,zlib] ) php_targets_php8-5? ( dev-lang/php:8.5[ssl,zlib] ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sasl? ( dev-libs/cyrus-sasl ) php_targets_php8-2? ( dev-lang/php:8.2 ) php_targets_php8-3? ( dev-lang/php:8.3 ) php_targets_php8-4? ( dev-lang/php:8.4 ) php_targets_php8-5? ( dev-lang/php:8.5 ) +REQUIRED_USE=|| ( php_targets_php8-2 php_targets_php8-3 php_targets_php8-4 php_targets_php8-5 ) +RESTRICT=x86? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://pecl.php.net/get/mongodb-2.3.0.tgz +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 php-ext-pecl-r3 4ca93611caa4190394eb13cc22aedbd0 php-ext-source-r3 e20476389dc117cf0e27de650594d9f4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=084deb376eeb2b31d0f551dc9ea6b1e4 diff --git a/metadata/md5-cache/dev-python/boto3-1.43.0 b/metadata/md5-cache/dev-python/boto3-1.43.0 new file mode 100644 index 000000000000..66633a10531d --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.43.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/botocore-1.43.0[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.17.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.43.0[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.17.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.43.0.tar.gz -> boto3-1.43.0.gh.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=5335510c617d8def1d00f7a917adf3da diff --git a/metadata/md5-cache/dev-python/botocore-1.43.0 b/metadata/md5-cache/dev-python/botocore-1.43.0 new file mode 100644 index 000000000000..aadcf011dfad --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.43.0 @@ -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.43.0.tar.gz -> botocore-1.43.0.gh.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=5915439a41529d52fb48000964baebf6 diff --git a/metadata/md5-cache/dev-python/build-1.4.0 b/metadata/md5-cache/dev-python/build-1.4.0 deleted file mode 100644 index f01305b0db42..000000000000 --- a/metadata/md5-cache/dev-python/build-1.4.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_pypy3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_12? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_13? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_14? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) ) 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/flit-core-3.11.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A simple, correct PEP517 package builder -EAPI=8 -HOMEPAGE=https://pypi.org/project/build/ https://github.com/pypa/build/ -INHERIT=distutils-r1 -IUSE=test test-rust python_targets_pypy3_11 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=MIT -RDEPEND=>=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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://github.com/pypa/build/archive/1.4.0.tar.gz -> build-1.4.0.gh.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=ee1d0e05953372df4c75254c3703bfdc diff --git a/metadata/md5-cache/dev-python/build-1.4.1 b/metadata/md5-cache/dev-python/build-1.4.1 deleted file mode 100644 index bc7517074f2c..000000000000 --- a/metadata/md5-cache/dev-python/build-1.4.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_pypy3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_12? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_13? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_14? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) ) 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/flit-core-3.11.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A simple, correct PEP517 package builder -EAPI=8 -HOMEPAGE=https://pypi.org/project/build/ https://github.com/pypa/build/ -INHERIT=distutils-r1 -IUSE=test test-rust python_targets_pypy3_11 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=MIT -RDEPEND=>=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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://github.com/pypa/build/archive/1.4.1.tar.gz -> build-1.4.1.gh.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=ee1d0e05953372df4c75254c3703bfdc diff --git a/metadata/md5-cache/dev-python/build-1.4.2 b/metadata/md5-cache/dev-python/build-1.4.2 deleted file mode 100644 index 4638a2acc0c8..000000000000 --- a/metadata/md5-cache/dev-python/build-1.4.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_pypy3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_12? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_13? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_14? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) ) 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/flit-core-3.11.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A simple, correct PEP517 package builder -EAPI=8 -HOMEPAGE=https://pypi.org/project/build/ https://github.com/pypa/build/ -INHERIT=distutils-r1 -IUSE=test test-rust python_targets_pypy3_11 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=MIT -RDEPEND=>=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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://github.com/pypa/build/archive/1.4.2.tar.gz -> build-1.4.2.gh.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=ee1d0e05953372df4c75254c3703bfdc diff --git a/metadata/md5-cache/dev-python/build-1.4.3 b/metadata/md5-cache/dev-python/build-1.4.3 deleted file mode 100644 index 89f27aa8296f..000000000000 --- a/metadata/md5-cache/dev-python/build-1.4.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_pypy3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_12? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_13? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_14? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) ) 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/flit-core-3.11.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A simple, correct PEP517 package builder -EAPI=8 -HOMEPAGE=https://pypi.org/project/build/ https://github.com/pypa/build/ -INHERIT=distutils-r1 -IUSE=test test-rust python_targets_pypy3_11 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=MIT -RDEPEND=>=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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://github.com/pypa/build/archive/1.4.3.tar.gz -> build-1.4.3.gh.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=ee1d0e05953372df4c75254c3703bfdc diff --git a/metadata/md5-cache/dev-python/build-1.5.0 b/metadata/md5-cache/dev-python/build-1.5.0 new file mode 100644 index 000000000000..6d40cc97cbaa --- /dev/null +++ b/metadata/md5-cache/dev-python/build-1.5.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/setuptools-scm-6[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_pypy3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_11? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_12? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_13? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) python_targets_python3_14? ( >=dev-python/filelock-3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.3[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-rerunfailures-9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-xdist-1.34[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-56.0.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/virtualenv-20.0.35[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/wheel-0.36.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( !s390? ( !sparc? ( >=dev-python/uv-0.1.18 ) ) ) ) ) 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/flit-core-3.11.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A simple, correct PEP517 package builder +EAPI=8 +HOMEPAGE=https://pypi.org/project/build/ https://github.com/pypa/build/ +INHERIT=distutils-r1 +IUSE=test test-rust python_targets_pypy3_11 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=MIT +RDEPEND=>=dev-python/packaging-24.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-hooks[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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://github.com/pypa/build/archive/1.5.0.tar.gz -> build-1.5.0.gh.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=fb5ce64c2165e39da9d3931c1d38f3b6 diff --git a/metadata/md5-cache/dev-python/cfn-lint-1.50.1 b/metadata/md5-cache/dev-python/cfn-lint-1.50.1 new file mode 100644 index 000000000000..b6cf453f4e92 --- /dev/null +++ b/metadata/md5-cache/dev-python/cfn-lint-1.50.1 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/setuptools-77.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( dev-python/defusedxml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/aws-sam-translator-1.109.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonpatch[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jschema-to-python-1.2.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jsonschema-5[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/junit-xml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/networkx-4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/regex-2021.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sarif-om-1.0.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sympy-1.14.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(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=CloudFormation Linter +EAPI=8 +HOMEPAGE=https://github.com/aws-cloudformation/cfn-lint/ https://pypi.org/project/cfn-lint/ +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=~amd64 ~arm64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/aws-sam-translator-1.109.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonpatch[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jschema-to-python-1.2.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jsonschema-5[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/junit-xml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/networkx-4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/regex-2021.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sarif-om-1.0.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sympy-1.14.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://files.pythonhosted.org/packages/source/c/cfn-lint/cfn_lint-1.50.1.tar.gz verify-provenance? ( https://pypi.org/integrity/cfn-lint/v1.50.1/cfn_lint-1.50.1.tar.gz/provenance -> cfn_lint-1.50.1.tar.gz.provenance ) +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=5040bcbe64c5542021285a31894d1e8b diff --git a/metadata/md5-cache/dev-python/cryptography-47.0.0 b/metadata/md5-cache/dev-python/cryptography-47.0.0 index 1ef87bc399a4..649d37946db6 100644 --- a/metadata/md5-cache/dev-python/cryptography-47.0.0 +++ b/metadata/md5-cache/dev-python/cryptography-47.0.0 @@ -1,6 +1,6 @@ -BDEPEND=|| ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) >=dev-util/maturin-1.9.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( dev-python/certifi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/iso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pretend[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1-modules[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(-)?] ) test? ( !libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( dev-libs/libressl:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.0.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(-)?] dev-python/hypothesis[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-subtests[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(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) >=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-util/maturin-1.8.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +BDEPEND=|| ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) >=dev-util/maturin-1.9.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( dev-python/certifi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/iso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pretend[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1-modules[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(-)?] ) test? ( !libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( >=dev-libs/libressl-4.2.1:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.0.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(-)?] dev-python/hypothesis[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-subtests[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(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) >=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-util/maturin-1.8.2[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 setup test unpack -DEPEND=!libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( dev-libs/libressl:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.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[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) +DEPEND=!libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( >=dev-libs/libressl-4.2.1:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.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[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) DESCRIPTION=Library providing cryptographic recipes and primitives EAPI=8 HOMEPAGE=https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/ @@ -8,10 +8,10 @@ INHERIT=cargo distutils-r1 multiprocessing IUSE=libressl test debug 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 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=|| ( Apache-2.0 BSD ) PSF-2 Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-3.0 -RDEPEND=!libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( dev-libs/libressl:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.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[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) +RDEPEND=!libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( >=dev-libs/libressl-4.2.1:= ) python_targets_python3_10? ( >=dev-python/cffi-2.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_11? ( >=dev-python/cffi-2.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_12? ( >=dev-python/cffi-2.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_13? ( >=dev-python/cffi-2.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_14? ( >=dev-python/cffi-2.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[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) 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/pyca/cryptography/archive/refs/tags/47.0.0.tar.gz -> cryptography-47.0.0.tar.gz https://crates.io/api/v1/crates/asn1/0.24.1/download -> asn1-0.24.1.crate https://crates.io/api/v1/crates/asn1_derive/0.24.1/download -> asn1_derive-0.24.1.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.11.1/download -> bitflags-2.11.1.crate https://crates.io/api/v1/crates/cc/1.2.60/download -> cc-1.2.60.crate https://crates.io/api/v1/crates/cfg-if/1.0.4/download -> cfg-if-1.0.4.crate https://crates.io/api/v1/crates/find-msvc-tools/0.1.9/download -> find-msvc-tools-0.1.9.crate https://crates.io/api/v1/crates/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/foreign-types/0.3.2/download -> foreign-types-0.3.2.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/itoa/1.0.18/download -> itoa-1.0.18.crate https://crates.io/api/v1/crates/libc/0.2.186/download -> libc-0.2.186.crate https://crates.io/api/v1/crates/once_cell/1.21.4/download -> once_cell-1.21.4.crate https://crates.io/api/v1/crates/openssl-macros/0.1.1/download -> openssl-macros-0.1.1.crate https://crates.io/api/v1/crates/openssl-sys/0.9.114/download -> openssl-sys-0.9.114.crate https://crates.io/api/v1/crates/openssl/0.10.78/download -> openssl-0.10.78.crate https://crates.io/api/v1/crates/pem/3.0.6/download -> pem-3.0.6.crate https://crates.io/api/v1/crates/pkg-config/0.3.33/download -> pkg-config-0.3.33.crate https://crates.io/api/v1/crates/portable-atomic/1.13.1/download -> portable-atomic-1.13.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.106/download -> proc-macro2-1.0.106.crate https://crates.io/api/v1/crates/pyo3-build-config/0.28.3/download -> pyo3-build-config-0.28.3.crate https://crates.io/api/v1/crates/pyo3-ffi/0.28.3/download -> pyo3-ffi-0.28.3.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.28.3/download -> pyo3-macros-backend-0.28.3.crate https://crates.io/api/v1/crates/pyo3-macros/0.28.3/download -> pyo3-macros-0.28.3.crate https://crates.io/api/v1/crates/pyo3/0.28.3/download -> pyo3-0.28.3.crate https://crates.io/api/v1/crates/quote/1.0.45/download -> quote-1.0.45.crate https://crates.io/api/v1/crates/self_cell/1.2.2/download -> self_cell-1.2.2.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/syn/2.0.117/download -> syn-2.0.117.crate https://crates.io/api/v1/crates/target-lexicon/0.13.5/download -> target-lexicon-0.13.5.crate https://crates.io/api/v1/crates/unicode-ident/1.0.24/download -> unicode-ident-1.0.24.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate _eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=4388aebc4eacb6a551dcf7f5088da6c0 +_md5_=7fa47e28e06c881325e37b1a861a2899 diff --git a/metadata/md5-cache/dev-python/dulwich-1.2.1 b/metadata/md5-cache/dev-python/dulwich-1.2.1 new file mode 100644 index 000000000000..b535c08aa66f --- /dev/null +++ b/metadata/md5-cache/dev-python/dulwich-1.2.1 @@ -0,0 +1,17 @@ +BDEPEND=native-extensions? ( || ( >=dev-lang/rust-bin-1.83.0:* >=dev-lang/rust-1.83.0:* ) dev-python/setuptools-rust[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/urllib3-2.2.2[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/typing-extensions-4.0[python_targets_python3_11(-)?] ) dev-python/fastimport[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/gpgmepy[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/merge3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/paramiko[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,server(+)] ) doc? ( || ( ( dev-lang/python:3.14 >=dev-python/sphinx-8.1.3[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 >=dev-python/sphinx-8.1.3[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/sphinx-8.1.3[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/sphinx-8.1.3[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-8.1.3[python_targets_python3_10(-)] ) ) ) 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 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=Pure-Python implementation of the Git file formats and protocols +EAPI=8 +HOMEPAGE=https://github.com/jelmer/dulwich/ https://pypi.org/project/dulwich/ +INHERIT=cargo distutils-r1 pypi +IUSE=doc examples +native-extensions test doc debug python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug verify-provenance +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~x86 ~arm64-macos ~x64-macos ~x64-solaris +LICENSE=GPL-2+ Apache-2.0 native-extensions? ( Apache-2.0 Apache-2.0-with-LLVM-exceptions Unicode-3.0 || ( MIT Unlicense ) ) +RDEPEND=>=dev-python/urllib3-2.2.2[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/typing-extensions-4.0[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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/d/dulwich/dulwich-1.2.1.tar.gz verify-provenance? ( https://pypi.org/integrity/dulwich/v1.2.1/dulwich-1.2.1.tar.gz/provenance -> dulwich-1.2.1.tar.gz.provenance ) native-extensions? ( https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/libc/0.2.185/download -> libc-0.2.185.crate https://crates.io/api/v1/crates/memchr/2.8.0/download -> memchr-2.8.0.crate https://crates.io/api/v1/crates/once_cell/1.21.4/download -> once_cell-1.21.4.crate https://crates.io/api/v1/crates/portable-atomic/1.13.1/download -> portable-atomic-1.13.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.106/download -> proc-macro2-1.0.106.crate https://crates.io/api/v1/crates/pyo3-build-config/0.28.3/download -> pyo3-build-config-0.28.3.crate https://crates.io/api/v1/crates/pyo3-ffi/0.28.3/download -> pyo3-ffi-0.28.3.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.28.3/download -> pyo3-macros-backend-0.28.3.crate https://crates.io/api/v1/crates/pyo3-macros/0.28.3/download -> pyo3-macros-0.28.3.crate https://crates.io/api/v1/crates/pyo3/0.28.3/download -> pyo3-0.28.3.crate https://crates.io/api/v1/crates/quote/1.0.45/download -> quote-1.0.45.crate https://crates.io/api/v1/crates/similar/2.7.0/download -> similar-2.7.0.crate https://crates.io/api/v1/crates/syn/2.0.117/download -> syn-2.0.117.crate https://crates.io/api/v1/crates/target-lexicon/0.13.5/download -> target-lexicon-0.13.5.crate https://crates.io/api/v1/crates/unicode-ident/1.0.24/download -> unicode-ident-1.0.24.crate ) +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=6f166edd8d9e8be9faebc60b44214497 diff --git a/metadata/md5-cache/dev-python/findpython-0.8.0 b/metadata/md5-cache/dev-python/findpython-0.8.0 new file mode 100644 index 000000000000..32f2583364cc --- /dev/null +++ b/metadata/md5-cache/dev-python/findpython-0.8.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/packaging-20[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/platformdirs-4.3.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(-)?] ) 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=A utility to find python versions on your system +EAPI=8 +HOMEPAGE=https://github.com/frostming/findpython/ https://pypi.org/project/findpython/ +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 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/packaging-20[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/platformdirs-4.3.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=https://files.pythonhosted.org/packages/source/f/findpython/findpython-0.8.0.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=afe11e9820626089d2082922f54539d2 diff --git a/metadata/md5-cache/dev-python/fsspec-2026.4.0 b/metadata/md5-cache/dev-python/fsspec-2026.4.0 new file mode 100644 index 000000000000..787f2a7827fd --- /dev/null +++ b/metadata/md5-cache/dev-python/fsspec-2026.4.0 @@ -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/aiohttp[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/tqdm[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(-)?] 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-rerunfailures[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=A specification that python filesystems should adhere to +EAPI=8 +HOMEPAGE=https://github.com/fsspec/filesystem_spec/ https://pypi.org/project/fsspec/ +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 ~ppc64 ~riscv ~x86 +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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/fsspec/filesystem_spec/archive/2026.4.0.tar.gz -> filesystem_spec-2026.4.0.gh.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=91edb5e939c2e4494992b402ca01cb3d diff --git a/metadata/md5-cache/dev-python/jupyterlab-4.5.7 b/metadata/md5-cache/dev-python/jupyterlab-4.5.7 new file mode 100644 index 000000000000..6cc85a252491 --- /dev/null +++ b/metadata/md5-cache/dev-python/jupyterlab-4.5.7 @@ -0,0 +1,17 @@ +BDEPEND=dev-python/hatch-jupyter-builder[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( 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/requests-cache[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(-)?] ) test? ( >=dev-python/async-lru-1.0.0[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.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/ipykernel-6.5.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jinja2-3.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jupyter-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyter-lsp-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyter-server-2.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jupyter-server-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyterlab-server-2.28.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jupyterlab-server-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/notebook-shim-0.2[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/setuptools-41.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/tornado-6.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/traitlets[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] net-libs/nodejs[npm] >=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-console-scripts[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-jupyter[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-tornasync[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 postinst postrm preinst prepare test +DESCRIPTION=JupyterLab computational environment +EAPI=8 +HOMEPAGE=https://jupyter.org/ https://github.com/jupyterlab/jupyterlab/ https://pypi.org/project/jupyterlab/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=distutils-r1 pypi xdg +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 ~ppc64 ~riscv ~x86 +LICENSE=BSD MIT GPL-3 Apache-2.0 +RDEPEND=>=dev-python/async-lru-1.0.0[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.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/ipykernel-6.5.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jinja2-3.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jupyter-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyter-lsp-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyter-server-2.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jupyter-server-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jupyterlab-server-2.28.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] <dev-python/jupyterlab-server-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/notebook-shim-0.2[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/setuptools-41.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/tornado-6.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/traitlets[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] net-libs/nodejs[npm] 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/j/jupyterlab/jupyterlab-4.5.7.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=5bb58fd93b7f8531c55c9e2b95538e0b diff --git a/metadata/md5-cache/dev-python/latexrestricted-0.6.2 b/metadata/md5-cache/dev-python/latexrestricted-0.6.2 index a0d4c62c327c..78527a04c60d 100644 --- a/metadata/md5-cache/dev-python/latexrestricted-0.6.2 +++ b/metadata/md5-cache/dev-python/latexrestricted-0.6.2 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://github.com/gpoore/latexrestricted https://pypi.org/project/latexrestricted/ 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=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=LPPL-1.3c 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/gpoore/latexrestricted/archive/refs/tags/v0.6.2.tar.gz -> latexrestricted-0.6.2.gh.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=6d2b3ebe87184f1d2b2cd2998191b1d4 +_md5_=96143cb0a92765bdee1df7758dd98f64 diff --git a/metadata/md5-cache/dev-python/plotly-6.6.0 b/metadata/md5-cache/dev-python/plotly-6.6.0 deleted file mode 100644 index 9fb3b9315241..000000000000 --- a/metadata/md5-cache/dev-python/plotly-6.6.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/jupyter[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jupyterlab[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/matplotlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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/pandas[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pillow[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/pytz[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/scikit-image[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/scipy[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/statsmodels[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/narwhals-1.15.1[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/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(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Browser-based graphing library for Python -EAPI=8 -HOMEPAGE=https://plotly.com/python/ https://github.com/plotly/plotly.py/ https://pypi.org/project/plotly/ -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 -LICENSE=MIT -RDEPEND=>=dev-python/narwhals-1.15.1[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(-)?] 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/plotly/plotly.py/archive/refs/tags/v6.6.0.tar.gz -> plotly.py-6.6.0.gh.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=30e376a1a22854f8d5925ddc54f6bb48 diff --git a/metadata/md5-cache/dev-python/plotly-6.7.0 b/metadata/md5-cache/dev-python/plotly-6.7.0-r1 index 2f5d47f59caa..27ae3498d9f9 100644 --- a/metadata/md5-cache/dev-python/plotly-6.7.0 +++ b/metadata/md5-cache/dev-python/plotly-6.7.0-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/plotly/plotly.py/archive/refs/tags/v6.7.0.tar.gz -> plotly.py-6.7.0.gh.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=15c5229781c2ce53051f9d0816bca647 +_md5_=e35af1f84dd4d4db7f5f2f7c82ea2f20 diff --git a/metadata/md5-cache/dev-python/pycurl-7.46.0 b/metadata/md5-cache/dev-python/pycurl-7.46.0 new file mode 100644 index 000000000000..25b752ad172e --- /dev/null +++ b/metadata/md5-cache/dev-python/pycurl-7.46.0 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-python/flask[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),http2] ) test? ( >=net-misc/curl-7.25.0-r1:=[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0:= ) curl_ssl_openssl? ( dev-libs/openssl:= ) ) >=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-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/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=>=net-misc/curl-7.25.0-r1:=[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0:= ) curl_ssl_openssl? ( dev-libs/openssl:= ) ) 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 bindings for curl/libcurl +EAPI=8 +HOMEPAGE=http://pycurl.io/ https://github.com/pycurl/pycurl/ https://pypi.org/project/pycurl/ +INHERIT=distutils-r1 pypi toolchain-funcs +IUSE=curl_ssl_gnutls +curl_ssl_openssl examples ssl 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=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=LGPL-2.1 +RDEPEND=>=net-misc/curl-7.25.0-r1:=[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0:= ) curl_ssl_openssl? ( dev-libs/openssl:= ) ) 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/pycurl/pycurl-7.46.0.tar.gz verify-provenance? ( https://pypi.org/integrity/pycurl/v7.46.0/pycurl-7.46.0.tar.gz/provenance -> pycurl-7.46.0.tar.gz.provenance ) +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=d23b68f76cbbf900fd839058bbbbe990 diff --git a/metadata/md5-cache/dev-python/s3transfer-0.17.0 b/metadata/md5-cache/dev-python/s3transfer-0.17.0 new file mode 100644 index 000000000000..9208785fa24c --- /dev/null +++ b/metadata/md5-cache/dev-python/s3transfer-0.17.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( <dev-python/botocore-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/botocore-1.37.4[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=An Amazon S3 Transfer Manager +EAPI=8 +HOMEPAGE=https://github.com/boto/s3transfer/ https://pypi.org/project/s3transfer/ +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 ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=<dev-python/botocore-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/botocore-1.37.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 ) +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/s3transfer/s3transfer-0.17.0.tar.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=9a91689d63db7d7f0d89e1b3410d2eff diff --git a/metadata/md5-cache/dev-python/twisted-26.4.0_rc2 b/metadata/md5-cache/dev-python/twisted-26.4.0_rc2 new file mode 100644 index 000000000000..ad4ab1ab2e60 --- /dev/null +++ b/metadata/md5-cache/dev-python/twisted-26.4.0_rc2 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/hatch-fancy-pypi-readme-22.5.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/incremental-22.10.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/attrs-22.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/automat-24.8.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hyperlink-17.1.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/incremental-22.10.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/typing-extensions-4.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/zope-interface-5[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] conch? ( >=dev-python/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cryptography-38[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) http2? ( >=dev-python/h2-3.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/priority-1.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) serial? ( >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) websockets? ( dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_pypy3_11? ( >=dev-python/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cython-test-exception-raiser-1.0.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.27[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6.56[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyhamcrest-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/openssh ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.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/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cython-test-exception-raiser-1.0.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.27[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6.56[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyhamcrest-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/openssh ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.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/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cython-test-exception-raiser-1.0.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.27[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6.56[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyhamcrest-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/openssh ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.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/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cython-test-exception-raiser-1.0.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.27[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6.56[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyhamcrest-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/openssh ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.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/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cython-test-exception-raiser-1.0.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.27[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hypothesis-6.56[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyhamcrest-2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/openssh ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ) ) python_targets_pypy3_11? ( dev-lang/pypy:3.11=[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) >=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 ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DESCRIPTION=An asynchronous networking framework written in Python +EAPI=8 +HOMEPAGE=https://twisted.org/ https://github.com/twisted/twisted/ https://pypi.org/project/Twisted/ +IDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/typing-extensions-4.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/zope-interface-5[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +INHERIT=distutils-r1 multiprocessing pypi virtualx +IUSE=conch http2 serial ssl test websockets python_targets_pypy3_11 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance test +LICENSE=MIT +RDEPEND=>=dev-python/attrs-22.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/automat-24.8.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/constantly-15.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hyperlink-17.1.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/incremental-22.10.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/typing-extensions-4.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/zope-interface-5[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] conch? ( >=dev-python/appdirs-1.4.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/bcrypt-3.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/cryptography-38[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) http2? ( >=dev-python/h2-3.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/priority-1.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) serial? ( >=dev-python/pyserial-3.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ssl? ( >=dev-python/pyopenssl-25.2.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/service-identity-18.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/idna-2.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) websockets? ( dev-python/wsproto[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_pypy3_11? ( dev-lang/pypy:3.11=[threads(+)] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+)] ) +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 ) !test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/t/twisted/twisted-26.4.0rc2.tar.gz verify-provenance? ( https://pypi.org/integrity/twisted/v26.4.0rc2/twisted-26.4.0rc2.tar.gz/provenance -> twisted-26.4.0rc2.tar.gz.provenance ) https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_md5_=979e93bf55895278a89a003f75c14f0c diff --git a/metadata/md5-cache/dev-python/uvloop-0.22.1 b/metadata/md5-cache/dev-python/uvloop-0.22.1 index 5fe519abafce..c320d2e43835 100644 --- a/metadata/md5-cache/dev-python/uvloop-0.22.1 +++ b/metadata/md5-cache/dev-python/uvloop-0.22.1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-python/cython-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/pyopenssl-22.0.0[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(-)?] ) test? ( >=dev-libs/libuv-1.11.0:= >=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/aiohttp[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=>=dev-python/cython-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pkg-resources[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/pyopenssl-22.0.0[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(-)?] ) test? ( >=dev-libs/libuv-1.11.0:= >=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/aiohttp[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=>=dev-libs/libuv-1.11.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=Ultra-fast implementation of asyncio event loop on top of libuv @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/u/uvloop/uvloop-0.22.1.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-python/uvloop/uvloop-0.19.0-cython3.patch.xz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=98b650c8ec9d4c4a7b85ac96679a56c5 +_md5_=50ec9a07fe0bf95f3696dc1c30740258 diff --git a/metadata/md5-cache/dev-python/ytmusicapi-1.12.0 b/metadata/md5-cache/dev-python/ytmusicapi-1.12.0 new file mode 100644 index 000000000000..d9d53bbb60eb --- /dev/null +++ b/metadata/md5-cache/dev-python/ytmusicapi-1.12.0 @@ -0,0 +1,16 @@ +BDEPEND=doc? ( || ( ( dev-lang/python:3.14 >=dev-python/sphinx-8.1.3[python_targets_python3_14(-)] dev-python/sphinx-rtd-theme[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 >=dev-python/sphinx-8.1.3[python_targets_python3_13(-)] dev-python/sphinx-rtd-theme[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/sphinx-8.1.3[python_targets_python3_12(-)] dev-python/sphinx-rtd-theme[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/sphinx-8.1.3[python_targets_python3_11(-)] dev-python/sphinx-rtd-theme[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-8.1.3[python_targets_python3_10(-)] dev-python/sphinx-rtd-theme[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) 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 +DESCRIPTION=Unofficial API for YouTube Music +EAPI=8 +HOMEPAGE=https://ytmusicapi.readthedocs.io/ https://github.com/sigma67/ytmusicapi/ https://pypi.org/project/ytmusicapi/ +INHERIT=distutils-r1 pypi +IUSE=doc python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-python/requests[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 +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/y/ytmusicapi/ytmusicapi-1.12.0.tar.gz verify-provenance? ( https://pypi.org/integrity/ytmusicapi/v1.12.0/ytmusicapi-1.12.0.tar.gz/provenance -> ytmusicapi-1.12.0.tar.gz.provenance ) +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=4e42dd935a2c654f0217f6b60b5d26bf diff --git a/metadata/md5-cache/dev-tex/latex2pydata-0.4.1 b/metadata/md5-cache/dev-tex/latex2pydata-0.4.1 index b99da5699d91..aa0b954d8d04 100644 --- a/metadata/md5-cache/dev-tex/latex2pydata-0.4.1 +++ b/metadata/md5-cache/dev-tex/latex2pydata-0.4.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/gpoore/latex2pydata https://pypi.org/project/latex2pydata/ INHERIT=distutils-r1 latex-package 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 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=LPPL-1.3c 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 ) 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 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gpoore/latex2pydata/archive/refs/tags/python/v0.4.1.tar.gz -> latex2pydata-0.4.1.gh.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d latex-package f6529cd874a632d3343b4d264a70a0bc multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=639e3abd579b99c18edd3bc74dcd011b +_md5_=322f8fa1c35bc1c4446562281842ab78 diff --git a/metadata/md5-cache/dev-tex/minted-3.4.0-r1 b/metadata/md5-cache/dev-tex/minted-3.4.0-r1 index 9d13003004b4..16fed3db0fe6 100644 --- a/metadata/md5-cache/dev-tex/minted-3.4.0-r1 +++ b/metadata/md5-cache/dev-tex/minted-3.4.0-r1 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://github.com/gpoore/minted/ INHERIT=distutils-r1 latex-package IUSE=doc 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 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=|| ( BSD LPPL-1.3 ) RDEPEND=>=dev-python/latexrestricted-0.6.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pygments-2.17.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-tex/latex2pydata-0.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-texlive/texlive-latexextra 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 ) 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 ) SLOT=0 SRC_URI=https://github.com/gpoore/minted/archive/refs/tags/latex/v3.4.0.tar.gz -> minted-3.4.0.tar.gz https://github.com/gpoore/minted/commit/45ccea404689680513be3b78d2c0579f6250f963.patch -> minted-3.4.0-explicitly-set-build-backend.patch _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d latex-package f6529cd874a632d3343b4d264a70a0bc multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=8547816c61f28cc3b00daaf0102916fe +_md5_=18bf8d5a4f3af85ec6542faccd43b5cc diff --git a/metadata/md5-cache/dev-texlive/texlive-basic-2024_p72890 b/metadata/md5-cache/dev-texlive/texlive-basic-2024_p72890 index 2ba3f722df72..4c1aaf60af97 100644 --- a/metadata/md5-cache/dev-texlive/texlive-basic-2024_p72890 +++ b/metadata/md5-cache/dev-texlive/texlive-basic-2024_p72890 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source +luajittex -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain RDEPEND=>=app-text/texlive-core-2024[luajittex?] >=app-text/dvipsk-2024.03.11_p70015 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-basic.r72890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsfonts.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtex.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorprofiles.r49086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ec.r25033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enctex.r34957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etex.r70440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etex-pkg.r41784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-def.r70970.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyph-utf8.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphenex.r57387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifplatform.r45533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iftex.r61910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knuth-lib.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knuth-local.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-alt-getopt.r56414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahbtex.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luajittex.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatex.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metafont.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflogo.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfware.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modes.r69113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftex.r71605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plain.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ini-files.r68920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-msg-translations.r71858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlshell.r70419.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-data.r68311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-basic.r72890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsfonts.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtex.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorprofiles.r49086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ec.r25033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enctex.r34957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etex.r70440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etex-pkg.r41784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-def.r70970.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyph-utf8.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphenex.r57387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifplatform.r45533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iftex.r61910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knuth-lib.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knuth-local.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-alt-getopt.r56414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahbtex.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luajittex.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatex.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metafont.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflogo.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfware.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modes.r69113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftex.r71605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plain.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ini-files.r68920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-msg-translations.r71858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlshell.r70419.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-data.r68311.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsfonts.doc.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtex.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm.doc.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorprofiles.doc.r49086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ec.doc.r25033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enctex.doc.r34957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etex.doc.r70440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etex-pkg.doc.r41784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-def.doc.r70970.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyph-utf8.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifplatform.doc.r45533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iftex.doc.r61910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-alt-getopt.doc.r56414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahbtex.doc.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luajittex.doc.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatex.doc.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metafont.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflogo.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfware.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modes.doc.r69113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftex.doc.r71605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ini-files.doc.r68920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-common.doc.r72854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-en.doc.r71152.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlshell.doc.r70419.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-data.doc.r68311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsfonts.doc.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtex.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm.doc.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorprofiles.doc.r49086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ec.doc.r25033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enctex.doc.r34957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etex.doc.r70440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etex-pkg.doc.r41784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-def.doc.r70970.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyph-utf8.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifplatform.doc.r45533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iftex.doc.r61910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-alt-getopt.doc.r56414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahbtex.doc.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luajittex.doc.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatex.doc.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metafont.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflogo.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfware.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modes.doc.r69113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftex.doc.r71605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ini-files.doc.r68920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-common.doc.r72854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-en.doc.r71152.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlshell.doc.r70419.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-data.doc.r68311.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsfonts.source.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyph-utf8.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphenex.source.r57387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifplatform.source.r45533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflogo.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsfonts.source.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyph-utf8.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphenex.source.r57387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifplatform.source.r45533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflogo.source.r42428.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=ec48dc3eaf214be8e69f8bdc3724bee0 +_md5_=0683f98680fc74cdf27924f98e60321e diff --git a/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2024_p71940 b/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2024_p71940 index 476726106755..037e2430d0e2 100644 --- a/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2024_p71940 +++ b/metadata/md5-cache/dev-texlive/texlive-bibtexextra-2024_p71940 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Artistic Artistic-2 BSD-4 CC-BY-SA-3.0 CC-BY-SA-4.0 GPL-1 GPL-1+ GPL-2 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain PDEPEND=>=dev-tex/biblatex-3.20 RDEPEND=>=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-bibtexextra.r71940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aaai-named.r52470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aichej.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ajl.r34016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsrefs.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/annotate.r52824.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apacite.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apalike-ejor.r59667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apalike2.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaeologie.r68476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authordate.r52564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beebe.r72450.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/besjournals.r45662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bestpapers.r38708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2gls.r69635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2qr.r71940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibarts.r67407.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibcop.r72840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biber-ms.r66478.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibexport.r50677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibhtml.r31607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-abnt.r72565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ajc2020unofficial.r54401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-anonymous.r48548.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-apa.r66605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-apa6.r56209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-archaeology.r53281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-arthistory-bonn.r46637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bath.r63401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bookinarticle.r40323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bookinother.r54015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bwl.r26556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-caspervector.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-chem.r57904.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-chicago.r70955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-claves.r43723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-cv.r59433.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-dw.r66579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-enc.r44627.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ext.r70744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-fiwi.r45876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-gb7714-2015.r72863.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-german-legal.r66461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-gost.r66935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-historian.r19787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ieee.r72873.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ijsra.r41634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-iso690.r62866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-jura2.r64762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-juradiss.r56502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-license.r58437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-lncs.r67053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-lni.r68755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-luh-ipw.r32180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.r66977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-mla.r62138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-morenames.r43049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ms.r66480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-multiple-dm.r37081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-musuos.r24097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nature.r57262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nejm.r49839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nottsclassic.r41596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.r48983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-oxref.r72164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-philosophy.r64414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-phys.r71905.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-publist.r72079.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-readbbl.r61549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-realauthor.r45865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-sbl.r71470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-science.r48945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-shortfields.r45858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-socialscienceshuberlin.r47839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-software.r64030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-source-division.r45379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-spbasic.r61439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-subseries.r43330.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-swiss-legal.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-trad.r58169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.r44653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-unified.r64975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-vancouver.r55339.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex2bibitem.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblist.r17116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtexperllibs.r72184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtools.r67386.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopicprefix.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibunits.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biolett-bst.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookdb.r37536.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breakcites.r21014.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cell.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chbibref.r17120.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chembst.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicago.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicago-annote.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicagoa.r52567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicagolinks.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chscite.r28552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citation-style-language.r72884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citeall.r45975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citeref.r47407.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collref.r46358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/compactbib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossrefware.r72217.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/custom-bib.r24729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/din1505.r19441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dk-bib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doipubmed.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecobiblatex.r39233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econ-bst.r68761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/economic.r32639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figbib.r19388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footbib.r17115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/francais-bst.r69854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gbt7714.r64633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geschichtsfrkl.r42121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harvard.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harvmac.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-bibliography.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/historische-zeitschrift.r42635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icite.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijqc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinebib.r22018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iopart-num.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/is-bst.r52623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jbact.r52717.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmb.r52718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jneurosci.r17346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurabib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ksfh_nat.r24825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listbib.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logreq.r53003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltb2bib.r43746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luabibentry.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/margbib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibibliography.r30939.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/munich.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nar.r38100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newcastle-bst.r62856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nmbib.r71138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes2bib.r52231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notex-bst.r42361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oscola.r54328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perception.r48861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plainyr.r52783.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pnas2009.r16287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsc.r41923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showtags.r20336.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sort-by-letters.r27128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitbib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turabian-formatting.r58561.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-wtal-ger.r31541.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-wtal-lin.r31409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urlbst.r65694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/usebib.r25969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vak.r23431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/windycity.r67011.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcite.r53486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zootaxa-bst.r50619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-bibtexextra.r71940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aaai-named.r52470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aichej.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ajl.r34016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsrefs.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annotate.r52824.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apacite.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apalike-ejor.r59667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apalike2.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaeologie.r68476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authordate.r52564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beebe.r72450.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/besjournals.r45662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bestpapers.r38708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2gls.r69635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2qr.r71940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibarts.r67407.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibcop.r72840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biber-ms.r66478.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibexport.r50677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibhtml.r31607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-abnt.r72565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ajc2020unofficial.r54401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-anonymous.r48548.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-apa.r66605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-apa6.r56209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-archaeology.r53281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-arthistory-bonn.r46637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bath.r63401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bookinarticle.r40323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bookinother.r54015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bwl.r26556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-caspervector.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-chem.r57904.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-chicago.r70955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-claves.r43723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-cv.r59433.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-dw.r66579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-enc.r44627.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ext.r70744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-fiwi.r45876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-gb7714-2015.r72863.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-german-legal.r66461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-gost.r66935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-historian.r19787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ieee.r72873.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ijsra.r41634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-iso690.r62866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-jura2.r64762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-juradiss.r56502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-license.r58437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-lncs.r67053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-lni.r68755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-luh-ipw.r32180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-manuscripts-philology.r66977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-mla.r62138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-morenames.r43049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ms.r66480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-multiple-dm.r37081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-musuos.r24097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nature.r57262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nejm.r49839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nottsclassic.r41596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-opcit-booktitle.r48983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-oxref.r72164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-philosophy.r64414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-phys.r71905.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-publist.r72079.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-readbbl.r61549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-realauthor.r45865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-sbl.r71470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-science.r48945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-shortfields.r45858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-socialscienceshuberlin.r47839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-software.r64030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-source-division.r45379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-spbasic.r61439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-subseries.r43330.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-swiss-legal.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-trad.r58169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-true-citepages-omit.r44653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-unified.r64975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-vancouver.r55339.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex2bibitem.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblist.r17116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtexperllibs.r72184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtools.r67386.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopicprefix.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibunits.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biolett-bst.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookdb.r37536.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breakcites.r21014.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cell.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chbibref.r17120.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chembst.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicago.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicago-annote.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicagoa.r52567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicagolinks.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chscite.r28552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citation-style-language.r72884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citeall.r45975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citeref.r47407.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collref.r46358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/compactbib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossrefware.r72217.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/custom-bib.r24729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/din1505.r19441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dk-bib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doipubmed.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecobiblatex.r39233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econ-bst.r68761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/economic.r32639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figbib.r19388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footbib.r17115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/francais-bst.r69854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gbt7714.r64633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geschichtsfrkl.r42121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harvard.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harvmac.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-bibliography.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/historische-zeitschrift.r42635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icite.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijqc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinebib.r22018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iopart-num.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/is-bst.r52623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jbact.r52717.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmb.r52718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jneurosci.r17346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurabib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ksfh_nat.r24825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listbib.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logreq.r53003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltb2bib.r43746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luabibentry.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/margbib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibibliography.r30939.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/munich.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nar.r38100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newcastle-bst.r62856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nmbib.r71138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes2bib.r52231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notex-bst.r42361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oscola.r54328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perception.r48861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plainyr.r52783.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pnas2009.r16287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsc.r41923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showtags.r20336.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sort-by-letters.r27128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitbib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turabian-formatting.r58561.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-wtal-ger.r31541.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-wtal-lin.r31409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urlbst.r65694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/usebib.r25969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vak.r23431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/windycity.r67011.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcite.r53486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zootaxa-bst.r50619.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsrefs.doc.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apacite.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apalike-ejor.doc.r59667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaeologie.doc.r68476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authordate.doc.r52564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/besjournals.doc.r45662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bestpapers.doc.r38708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2gls.doc.r69635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2qr.doc.r71940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibarts.doc.r67407.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibcop.doc.r72840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biber-ms.doc.r66478.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibexport.doc.r50677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibhtml.doc.r31607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-abnt.doc.r72565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ajc2020unofficial.doc.r54401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-anonymous.doc.r48548.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-apa.doc.r66605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-apa6.doc.r56209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-archaeology.doc.r53281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-arthistory-bonn.doc.r46637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bath.doc.r63401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bookinarticle.doc.r40323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bookinother.doc.r54015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bwl.doc.r26556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-caspervector.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-chem.doc.r57904.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-chicago.doc.r70955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-claves.doc.r43723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-cv.doc.r59433.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-dw.doc.r66579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-enc.doc.r44627.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ext.doc.r70744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-fiwi.doc.r45876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-gb7714-2015.doc.r72863.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-german-legal.doc.r66461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-gost.doc.r66935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-historian.doc.r19787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ieee.doc.r72873.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ijsra.doc.r41634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-iso690.doc.r62866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-jura2.doc.r64762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-juradiss.doc.r56502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-license.doc.r58437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-lncs.doc.r67053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-lni.doc.r68755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-luh-ipw.doc.r32180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.doc.r66977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-mla.doc.r62138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-morenames.doc.r43049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-ms.doc.r66480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-multiple-dm.doc.r37081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-musuos.doc.r24097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nature.doc.r57262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nejm.doc.r49839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nottsclassic.doc.r41596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.doc.r48983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-oxref.doc.r72164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-philosophy.doc.r64414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-phys.doc.r71905.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-publist.doc.r72079.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-readbbl.doc.r61549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-realauthor.doc.r45865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-sbl.doc.r71470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-science.doc.r48945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-shortfields.doc.r45858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-socialscienceshuberlin.doc.r47839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-software.doc.r64030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-source-division.doc.r45379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-spbasic.doc.r61439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-subseries.doc.r43330.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-swiss-legal.doc.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-trad.doc.r58169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.doc.r44653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-unified.doc.r64975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-vancouver.doc.r55339.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex2bibitem.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblist.doc.r17116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtexperllibs.doc.r72184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopic.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopicprefix.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibunits.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biolett-bst.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookdb.doc.r37536.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breakcites.doc.r21014.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cell.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chbibref.doc.r17120.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chembst.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicago-annote.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chicagolinks.doc.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chscite.doc.r28552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citation-style-language.doc.r72884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citeall.doc.r45975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/citeref.doc.r47407.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collref.doc.r46358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossrefware.doc.r72217.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/custom-bib.doc.r24729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/din1505.doc.r19441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dk-bib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doipubmed.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecobiblatex.doc.r39233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econ-bst.doc.r68761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/economic.doc.r32639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figbib.doc.r19388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footbib.doc.r17115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/francais-bst.doc.r69854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gbt7714.doc.r64633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geschichtsfrkl.doc.r42121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harvard.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harvmac.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-bibliography.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/historische-zeitschrift.doc.r42635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icite.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ietfbibs.doc.r41332.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijqc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinebib.doc.r22018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iopart-num.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/is-bst.doc.r52623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jneurosci.doc.r17346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurabib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listbib.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logreq.doc.r53003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltb2bib.doc.r43746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luabibentry.doc.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/margbib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibibliography.doc.r30939.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/munich.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newcastle-bst.doc.r62856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nmbib.doc.r71138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes2bib.doc.r52231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oscola.doc.r54328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perception.doc.r48861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsc.doc.r41923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showtags.doc.r20336.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sort-by-letters.doc.r27128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitbib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turabian-formatting.doc.r58561.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-wtal-ger.doc.r31541.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-wtal-lin.doc.r31409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urlbst.doc.r65694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/usebib.doc.r25969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vak.doc.r23431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/windycity.doc.r67011.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcite.doc.r53486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zootaxa-bst.doc.r50619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsrefs.doc.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apacite.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apalike-ejor.doc.r59667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaeologie.doc.r68476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authordate.doc.r52564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/besjournals.doc.r45662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bestpapers.doc.r38708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2gls.doc.r69635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2qr.doc.r71940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibarts.doc.r67407.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibcop.doc.r72840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biber-ms.doc.r66478.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibexport.doc.r50677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibhtml.doc.r31607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-abnt.doc.r72565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ajc2020unofficial.doc.r54401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-anonymous.doc.r48548.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-apa.doc.r66605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-apa6.doc.r56209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-archaeology.doc.r53281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-arthistory-bonn.doc.r46637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bath.doc.r63401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bookinarticle.doc.r40323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bookinother.doc.r54015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bwl.doc.r26556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-caspervector.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-chem.doc.r57904.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-chicago.doc.r70955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-claves.doc.r43723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-cv.doc.r59433.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-dw.doc.r66579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-enc.doc.r44627.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ext.doc.r70744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-fiwi.doc.r45876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-gb7714-2015.doc.r72863.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-german-legal.doc.r66461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-gost.doc.r66935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-historian.doc.r19787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ieee.doc.r72873.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ijsra.doc.r41634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-iso690.doc.r62866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-jura2.doc.r64762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-juradiss.doc.r56502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-license.doc.r58437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-lncs.doc.r67053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-lni.doc.r68755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-luh-ipw.doc.r32180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-manuscripts-philology.doc.r66977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-mla.doc.r62138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-morenames.doc.r43049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-ms.doc.r66480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-multiple-dm.doc.r37081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-musuos.doc.r24097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nature.doc.r57262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nejm.doc.r49839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nottsclassic.doc.r41596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-opcit-booktitle.doc.r48983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-oxref.doc.r72164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-philosophy.doc.r64414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-phys.doc.r71905.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-publist.doc.r72079.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-readbbl.doc.r61549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-realauthor.doc.r45865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-sbl.doc.r71470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-science.doc.r48945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-shortfields.doc.r45858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-socialscienceshuberlin.doc.r47839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-software.doc.r64030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-source-division.doc.r45379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-spbasic.doc.r61439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-subseries.doc.r43330.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-swiss-legal.doc.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-trad.doc.r58169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-true-citepages-omit.doc.r44653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-unified.doc.r64975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-vancouver.doc.r55339.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex2bibitem.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblist.doc.r17116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtexperllibs.doc.r72184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopic.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopicprefix.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibunits.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biolett-bst.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookdb.doc.r37536.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breakcites.doc.r21014.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cell.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chbibref.doc.r17120.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chembst.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicago-annote.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chicagolinks.doc.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chscite.doc.r28552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citation-style-language.doc.r72884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citeall.doc.r45975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/citeref.doc.r47407.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collref.doc.r46358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossrefware.doc.r72217.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/custom-bib.doc.r24729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/din1505.doc.r19441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dk-bib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doipubmed.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecobiblatex.doc.r39233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econ-bst.doc.r68761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/economic.doc.r32639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figbib.doc.r19388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footbib.doc.r17115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/francais-bst.doc.r69854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gbt7714.doc.r64633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geschichtsfrkl.doc.r42121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harvard.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harvmac.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-bibliography.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/historische-zeitschrift.doc.r42635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icite.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ietfbibs.doc.r41332.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijqc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinebib.doc.r22018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iopart-num.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/is-bst.doc.r52623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jneurosci.doc.r17346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurabib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listbib.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logreq.doc.r53003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltb2bib.doc.r43746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luabibentry.doc.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/margbib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibibliography.doc.r30939.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/munich.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newcastle-bst.doc.r62856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nmbib.doc.r71138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes2bib.doc.r52231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oscola.doc.r54328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perception.doc.r48861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsc.doc.r41923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showtags.doc.r20336.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sort-by-letters.doc.r27128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitbib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turabian-formatting.doc.r58561.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-wtal-ger.doc.r31541.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-wtal-lin.doc.r31409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urlbst.doc.r65694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/usebib.doc.r25969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vak.doc.r23431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/windycity.doc.r67011.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcite.doc.r53486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zootaxa-bst.doc.r50619.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsrefs.source.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apacite.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaeologie.source.r68476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2gls.source.r69635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib2qr.source.r71940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibarts.source.r67407.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibcop.source.r72840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biber-ms.source.r66478.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibexport.source.r50677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-archaeology.source.r53281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-bath.source.r63401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-nejm.source.r49839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-oxref.source.r72164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-philosophy.source.r64414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-software.source.r64030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtexperllibs.source.r72184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtools.source.r67386.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopic.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibtopicprefix.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibunits.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chembst.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chscite.source.r28552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collref.source.r46358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/custom-bib.source.r24729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dk-bib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doipubmed.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footbib.source.r17115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/francais-bst.source.r69854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gbt7714.source.r64633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geschichtsfrkl.source.r42121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harvard.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-bibliography.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icite.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurabib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listbib.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltb2bib.source.r43746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luabibentry.source.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/margbib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibibliography.source.r30939.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nmbib.source.r71138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes2bib.source.r52231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsc.source.r41923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitbib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urlbst.source.r65694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/usebib.source.r25969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcite.source.r53486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsrefs.source.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apacite.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaeologie.source.r68476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2gls.source.r69635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib2qr.source.r71940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibarts.source.r67407.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibcop.source.r72840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biber-ms.source.r66478.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibexport.source.r50677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-archaeology.source.r53281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-bath.source.r63401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-nejm.source.r49839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-oxref.source.r72164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-philosophy.source.r64414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-software.source.r64030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtexperllibs.source.r72184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtools.source.r67386.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopic.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibtopicprefix.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibunits.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chembst.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chscite.source.r28552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collref.source.r46358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/custom-bib.source.r24729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dk-bib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doipubmed.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footbib.source.r17115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/francais-bst.source.r69854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gbt7714.source.r64633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geschichtsfrkl.source.r42121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harvard.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-bibliography.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icite.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurabib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listbib.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltb2bib.source.r43746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luabibentry.source.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/margbib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibibliography.source.r30939.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nmbib.source.r71138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes2bib.source.r52231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsc.source.r41923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitbib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urlbst.source.r65694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/usebib.source.r25969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcite.source.r53486.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9fa877195f91ec22abe78f6e74cde318 +_md5_=cfc4bd0d1736e1c04c3e37835873faa2 diff --git a/metadata/md5-cache/dev-texlive/texlive-binextra-2024_p72338-r2 b/metadata/md5-cache/dev-texlive/texlive-binextra-2024_p72338-r2 index 02502bcb6e76..95ae7b28ccc3 100644 --- a/metadata/md5-cache/dev-texlive/texlive-binextra-2024_p72338-r2 +++ b/metadata/md5-cache/dev-texlive/texlive-binextra-2024_p72338-r2 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=shell-completion texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 Artistic BSD BSD-2 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/dvisvgm-3.2.2 >=app-text/pdfjam-3.12 >=dev-tex/bibtexu-3.72 >=dev-tex/latexdiff-1.3.4 >=dev-tex/latexmk-4.85 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-binextra.r72338.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a2ping.r52964.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adhocfilelist.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arara.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bundledoc.r64620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checklistings.r38300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chklref.r52649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clojure-pamphlet.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cluttex.r68912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctan-o-mat.r51578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanbib.r68650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanify.r44129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanupload.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctie.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cweb.r72731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/de-macro.r66746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/digestif.r72163.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtl.r62387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxgen.r51663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviasm.r71902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvicopy.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviinfox.r59216.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviout-util.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easydtx.r68514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/findhyph.r47444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fragmaster.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/git-latexdiff.r54732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/installfont.r31205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ketcindy.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3sys-query.r70889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-git-log.r71402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-papersize.r53131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2man.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2nemeth.r65269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexfileversion.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexindent.r71840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexpand.r66226.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/light-latex-make.r66473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings-ext.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxfileinfo.r38663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltximg.r59335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/make4ht.r72626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/match_parens.r66681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflua.r62774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkjobtexmf.r29725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optexcount.r59817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patgen.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfbook2.r53521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcrop.r66862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdflatexpicscale.r72650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftex-quiet.r49169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftosrc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfxup.r71513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pfarrei.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkfix.r26032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkfix-helper.r56061.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppmcheckpdf.r69527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/purifyeps.r29725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythontex.r59514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/runtexshebang.r68882.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seetexk.r57972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spix.r65050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sqltex.r72396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srcredact.r38710.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sty2dtx.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synctex.r66203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex4ebook.r70112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texaccents.r64447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texblend.r68961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texcount.r49013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdef.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdiff.r29752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdirflatten.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdoc.r70579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texfot.r70969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texliveonfly.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texloganalyser.r54526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlogfilter.r71525.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlogsieve.r69436.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texosquery.r53676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texplate.r71963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texware.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tie.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlcockpit.r54857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typeoutfileinfo.r67526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/web.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xindex.r72605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpdfopen.r65952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-binextra.r72338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a2ping.r52964.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adhocfilelist.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arara.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bundledoc.r64620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checklistings.r38300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chklref.r52649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clojure-pamphlet.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cluttex.r68912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctan-o-mat.r51578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanbib.r68650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanify.r44129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanupload.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctie.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cweb.r72731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/de-macro.r66746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/digestif.r72163.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtl.r62387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxgen.r51663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviasm.r71902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvicopy.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviinfox.r59216.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviout-util.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easydtx.r68514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/findhyph.r47444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fragmaster.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/git-latexdiff.r54732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/installfont.r31205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ketcindy.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3sys-query.r70889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-git-log.r71402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-papersize.r53131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2man.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2nemeth.r65269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexfileversion.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexindent.r71840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexpand.r66226.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/light-latex-make.r66473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings-ext.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxfileinfo.r38663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltximg.r59335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/make4ht.r72626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/match_parens.r66681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflua.r62774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkjobtexmf.r29725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optexcount.r59817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patgen.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfbook2.r53521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcrop.r66862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdflatexpicscale.r72650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftex-quiet.r49169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftosrc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfxup.r71513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pfarrei.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkfix.r26032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkfix-helper.r56061.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppmcheckpdf.r69527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/purifyeps.r29725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythontex.r59514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/runtexshebang.r68882.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seetexk.r57972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spix.r65050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sqltex.r72396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srcredact.r38710.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sty2dtx.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synctex.r66203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex4ebook.r70112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texaccents.r64447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texblend.r68961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texcount.r49013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdef.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdiff.r29752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdirflatten.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdoc.r70579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texfot.r70969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texliveonfly.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texloganalyser.r54526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlogfilter.r71525.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlogsieve.r69436.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texosquery.r53676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texplate.r71963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texware.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tie.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlcockpit.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typeoutfileinfo.r67526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/web.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xindex.r72605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpdfopen.r65952.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/a2ping.doc.r52964.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adhocfilelist.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arara.doc.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bundledoc.doc.r64620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checklistings.doc.r38300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chklref.doc.r52649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clojure-pamphlet.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cluttex.doc.r68912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctan-o-mat.doc.r51578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctan_chk.doc.r36304.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanbib.doc.r68650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanify.doc.r44129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctanupload.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctie.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cweb.doc.r72731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/de-macro.doc.r66746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/digestif.doc.r72163.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtl.doc.r62387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxgen.doc.r51663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviasm.doc.r71902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvicopy.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviinfox.doc.r59216.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviout-util.doc.r66186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easydtx.doc.r68514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/findhyph.doc.r47444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fragmaster.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/git-latexdiff.doc.r54732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hook-pre-commit-pkg.doc.r41378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/installfont.doc.r31205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ketcindy.doc.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3sys-query.doc.r70889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-git-log.doc.r71402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-papersize.doc.r53131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2man.doc.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2nemeth.doc.r65269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexfileversion.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexindent.doc.r71840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexpand.doc.r66226.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/light-latex-make.doc.r66473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings-ext.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxfileinfo.doc.r38663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltximg.doc.r59335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/make4ht.doc.r72626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/match_parens.doc.r66681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkjobtexmf.doc.r29725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optexcount.doc.r59817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patgen.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfbook2.doc.r53521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcrop.doc.r66862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdflatexpicscale.doc.r72650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftex-quiet.doc.r49169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftosrc.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfxup.doc.r71513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pfarrei.doc.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkfix.doc.r26032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkfix-helper.doc.r56061.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppmcheckpdf.doc.r69527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/purifyeps.doc.r29725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythontex.doc.r59514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/runtexshebang.doc.r68882.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seetexk.doc.r57972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spix.doc.r65050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sqltex.doc.r72396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srcredact.doc.r38710.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sty2dtx.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synctex.doc.r66203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex4ebook.doc.r70112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texaccents.doc.r64447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texblend.doc.r68961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texcount.doc.r49013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdef.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdiff.doc.r29752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdirflatten.doc.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdoc.doc.r70579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texfot.doc.r70969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texliveonfly.doc.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texloganalyser.doc.r54526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlogfilter.doc.r71525.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlogsieve.doc.r69436.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texosquery.doc.r53676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texplate.doc.r71963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texware.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tie.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlcockpit.doc.r54857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typeoutfileinfo.doc.r67526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/web.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xindex.doc.r72605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpdfopen.doc.r65952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a2ping.doc.r52964.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adhocfilelist.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arara.doc.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bundledoc.doc.r64620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checklistings.doc.r38300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chklref.doc.r52649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clojure-pamphlet.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cluttex.doc.r68912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctan-o-mat.doc.r51578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctan_chk.doc.r36304.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanbib.doc.r68650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanify.doc.r44129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctanupload.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctie.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cweb.doc.r72731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/de-macro.doc.r66746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/digestif.doc.r72163.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtl.doc.r62387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxgen.doc.r51663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviasm.doc.r71902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvicopy.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviinfox.doc.r59216.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviout-util.doc.r66186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easydtx.doc.r68514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/findhyph.doc.r47444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fragmaster.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/git-latexdiff.doc.r54732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hook-pre-commit-pkg.doc.r41378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/installfont.doc.r31205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ketcindy.doc.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3sys-query.doc.r70889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-git-log.doc.r71402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-papersize.doc.r53131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2man.doc.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2nemeth.doc.r65269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexfileversion.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexindent.doc.r71840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexpand.doc.r66226.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/light-latex-make.doc.r66473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings-ext.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxfileinfo.doc.r38663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltximg.doc.r59335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/make4ht.doc.r72626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/match_parens.doc.r66681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkjobtexmf.doc.r29725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optexcount.doc.r59817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patgen.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfbook2.doc.r53521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcrop.doc.r66862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdflatexpicscale.doc.r72650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftex-quiet.doc.r49169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftosrc.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfxup.doc.r71513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pfarrei.doc.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkfix.doc.r26032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkfix-helper.doc.r56061.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppmcheckpdf.doc.r69527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/purifyeps.doc.r29725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythontex.doc.r59514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/runtexshebang.doc.r68882.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seetexk.doc.r57972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spix.doc.r65050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sqltex.doc.r72396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srcredact.doc.r38710.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sty2dtx.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synctex.doc.r66203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex4ebook.doc.r70112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texaccents.doc.r64447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texblend.doc.r68961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texcount.doc.r49013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdef.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdiff.doc.r29752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdirflatten.doc.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdoc.doc.r70579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texfot.doc.r70969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texliveonfly.doc.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texloganalyser.doc.r54526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlogfilter.doc.r71525.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlogsieve.doc.r69436.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texosquery.doc.r53676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texplate.doc.r71963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texware.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tie.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlcockpit.doc.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typeoutfileinfo.doc.r67526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/web.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xindex.doc.r72605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpdfopen.doc.r65952.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/adhocfilelist.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arara.source.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checklistings.source.r38300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clojure-pamphlet.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings-ext.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkjobtexmf.source.r29725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optexcount.source.r59817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pfarrei.source.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythontex.source.r59514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sqltex.source.r72396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texaccents.source.r64447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdef.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texosquery.source.r53676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texplate.source.r71963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlcockpit.source.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adhocfilelist.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arara.source.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checklistings.source.r38300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clojure-pamphlet.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings-ext.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkjobtexmf.source.r29725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optexcount.source.r59817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pfarrei.source.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythontex.source.r59514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sqltex.source.r72396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texaccents.source.r64447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdef.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texosquery.source.r53676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texplate.source.r71963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlcockpit.source.r54857.tar.xz ) _eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 shell-completion 0b655d0d825e157a5e99c463bddaac16 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=9b5786885151121c8f122694d16285d8 +_md5_=85ddc321b54496eddf03941d9417e4c2 diff --git a/metadata/md5-cache/dev-texlive/texlive-context-2024_p72727 b/metadata/md5-cache/dev-texlive/texlive-context-2024_p72727 index b42bdba668fd..4747a9eb059a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-context-2024_p72727 +++ b/metadata/md5-cache/dev-texlive/texlive-context-2024_p72727 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=greadme texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD BSD-2 GPL-1+ GPL-2 GPL-3 MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 dev-lang/ruby >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-context.r72727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context.r72745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-calendar-examples.r66947.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-chat.r72010.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-collating-marks.r68696.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-companion-fonts.r72732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-cyrillicnumbers.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-filter.r62070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-gnuplot.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-handlecsv.r70065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-legacy.r70191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-letter.r60787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-mathsets.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-pocketdiary.r66953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-simpleslides.r67070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-squares.r70128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-sudoku.r67289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-texlive.r70437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-transliterator.r61127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-typescripts.r60422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-vim.r62071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-visualcounter.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmn.r45751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-context.r72727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context.r72745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-calendar-examples.r66947.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-chat.r72010.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-collating-marks.r68696.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-companion-fonts.r72732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-cyrillicnumbers.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-filter.r62070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-gnuplot.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-handlecsv.r70065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-legacy.r70191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-letter.r60787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-mathsets.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-pocketdiary.r66953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-simpleslides.r67070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-squares.r70128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-sudoku.r67289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-texlive.r70437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-transliterator.r61127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-typescripts.r60422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-vim.r62071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-visualcounter.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmn.r45751.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/context.doc.r72745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-calendar-examples.doc.r66947.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-chat.doc.r72010.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-collating-marks.doc.r68696.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-companion-fonts.doc.r72732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-cyrillicnumbers.doc.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-filter.doc.r62070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-gnuplot.doc.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-handlecsv.doc.r70065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-legacy.doc.r70191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-letter.doc.r60787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-mathsets.doc.r47085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-notes-zh-cn.doc.r66725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-pocketdiary.doc.r66953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-simpleslides.doc.r67070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-squares.doc.r70128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-sudoku.doc.r67289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-texlive.doc.r70437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-transliterator.doc.r61127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-typescripts.doc.r60422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-vim.doc.r62071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-visualcounter.doc.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context.doc.r72745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-calendar-examples.doc.r66947.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-chat.doc.r72010.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-collating-marks.doc.r68696.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-companion-fonts.doc.r72732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-cyrillicnumbers.doc.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-filter.doc.r62070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-gnuplot.doc.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-handlecsv.doc.r70065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-legacy.doc.r70191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-letter.doc.r60787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-mathsets.doc.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-notes-zh-cn.doc.r66725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-pocketdiary.doc.r66953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-simpleslides.doc.r67070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-squares.doc.r70128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-sudoku.doc.r67289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-texlive.doc.r70437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-transliterator.doc.r61127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-typescripts.doc.r60422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-vim.doc.r62071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-visualcounter.doc.r47085.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/context-visualcounter.source.r47085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/context-visualcounter.source.r47085.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 greadme 074e3d831f92e9b73038f05bb76c9548 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=6a2432871f86d4cb1ef7ad775b19d2d6 +_md5_=085148bab81b8c444c124d8d3ea9c93d diff --git a/metadata/md5-cache/dev-texlive/texlive-fontsextra-2024_p72727 b/metadata/md5-cache/dev-texlive/texlive-fontsextra-2024_p72727 index f51362412da8..c3f50626d9ec 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontsextra-2024_p72727 +++ b/metadata/md5-cache/dev-texlive/texlive-fontsextra-2024_p72727 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 BSD BSD-2 CC-BY-1.0 CC-BY-4.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-fontsextra.r72727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aboensis.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/academicons.r62622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accanthis.r64844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adforn.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfsymbols.r72458.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aesupp.r58253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alegreya.r64384.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alfaslabone.r57452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algolrevived.r71368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/allrunes.r42221.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/almendra.r64539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/almfixed.r35065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/andika.r64540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonymouspro.r51631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antiqua.r24266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antt.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaic.r38005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archivo.r57283.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arev.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arimo.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arsenal.r68191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arvo.r57213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asana-math.r59629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asapsym.r40201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascii-font.r29989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aspectratio.r25243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/astro.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atkinson.r71048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/augie.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auncial-new.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aurical.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/b1encoding.r21271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barcodes.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervaldadf.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervaldx.r71145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervillef.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbding.r17186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbm.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbm-macros.r17224.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbold.r17187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbold-type1.r33143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bboldx.r65424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/belleek.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bera.r20031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/berenisadf.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beuron.r46374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bguq.r27401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitter.r67598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blacklettert1.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boisik.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bonum-otf.r71894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookhands.r46480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boondox.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braille.r20655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brushscr.r28363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cabin.r68373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/caladea.r64549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calligra.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calligra-type1.r24302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cantarell.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carlito.r64624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carolmin-ps.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadia-code.r68485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadiamono-otf.r72257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccicons.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cfr-initials.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cfr-lm.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/charissil.r64998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cherokee.r21046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chivo.r65029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cinzel.r64550.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clara.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clearsans.r64400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-lgc.r28250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-mf-extra-bold.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-unicode.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmathbb.r56414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmbright.r21107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmexb.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmll.r17964.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmpica.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmsrb.r54706.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmtiup.r39728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmupint.r54735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cochineal.r70528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coelacanth.r64558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comfortaa.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comicneue.r54891.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath-fonts.r17218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath-otf.r72660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cookingsymbols.r35929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooperhewitt.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cormorantgaramond.r71057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/countriesofeurope.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courier-scaled.r24940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courierten.r55436.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crimson.r64559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crimsonpro.r64565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cryst.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cuprum.r49909.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyklop.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic-modern.r71183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dancers.r13293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dantelogo.r38599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dejavu.r31771.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dejavu-otf.r45991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dice.r28501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dictsym.r69720.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dingbat.r27918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/domitian.r55286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doublestroke.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doulossil.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dozenal.r47680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drm.r38157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/droid.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dsserif.r60898.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duerer.r20741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duerer-latex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dutchcal.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ean.r20851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebgaramond.r71069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebgaramond-maths.r52168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eco.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eczar.r57716.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eiad.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eiad-ltx.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ektype-tanka.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/electrumadf.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elvish.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigrafica.r17210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsdice.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erewhon.r70759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erewhon-math.r70295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esrelation.r37236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esstix.r22426.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esvect.r32098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etbb.r69098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euler-math.r70296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eulervm.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euxm.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbb.r55728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fdsymbol.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetamont.r43812.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feyn.r63945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fge.r71737.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fira.r64422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firamath.r56672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firamath-otf.r68233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foekfont.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonetika.r21326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontawesome.r48145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontawesome5.r63207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontmfizz.r43546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonts-churchslavonic.r67473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forum.r64566.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fourier.r72243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fouriernc.r29646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frcursive.r24559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frederika2016.r42157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frimurer.r56704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garamond-libre.r71058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garamond-math.r61481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gelasio.r71047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gelasiomath.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogy.r25112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentium-tug.r63470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsartemisia.r19469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsbodoni.r28484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfscomplutum.r19469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsdidot.r69112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsdidotclassic.r52778.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsneohellenic.r63944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsneohellenicmath.r63928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfssolomos.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gillcm.r19878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gillius.r64865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnu-freefont.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gofonts.r64358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gothic.r49869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greenpoint.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grotesq.r35859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gudea.r57359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hacm.r27671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hamnosys.r61941.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hands.r13293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-font.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math-font.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heros-otf.r64695.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heuristica.r69649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfbright.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfoldsty.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hindmadurai.r57360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibarra.r71059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifsym.r24868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imfellenglish.r64568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inconsolata.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inconsolata-nerd-font.r70871.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/initials.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inriafonts.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inter.r68966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipaex-type1.r47700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iwona.r19611.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jablantile.r16364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jamtimes.r20408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/josefin.r64569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/junicode.r71871.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/junicodevf.r71920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kixfont.r18488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kpfonts.r72680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kpfonts-otf.r71153.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kurier.r19612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lato.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lete-sans-math.r71836.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexend.r57564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lfb.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertine.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinegc.r44616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-fonts.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-otf.r68333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-type1.r72354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinust1math.r71428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librebaskerville.r64421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librebodoni.r64431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librecaslon.r64432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librefranklin.r64441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libris.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lineara.r63169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linguisticspro.r64858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lobster2.r64442.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logix.r63688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luwiantype.r71820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lxfonts.r32354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ly1.r63565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magra.r57373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marcellus.r64451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathabx.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathabx-type1.r21129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathdesign.r31639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdputu.r20298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdsymbol.r28399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/merriweather.r64452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metsymb.r68175.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfb-oldstyle.r71982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miama.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mintspirit.r64461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/missaali.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlmodern.r57458.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnsymbol.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/montserrat.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpfonts.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mweights.r53520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newcomputermodern.r72735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpx.r72879.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtx.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtxsf.r69597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtxtt.r70620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/niceframe-type1.r71849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nimbus15.r72894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nkarta.r16437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noto.r64351.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noto-emoji.r62950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notomath.r71429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nunito.r57429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/obnov.r33355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocherokee.r25689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-b.r20852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-b-outline.r20969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ogham.r24876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oinuit.r28668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/old-arrows.r42872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldlatin.r17932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldstandard.r70421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opensans.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orkhun.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oswald.r60784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overlock.r64495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pacioli.r24947.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagella-otf.r64705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paratype.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phaistos.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonetic.r56468.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pigpen.r69687.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/playfair.r64857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plex.r69154.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plex-otf.r68238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plimsoll.r56605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poiretone.r64856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poltawski.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prodint.r21893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punk.r27388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punk-latex.r27389.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punknova.r24649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxtxalfa.r60847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qualitype.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quattrocento.r64372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/raleway.r42629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recycle.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rit-fonts.r67659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roboto.r64350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romandeadf.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rosario.r51688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsfso.r60849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ruscap.r71123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmathaccent.r53628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmathfonts.r72563.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauter.r13293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauterfonts.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schola-otf.r64734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scholax.r61836.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schulschriften.r59388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semaphor.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shobhika.r50555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleicons.r72797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skull.r51907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourcecodepro.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourcesanspro.r54892.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourceserifpro.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spectral.r64528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srbtiks.r63308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/starfont.r19982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/staves.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/step.r57307.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stepgreek.r57074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stickstoo.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix2-otf.r58735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix2-type1.r57448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/superiors.r69387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svrsymbols.r50019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/symbats3.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tapir.r20484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tempora.r39596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tengwarscript.r34594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termes-otf.r64733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tfrupee.r20770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanodidot.r64518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanomodern.r64520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanooldstyle.r64519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tinos.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tpslifonts.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trajan.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twemoji-colr.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txfontsb.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txuprcal.r43327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typicons.r37623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umtypewriter.r64443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/universa.r51984.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/universalis.r64505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uppunctlm.r42334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urwchancal.r21701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venturisadf.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wsuipa.r25469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcharter.r71564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcharter-math.r72658.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xits.r55730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts.r50755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts-otf.r65030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts-t1.r36013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yinit-otf.r40207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ysabeau.r72800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zlmtt.r64076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-fontsextra.r72727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aboensis.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/academicons.r62622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accanthis.r64844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adforn.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfsymbols.r72458.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aesupp.r58253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alegreya.r64384.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alfaslabone.r57452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algolrevived.r71368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/allrunes.r42221.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/almendra.r64539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/almfixed.r35065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/andika.r64540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonymouspro.r51631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antiqua.r24266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antt.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaic.r38005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archivo.r57283.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arev.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arimo.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arsenal.r68191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arvo.r57213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asana-math.r59629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asapsym.r40201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascii-font.r29989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aspectratio.r25243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/astro.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atkinson.r71048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/augie.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auncial-new.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aurical.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/b1encoding.r21271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barcodes.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervaldadf.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervaldx.r71145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervillef.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbding.r17186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbm.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbm-macros.r17224.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbold.r17187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbold-type1.r33143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bboldx.r65424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/belleek.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bera.r20031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/berenisadf.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beuron.r46374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bguq.r27401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitter.r67598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blacklettert1.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boisik.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bonum-otf.r71894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookhands.r46480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boondox.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braille.r20655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brushscr.r28363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cabin.r68373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/caladea.r64549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calligra.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calligra-type1.r24302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cantarell.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carlito.r64624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carolmin-ps.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadia-code.r68485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadiamono-otf.r72257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccicons.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cfr-initials.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cfr-lm.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/charissil.r64998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cherokee.r21046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chivo.r65029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cinzel.r64550.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clara.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clearsans.r64400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-lgc.r28250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-mf-extra-bold.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-unicode.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmathbb.r56414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmbright.r21107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmexb.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmll.r17964.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmpica.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmsrb.r54706.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmtiup.r39728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmupint.r54735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cochineal.r70528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coelacanth.r64558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comfortaa.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comicneue.r54891.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath-fonts.r17218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath-otf.r72660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cookingsymbols.r35929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooperhewitt.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cormorantgaramond.r71057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/countriesofeurope.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courier-scaled.r24940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courierten.r55436.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crimson.r64559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crimsonpro.r64565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cryst.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cuprum.r49909.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyklop.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic-modern.r71183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dancers.r13293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dantelogo.r38599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dejavu.r31771.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dejavu-otf.r45991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dice.r28501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dictsym.r69720.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dingbat.r27918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/domitian.r55286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doublestroke.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doulossil.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dozenal.r47680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drm.r38157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/droid.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dsserif.r60898.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duerer.r20741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duerer-latex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dutchcal.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ean.r20851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebgaramond.r71069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebgaramond-maths.r52168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eco.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eczar.r57716.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eiad.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eiad-ltx.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ektype-tanka.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/electrumadf.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elvish.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigrafica.r17210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsdice.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erewhon.r70759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erewhon-math.r70295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esrelation.r37236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esstix.r22426.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esvect.r32098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etbb.r69098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euler-math.r70296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eulervm.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euxm.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbb.r55728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fdsymbol.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetamont.r43812.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feyn.r63945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fge.r71737.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fira.r64422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firamath.r56672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firamath-otf.r68233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foekfont.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonetika.r21326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontawesome.r48145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontawesome5.r63207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontmfizz.r43546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonts-churchslavonic.r67473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forum.r64566.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fourier.r72243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fouriernc.r29646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frcursive.r24559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frederika2016.r42157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frimurer.r56704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garamond-libre.r71058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garamond-math.r61481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gelasio.r71047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gelasiomath.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogy.r25112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentium-tug.r63470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsartemisia.r19469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsbodoni.r28484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfscomplutum.r19469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsdidot.r69112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsdidotclassic.r52778.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsneohellenic.r63944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsneohellenicmath.r63928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfssolomos.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gillcm.r19878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gillius.r64865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnu-freefont.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gofonts.r64358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gothic.r49869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greenpoint.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grotesq.r35859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gudea.r57359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hacm.r27671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hamnosys.r61941.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hands.r13293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-font.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math-font.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heros-otf.r64695.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heuristica.r69649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfbright.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfoldsty.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hindmadurai.r57360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibarra.r71059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifsym.r24868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imfellenglish.r64568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inconsolata.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inconsolata-nerd-font.r70871.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/initials.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inriafonts.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inter.r68966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipaex-type1.r47700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iwona.r19611.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jablantile.r16364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jamtimes.r20408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/josefin.r64569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/junicode.r71871.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/junicodevf.r71920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kixfont.r18488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kpfonts.r72680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kpfonts-otf.r71153.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kurier.r19612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lato.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lete-sans-math.r71836.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexend.r57564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lfb.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertine.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinegc.r44616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-fonts.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-otf.r68333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-type1.r72354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinust1math.r71428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librebaskerville.r64421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librebodoni.r64431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librecaslon.r64432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librefranklin.r64441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libris.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lineara.r63169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linguisticspro.r64858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lobster2.r64442.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logix.r63688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luwiantype.r71820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lxfonts.r32354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ly1.r63565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magra.r57373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marcellus.r64451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathabx.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathabx-type1.r21129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathdesign.r31639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdputu.r20298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdsymbol.r28399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/merriweather.r64452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metsymb.r68175.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfb-oldstyle.r71982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miama.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mintspirit.r64461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/missaali.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlmodern.r57458.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnsymbol.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/montserrat.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpfonts.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mweights.r53520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newcomputermodern.r72735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpx.r72879.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtx.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtxsf.r69597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtxtt.r70620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/niceframe-type1.r71849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nimbus15.r72894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nkarta.r16437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noto.r64351.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noto-emoji.r62950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notomath.r71429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nunito.r57429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/obnov.r33355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocherokee.r25689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-b.r20852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-b-outline.r20969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ogham.r24876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oinuit.r28668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/old-arrows.r42872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldlatin.r17932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldstandard.r70421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opensans.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orkhun.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oswald.r60784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overlock.r64495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pacioli.r24947.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagella-otf.r64705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paratype.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phaistos.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonetic.r56468.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pigpen.r69687.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/playfair.r64857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plex.r69154.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plex-otf.r68238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plimsoll.r56605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poiretone.r64856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poltawski.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prodint.r21893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punk.r27388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punk-latex.r27389.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punknova.r24649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxtxalfa.r60847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qualitype.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quattrocento.r64372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/raleway.r42629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recycle.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rit-fonts.r67659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roboto.r64350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romandeadf.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rosario.r51688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsfso.r60849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ruscap.r71123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmathaccent.r53628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmathfonts.r72563.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauter.r13293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauterfonts.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schola-otf.r64734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scholax.r61836.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schulschriften.r59388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semaphor.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shobhika.r50555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleicons.r72797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skull.r51907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourcecodepro.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourcesanspro.r54892.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourceserifpro.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spectral.r64528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srbtiks.r63308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/starfont.r19982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/staves.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/step.r57307.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stepgreek.r57074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stickstoo.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix2-otf.r58735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix2-type1.r57448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/superiors.r69387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svrsymbols.r50019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/symbats3.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tapir.r20484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tempora.r39596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tengwarscript.r34594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termes-otf.r64733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tfrupee.r20770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanodidot.r64518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanomodern.r64520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanooldstyle.r64519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tinos.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tpslifonts.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trajan.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twemoji-colr.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txfontsb.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txuprcal.r43327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typicons.r37623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umtypewriter.r64443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/universa.r51984.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/universalis.r64505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uppunctlm.r42334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urwchancal.r21701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venturisadf.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wsuipa.r25469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcharter.r71564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcharter-math.r72658.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xits.r55730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts.r50755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts-otf.r65030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts-t1.r36013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yinit-otf.r40207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ysabeau.r72800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zlmtt.r64076.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aboensis.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/academicons.doc.r62622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accanthis.doc.r64844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adforn.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfsymbols.doc.r72458.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aesupp.doc.r58253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alegreya.doc.r64384.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alfaslabone.doc.r57452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algolrevived.doc.r71368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/allrunes.doc.r42221.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/almendra.doc.r64539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/almfixed.doc.r35065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/andika.doc.r64540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonymouspro.doc.r51631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antiqua.doc.r24266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antt.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaic.doc.r38005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archivo.doc.r57283.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arev.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arimo.doc.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arsenal.doc.r68191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arvo.doc.r57213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asana-math.doc.r59629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asapsym.doc.r40201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascii-font.doc.r29989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aspectratio.doc.r25243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/astro.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atkinson.doc.r71048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/augie.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auncial-new.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aurical.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/b1encoding.doc.r21271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barcodes.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervaldadf.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervaldx.doc.r71145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervillef.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbding.doc.r17186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbm.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbm-macros.doc.r17224.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbold.doc.r17187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbold-type1.doc.r33143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bboldx.doc.r65424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/belleek.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bera.doc.r20031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/berenisadf.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beuron.doc.r46374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bguq.doc.r27401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitter.doc.r67598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blacklettert1.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boisik.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bonum-otf.doc.r71894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookhands.doc.r46480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boondox.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braille.doc.r20655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brushscr.doc.r28363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cabin.doc.r68373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/caladea.doc.r64549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calligra.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calligra-type1.doc.r24302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cantarell.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carlito.doc.r64624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carolmin-ps.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadia-code.doc.r68485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadiamono-otf.doc.r72257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccicons.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cfr-initials.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cfr-lm.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/charissil.doc.r64998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cherokee.doc.r21046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chivo.doc.r65029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cinzel.doc.r64550.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clara.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clearsans.doc.r64400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-lgc.doc.r28250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-unicode.doc.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmathbb.doc.r56414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmbright.doc.r21107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmexb.doc.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmll.doc.r17964.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmpica.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmsrb.doc.r54706.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmtiup.doc.r39728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmupint.doc.r54735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cochineal.doc.r70528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coelacanth.doc.r64558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comfortaa.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comicneue.doc.r54891.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath-fonts.doc.r17218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath-otf.doc.r72660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cookingsymbols.doc.r35929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooperhewitt.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cormorantgaramond.doc.r71057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/countriesofeurope.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courier-scaled.doc.r24940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courierten.doc.r55436.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crimson.doc.r64559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crimsonpro.doc.r64565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cryst.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cuprum.doc.r49909.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyklop.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic-modern.doc.r71183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dantelogo.doc.r38599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dejavu.doc.r31771.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dejavu-otf.doc.r45991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dice.doc.r28501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dictsym.doc.r69720.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dingbat.doc.r27918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/domitian.doc.r55286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doublestroke.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doulossil.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dozenal.doc.r47680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drm.doc.r38157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/droid.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dsserif.doc.r60898.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duerer.doc.r20741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duerer-latex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dutchcal.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ean.doc.r20851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebgaramond.doc.r71069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebgaramond-maths.doc.r52168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eco.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eczar.doc.r57716.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eiad.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eiad-ltx.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ektype-tanka.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/electrumadf.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elvish.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigrafica.doc.r17210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsdice.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erewhon.doc.r70759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erewhon-math.doc.r70295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esrelation.doc.r37236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esstix.doc.r22426.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esvect.doc.r32098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etbb.doc.r69098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euler-math.doc.r70296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eulervm.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbb.doc.r55728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fdsymbol.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetamont.doc.r43812.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feyn.doc.r63945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fge.doc.r71737.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fira.doc.r64422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firamath.doc.r56672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firamath-otf.doc.r68233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foekfont.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonetika.doc.r21326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontawesome.doc.r48145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontawesome5.doc.r63207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontmfizz.doc.r43546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonts-churchslavonic.doc.r67473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontscripts.doc.r72672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forum.doc.r64566.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fourier.doc.r72243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fouriernc.doc.r29646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frcursive.doc.r24559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frederika2016.doc.r42157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frimurer.doc.r56704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garamond-libre.doc.r71058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garamond-math.doc.r61481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gelasio.doc.r71047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gelasiomath.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogy.doc.r25112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentium-tug.doc.r63470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsartemisia.doc.r19469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsbodoni.doc.r28484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfscomplutum.doc.r19469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsdidot.doc.r69112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsdidotclassic.doc.r52778.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsneohellenic.doc.r63944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsneohellenicmath.doc.r63928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfssolomos.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gillcm.doc.r19878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gillius.doc.r64865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnu-freefont.doc.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gofonts.doc.r64358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gothic.doc.r49869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greenpoint.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grotesq.doc.r35859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gudea.doc.r57359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hacm.doc.r27671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hamnosys.doc.r61941.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-font.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math-font.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heros-otf.doc.r64695.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heuristica.doc.r69649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfbright.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfoldsty.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hindmadurai.doc.r57360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibarra.doc.r71059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifsym.doc.r24868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imfellenglish.doc.r64568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inconsolata.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inconsolata-nerd-font.doc.r70871.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/initials.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inriafonts.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inter.doc.r68966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipaex-type1.doc.r47700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iwona.doc.r19611.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jablantile.doc.r16364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jamtimes.doc.r20408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/josefin.doc.r64569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/junicode.doc.r71871.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/junicodevf.doc.r71920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kixfont.doc.r18488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kpfonts.doc.r72680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kpfonts-otf.doc.r71153.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kurier.doc.r19612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lato.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lete-sans-math.doc.r71836.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexend.doc.r57564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lfb.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertine.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinegc.doc.r44616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-fonts.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-otf.doc.r68333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinus-type1.doc.r72354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libertinust1math.doc.r71428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librebaskerville.doc.r64421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librebodoni.doc.r64431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librecaslon.doc.r64432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librefranklin.doc.r64441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libris.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lineara.doc.r63169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linguisticspro.doc.r64858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lobster2.doc.r64442.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logix.doc.r63688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luwiantype.doc.r71820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lxfonts.doc.r32354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ly1.doc.r63565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magra.doc.r57373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marcellus.doc.r64451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathabx.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathabx-type1.doc.r21129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathdesign.doc.r31639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdputu.doc.r20298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdsymbol.doc.r28399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/merriweather.doc.r64452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metsymb.doc.r68175.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfb-oldstyle.doc.r71982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miama.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mintspirit.doc.r64461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/missaali.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlmodern.doc.r57458.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnsymbol.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/montserrat.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpfonts.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mweights.doc.r53520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newcomputermodern.doc.r72735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpx.doc.r72879.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtx.doc.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtxsf.doc.r69597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newtxtt.doc.r70620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/niceframe-type1.doc.r71849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nimbus15.doc.r72894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nkarta.doc.r16437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noto.doc.r64351.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noto-emoji.doc.r62950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notomath.doc.r71429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nunito.doc.r57429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/obnov.doc.r33355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocherokee.doc.r25689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-b.doc.r20852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-b-outline.doc.r20969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ogham.doc.r24876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oinuit.doc.r28668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/old-arrows.doc.r42872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldlatin.doc.r17932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldstandard.doc.r70421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opensans.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orkhun.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oswald.doc.r60784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overlock.doc.r64495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pacioli.doc.r24947.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagella-otf.doc.r64705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paratype.doc.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phaistos.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonetic.doc.r56468.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pigpen.doc.r69687.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/playfair.doc.r64857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plex.doc.r69154.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plex-otf.doc.r68238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plimsoll.doc.r56605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poiretone.doc.r64856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poltawski.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prodint.doc.r21893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punk.doc.r27388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punk-latex.doc.r27389.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/punknova.doc.r24649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxtxalfa.doc.r60847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qualitype.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quattrocento.doc.r64372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/raleway.doc.r42629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recycle.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rit-fonts.doc.r67659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roboto.doc.r64350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romandeadf.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rosario.doc.r51688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsfso.doc.r60849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ruscap.doc.r71123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmathaccent.doc.r53628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmathfonts.doc.r72563.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauterfonts.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schola-otf.doc.r64734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scholax.doc.r61836.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schulschriften.doc.r59388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semaphor.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shobhika.doc.r50555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleicons.doc.r72797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourcecodepro.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourcesanspro.doc.r54892.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sourceserifpro.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spectral.doc.r64528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srbtiks.doc.r63308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/starfont.doc.r19982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/staves.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/step.doc.r57307.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stepgreek.doc.r57074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stickstoo.doc.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix2-otf.doc.r58735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix2-type1.doc.r57448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/superiors.doc.r69387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svrsymbols.doc.r50019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/symbats3.doc.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tapir.doc.r20484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tempora.doc.r39596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tengwarscript.doc.r34594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termes-otf.doc.r64733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tfrupee.doc.r20770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanodidot.doc.r64518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanomodern.doc.r64520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theanooldstyle.doc.r64519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tinos.doc.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tpslifonts.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trajan.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twemoji-colr.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txfontsb.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txuprcal.doc.r43327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typicons.doc.r37623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umtypewriter.doc.r64443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/universa.doc.r51984.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/universalis.doc.r64505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uppunctlm.doc.r42334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urwchancal.doc.r21701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venturisadf.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wsuipa.doc.r25469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcharter.doc.r71564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcharter-math.doc.r72658.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xits.doc.r55730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts.doc.r50755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts-otf.doc.r65030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts-t1.doc.r36013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yinit-otf.doc.r40207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ysabeau.doc.r72800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zlmtt.doc.r64076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aboensis.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/academicons.doc.r62622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accanthis.doc.r64844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adforn.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfsymbols.doc.r72458.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aesupp.doc.r58253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alegreya.doc.r64384.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alfaslabone.doc.r57452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algolrevived.doc.r71368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/allrunes.doc.r42221.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/almendra.doc.r64539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/almfixed.doc.r35065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/andika.doc.r64540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonymouspro.doc.r51631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antiqua.doc.r24266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antt.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaic.doc.r38005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archivo.doc.r57283.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arev.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arimo.doc.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arsenal.doc.r68191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arvo.doc.r57213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asana-math.doc.r59629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asapsym.doc.r40201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascii-font.doc.r29989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aspectratio.doc.r25243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/astro.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atkinson.doc.r71048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/augie.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auncial-new.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aurical.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/b1encoding.doc.r21271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barcodes.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervaldadf.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervaldx.doc.r71145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervillef.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbding.doc.r17186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbm.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbm-macros.doc.r17224.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbold.doc.r17187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbold-type1.doc.r33143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bboldx.doc.r65424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/belleek.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bera.doc.r20031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/berenisadf.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beuron.doc.r46374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bguq.doc.r27401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitter.doc.r67598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blacklettert1.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boisik.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bonum-otf.doc.r71894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookhands.doc.r46480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boondox.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braille.doc.r20655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brushscr.doc.r28363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cabin.doc.r68373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/caladea.doc.r64549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calligra.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calligra-type1.doc.r24302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cantarell.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carlito.doc.r64624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carolmin-ps.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadia-code.doc.r68485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadiamono-otf.doc.r72257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccicons.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cfr-initials.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cfr-lm.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/charissil.doc.r64998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cherokee.doc.r21046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chivo.doc.r65029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cinzel.doc.r64550.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clara.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clearsans.doc.r64400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-lgc.doc.r28250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-unicode.doc.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmathbb.doc.r56414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmbright.doc.r21107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmexb.doc.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmll.doc.r17964.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmpica.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmsrb.doc.r54706.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmtiup.doc.r39728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmupint.doc.r54735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cochineal.doc.r70528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coelacanth.doc.r64558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comfortaa.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comicneue.doc.r54891.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath-fonts.doc.r17218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath-otf.doc.r72660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cookingsymbols.doc.r35929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooperhewitt.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cormorantgaramond.doc.r71057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/countriesofeurope.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courier-scaled.doc.r24940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courierten.doc.r55436.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crimson.doc.r64559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crimsonpro.doc.r64565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cryst.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cuprum.doc.r49909.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyklop.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic-modern.doc.r71183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dantelogo.doc.r38599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dejavu.doc.r31771.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dejavu-otf.doc.r45991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dice.doc.r28501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dictsym.doc.r69720.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dingbat.doc.r27918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/domitian.doc.r55286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doublestroke.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doulossil.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dozenal.doc.r47680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drm.doc.r38157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/droid.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dsserif.doc.r60898.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duerer.doc.r20741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duerer-latex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dutchcal.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ean.doc.r20851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebgaramond.doc.r71069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebgaramond-maths.doc.r52168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eco.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eczar.doc.r57716.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eiad.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eiad-ltx.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ektype-tanka.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/electrumadf.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elvish.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigrafica.doc.r17210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsdice.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erewhon.doc.r70759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erewhon-math.doc.r70295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esrelation.doc.r37236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esstix.doc.r22426.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esvect.doc.r32098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etbb.doc.r69098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euler-math.doc.r70296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eulervm.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbb.doc.r55728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fdsymbol.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetamont.doc.r43812.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feyn.doc.r63945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fge.doc.r71737.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fira.doc.r64422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firamath.doc.r56672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firamath-otf.doc.r68233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foekfont.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonetika.doc.r21326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontawesome.doc.r48145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontawesome5.doc.r63207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontmfizz.doc.r43546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonts-churchslavonic.doc.r67473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontscripts.doc.r72672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forum.doc.r64566.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fourier.doc.r72243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fouriernc.doc.r29646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frcursive.doc.r24559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frederika2016.doc.r42157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frimurer.doc.r56704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garamond-libre.doc.r71058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garamond-math.doc.r61481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gelasio.doc.r71047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gelasiomath.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogy.doc.r25112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentium-tug.doc.r63470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsartemisia.doc.r19469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsbodoni.doc.r28484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfscomplutum.doc.r19469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsdidot.doc.r69112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsdidotclassic.doc.r52778.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsneohellenic.doc.r63944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsneohellenicmath.doc.r63928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfssolomos.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gillcm.doc.r19878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gillius.doc.r64865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnu-freefont.doc.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gofonts.doc.r64358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gothic.doc.r49869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greenpoint.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grotesq.doc.r35859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gudea.doc.r57359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hacm.doc.r27671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hamnosys.doc.r61941.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-font.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math-font.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heros-otf.doc.r64695.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heuristica.doc.r69649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfbright.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfoldsty.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hindmadurai.doc.r57360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibarra.doc.r71059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifsym.doc.r24868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imfellenglish.doc.r64568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inconsolata.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inconsolata-nerd-font.doc.r70871.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/initials.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inriafonts.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inter.doc.r68966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipaex-type1.doc.r47700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iwona.doc.r19611.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jablantile.doc.r16364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jamtimes.doc.r20408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/josefin.doc.r64569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/junicode.doc.r71871.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/junicodevf.doc.r71920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kixfont.doc.r18488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kpfonts.doc.r72680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kpfonts-otf.doc.r71153.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kurier.doc.r19612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lato.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lete-sans-math.doc.r71836.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexend.doc.r57564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lfb.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertine.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinegc.doc.r44616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-fonts.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-otf.doc.r68333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinus-type1.doc.r72354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libertinust1math.doc.r71428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librebaskerville.doc.r64421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librebodoni.doc.r64431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librecaslon.doc.r64432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librefranklin.doc.r64441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libris.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lineara.doc.r63169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linguisticspro.doc.r64858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lobster2.doc.r64442.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logix.doc.r63688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luwiantype.doc.r71820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lxfonts.doc.r32354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ly1.doc.r63565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magra.doc.r57373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marcellus.doc.r64451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathabx.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathabx-type1.doc.r21129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathdesign.doc.r31639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdputu.doc.r20298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdsymbol.doc.r28399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/merriweather.doc.r64452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metsymb.doc.r68175.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfb-oldstyle.doc.r71982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miama.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mintspirit.doc.r64461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/missaali.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlmodern.doc.r57458.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnsymbol.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/montserrat.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpfonts.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mweights.doc.r53520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newcomputermodern.doc.r72735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpx.doc.r72879.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtx.doc.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtxsf.doc.r69597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newtxtt.doc.r70620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/niceframe-type1.doc.r71849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nimbus15.doc.r72894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nkarta.doc.r16437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noto.doc.r64351.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noto-emoji.doc.r62950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notomath.doc.r71429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nunito.doc.r57429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/obnov.doc.r33355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocherokee.doc.r25689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-b.doc.r20852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-b-outline.doc.r20969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ogham.doc.r24876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oinuit.doc.r28668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/old-arrows.doc.r42872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldlatin.doc.r17932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldstandard.doc.r70421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opensans.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orkhun.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oswald.doc.r60784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overlock.doc.r64495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pacioli.doc.r24947.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagella-otf.doc.r64705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paratype.doc.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phaistos.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonetic.doc.r56468.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pigpen.doc.r69687.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/playfair.doc.r64857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plex.doc.r69154.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plex-otf.doc.r68238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plimsoll.doc.r56605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poiretone.doc.r64856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poltawski.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prodint.doc.r21893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punk.doc.r27388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punk-latex.doc.r27389.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/punknova.doc.r24649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxtxalfa.doc.r60847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qualitype.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quattrocento.doc.r64372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/raleway.doc.r42629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recycle.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rit-fonts.doc.r67659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roboto.doc.r64350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romandeadf.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rosario.doc.r51688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsfso.doc.r60849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ruscap.doc.r71123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmathaccent.doc.r53628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmathfonts.doc.r72563.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauterfonts.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schola-otf.doc.r64734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scholax.doc.r61836.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schulschriften.doc.r59388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semaphor.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shobhika.doc.r50555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleicons.doc.r72797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourcecodepro.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourcesanspro.doc.r54892.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sourceserifpro.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spectral.doc.r64528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srbtiks.doc.r63308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/starfont.doc.r19982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/staves.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/step.doc.r57307.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stepgreek.doc.r57074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stickstoo.doc.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix2-otf.doc.r58735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix2-type1.doc.r57448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/superiors.doc.r69387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svrsymbols.doc.r50019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/symbats3.doc.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tapir.doc.r20484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tempora.doc.r39596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tengwarscript.doc.r34594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termes-otf.doc.r64733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tfrupee.doc.r20770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanodidot.doc.r64518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanomodern.doc.r64520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theanooldstyle.doc.r64519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tinos.doc.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tpslifonts.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trajan.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twemoji-colr.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txfontsb.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txuprcal.doc.r43327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typicons.doc.r37623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umtypewriter.doc.r64443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/universa.doc.r51984.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/universalis.doc.r64505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uppunctlm.doc.r42334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urwchancal.doc.r21701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venturisadf.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wsuipa.doc.r25469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcharter.doc.r71564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcharter-math.doc.r72658.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xits.doc.r55730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts.doc.r50755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts-otf.doc.r65030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts-t1.doc.r36013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yinit-otf.doc.r40207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ysabeau.doc.r72800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zlmtt.doc.r64076.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/adforn.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfsymbols.source.r72458.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aesupp.source.r58253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/allrunes.source.r42221.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonymouspro.source.r51631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/archaic.source.r38005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arev.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arsenal.source.r68191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asapsym.source.r40201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascii-font.source.r29989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auncial-new.source.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/b1encoding.source.r21271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barcodes.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baskervaldadf.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbding.source.r17186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbm-macros.source.r17224.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbold.source.r17187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/belleek.source.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/berenisadf.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bguq.source.r27401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blacklettert1.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookhands.source.r46480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccicons.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cfr-lm.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chivo.source.r65029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmbright.source.r21107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmll.source.r17964.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cookingsymbols.source.r35929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dingbat.source.r27918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dozenal.source.r47680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drm.source.r38157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dsserif.source.r60898.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eco.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eiad-ltx.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/electrumadf.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsdice.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esrelation.source.r37236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esvect.source.r32098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eulervm.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fdsymbol.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetamont.source.r43812.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feyn.source.r63945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fge.source.r71737.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontscripts.source.r72672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frimurer.source.r56704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentium-tug.source.r63470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnu-freefont.source.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gothic.source.r49869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hamnosys.source.r61941.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-font.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math-font.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfoldsty.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inconsolata-nerd-font.source.r70871.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libris.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lineara.source.r63169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lxfonts.source.r32354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdsymbol.source.r28399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metsymb.source.r68175.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miama.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnsymbol.source.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpx.source.r72879.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nkarta.source.r16437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-b-outline.source.r20969.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oinuit.source.r28668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pacioli.source.r24947.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phaistos.source.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plimsoll.source.r56605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romandeadf.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rosario.source.r51688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauterfonts.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skull.source.r51907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/staves.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stix2-type1.source.r57448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svrsymbols.source.r50019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tengwarscript.source.r34594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tfrupee.source.r20770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tpslifonts.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trajan.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txfontsb.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/universa.source.r51984.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venturisadf.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yfonts.source.r50755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adforn.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfsymbols.source.r72458.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aesupp.source.r58253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/allrunes.source.r42221.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonymouspro.source.r51631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/archaic.source.r38005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arev.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arsenal.source.r68191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asapsym.source.r40201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascii-font.source.r29989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auncial-new.source.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/b1encoding.source.r21271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barcodes.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baskervaldadf.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbding.source.r17186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbm-macros.source.r17224.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbold.source.r17187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/belleek.source.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/berenisadf.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bguq.source.r27401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blacklettert1.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookhands.source.r46480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccicons.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cfr-lm.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chivo.source.r65029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmbright.source.r21107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmll.source.r17964.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cookingsymbols.source.r35929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dingbat.source.r27918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dozenal.source.r47680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drm.source.r38157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dsserif.source.r60898.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eco.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eiad-ltx.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/electrumadf.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsdice.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esrelation.source.r37236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esvect.source.r32098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eulervm.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fdsymbol.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetamont.source.r43812.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feyn.source.r63945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fge.source.r71737.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontscripts.source.r72672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frimurer.source.r56704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentium-tug.source.r63470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnu-freefont.source.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gothic.source.r49869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hamnosys.source.r61941.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-font.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math-font.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfoldsty.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inconsolata-nerd-font.source.r70871.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libris.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lineara.source.r63169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lxfonts.source.r32354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdsymbol.source.r28399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metsymb.source.r68175.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miama.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnsymbol.source.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpx.source.r72879.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nkarta.source.r16437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-b-outline.source.r20969.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oinuit.source.r28668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pacioli.source.r24947.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phaistos.source.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plimsoll.source.r56605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romandeadf.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rosario.source.r51688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauterfonts.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skull.source.r51907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/staves.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stix2-type1.source.r57448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svrsymbols.source.r50019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tengwarscript.source.r34594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tfrupee.source.r20770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tpslifonts.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trajan.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txfontsb.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/universa.source.r51984.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venturisadf.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yfonts.source.r50755.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=a21e2a7a2667a539fe35c99c6c5d5aef +_md5_=0c20e64443fc16c65cf73e69edc44525 diff --git a/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2024_p54074 b/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2024_p54074 index b02926c803bf..9cd7a03bad60 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2024_p54074 +++ b/metadata/md5-cache/dev-texlive/texlive-fontsrecommended-2024_p54074 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c OFL-1.1 TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-fontsrecommended.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/avantgar.r61983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookman.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/charter.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-super.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmextra.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courier.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euro.r22191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euro-ce.r25714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eurosym.r17265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fpl.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/helvetic.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lm.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lm-math.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manfnt-font.r45777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marvosym.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpazo.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflogo-font.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncntrsbk.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/palatino.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxfonts.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsfs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/symbol.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre-math.r41264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/times.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipa.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txfonts.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utopia.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasy.r53533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasy-type1.r53534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasysym.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zapfchan.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zapfding.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-fontsrecommended.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/avantgar.r61983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookman.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/charter.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-super.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmextra.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courier.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euro.r22191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euro-ce.r25714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eurosym.r17265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fpl.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/helvetic.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lm.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lm-math.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manfnt-font.r45777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marvosym.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpazo.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflogo-font.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncntrsbk.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/palatino.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxfonts.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsfs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/symbol.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre-math.r41264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/times.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipa.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txfonts.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utopia.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasy.r53533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasy-type1.r53534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasysym.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zapfchan.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zapfding.r61719.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/charter.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cm-super.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euro.doc.r22191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euro-ce.doc.r25714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eurosym.doc.r17265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fpl.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lm.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lm-math.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marvosym.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpazo.doc.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mflogo-font.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxfonts.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rsfs.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre.doc.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre-math.doc.r41264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipa.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txfonts.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utopia.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasy.doc.r53533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasy-type1.doc.r53534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasysym.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/charter.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cm-super.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euro.doc.r22191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euro-ce.doc.r25714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eurosym.doc.r17265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fpl.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lm.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lm-math.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marvosym.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpazo.doc.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mflogo-font.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxfonts.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rsfs.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre.doc.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre-math.doc.r41264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipa.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txfonts.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utopia.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasy.doc.r53533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasy-type1.doc.r53534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasysym.doc.r54080.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/euro.source.r22191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fpl.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marvosym.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpazo.source.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre.source.r68624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-gyre-math.source.r41264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wasysym.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euro.source.r22191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fpl.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marvosym.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpazo.source.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre.source.r68624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-gyre-math.source.r41264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wasysym.source.r54080.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9a1a5d2fdf31589701f66e4c488d155f +_md5_=0b9eea66128fdb83a0abfc81b6372474 diff --git a/metadata/md5-cache/dev-texlive/texlive-fontutils-2024_p61207 b/metadata/md5-cache/dev-texlive/texlive-fontutils-2024_p61207 index f01ed77c6366..c6bbe3169aa1 100644 --- a/metadata/md5-cache/dev-texlive/texlive-fontutils-2024_p61207 +++ b/metadata/md5-cache/dev-texlive/texlive-fontutils-2024_p61207 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Artistic BSD GPL-1+ GPL-2 LPPL-1.3c TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/ps2pkm-1.8_p20240311 >=app-text/ttf2pk2-2.0_p20240311 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-fontutils.r61207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accfonts.r18835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afm2pl.r71515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/albatross.r69832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dosepsbin.r29752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvipsconfig.r13293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epstopdf.r71782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontinst.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontools.r69241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontware.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luafindfont.r72111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mf2pt1.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-fontutils.r61207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accfonts.r18835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afm2pl.r71515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/albatross.r69832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dosepsbin.r29752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvipsconfig.r13293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epstopdf.r71782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontinst.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontools.r69241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontware.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luafindfont.r72111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mf2pt1.r71883.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/accfonts.doc.r18835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afm2pl.doc.r71515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/albatross.doc.r69832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dosepsbin.doc.r29752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epstopdf.doc.r71782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontinst.doc.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontools.doc.r69241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontware.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luafindfont.doc.r72111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mf2pt1.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accfonts.doc.r18835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afm2pl.doc.r71515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/albatross.doc.r69832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dosepsbin.doc.r29752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epstopdf.doc.r71782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontinst.doc.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontools.doc.r69241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontware.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luafindfont.doc.r72111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mf2pt1.doc.r71883.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/albatross.source.r69832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dosepsbin.source.r29752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontinst.source.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metatype1.source.r37105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/albatross.source.r69832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dosepsbin.source.r29752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontinst.source.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metatype1.source.r37105.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=b89e17bc29965f0bef8b1b18bcd88c26 +_md5_=19837e705e6726bd6fb970feedc12e72 diff --git a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2024_p72250 b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2024_p72250 index d15401aefed9..f93c7bfad584 100644 --- a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2024_p72250 +++ b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2024_p72250 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2+ GPL-3 LPPL-1.3c MIT TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-formatsextra.r72250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aleph.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antomega.r21933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eplain.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitex.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jadetex.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambda.r45756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lollipop.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mltex.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mxedruli.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/omega.r33046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/omegaware.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/otibet.r45777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/passivetex.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psizzl.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/startex.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texsis.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmltex.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-formatsextra.r72250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aleph.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antomega.r21933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eplain.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitex.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jadetex.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambda.r45756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lollipop.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mltex.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mxedruli.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/omega.r33046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/omegaware.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/otibet.r45777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/passivetex.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psizzl.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/startex.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texsis.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmltex.r71362.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aleph.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antomega.doc.r21933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eplain.doc.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitex.doc.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jadetex.doc.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lollipop.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mltex.doc.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mxedruli.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/omega.doc.r33046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/omegaware.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/otibet.doc.r45777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psizzl.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/startex.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texsis.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmltex.doc.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aleph.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antomega.doc.r21933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eplain.doc.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitex.doc.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jadetex.doc.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lollipop.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mltex.doc.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mxedruli.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/omega.doc.r33046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/omegaware.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/otibet.doc.r45777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psizzl.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/startex.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texsis.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmltex.doc.r71362.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/antomega.source.r21933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eplain.source.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jadetex.source.r71409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/otibet.source.r45777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psizzl.source.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/startex.source.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antomega.source.r21933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eplain.source.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jadetex.source.r71409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/otibet.source.r45777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psizzl.source.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/startex.source.r69742.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=a36f38d5ca70925ab158111e94201abc +_md5_=f39ed865c813d75db1af943382e53ad3 diff --git a/metadata/md5-cache/dev-texlive/texlive-games-2024_p71129 b/metadata/md5-cache/dev-texlive/texlive-games-2024_p71129 index adc91511fe62..9b83626b2858 100644 --- a/metadata/md5-cache/dev-texlive/texlive-games-2024_p71129 +++ b/metadata/md5-cache/dev-texlive/texlive-games-2024_p71129 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 CC-BY-1.0 CC-BY-4.0 CC-BY-SA-4.0 GPL-1+ LGPL-2.1 LGPL-3 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-games.r71129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bartel-chess-fonts.r20619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chess.r20582.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chess-problem-diagrams.r72556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessboard.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessfss.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chinesechess.r63276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossword.r64375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crosswrd.r16896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/customdice.r64089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egameps.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebook.r24714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebooklib.r67772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/go.r28628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanoi.r25019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/havannah.r36348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hexboard.r62102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hexgame.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hmtrump.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/horoscop.r56021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jeuxcartes.r68266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jigsaw.r71923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labyrinth.r33454.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logicpuzzle.r34491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mahjong.r58896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maze.r65508.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musikui.r47472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nimsticks.r64118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onedown.r69067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/othello.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/othelloboard.r23714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-crosswords.r32313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/playcards.r67342.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psgo.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quizztex.r72256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realtranspose.r56623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reverxii.r63753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rouequestions.r67670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rpgicons.r71994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rubik.r46791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schwalbe-chess.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrabble.r69599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sgame.r30959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skak.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skaknew.r20031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soup.r50815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudoku.r67189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudokubundle.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tangramtikz.r66183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thematicpuzzle.r69356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trivialpursuit.r72615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoxtwogame.r70423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wargame.r72903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/weiqi.r70178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordle.r72059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xq.r35211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xskak.r51432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-games.r71129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bartel-chess-fonts.r20619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chess.r20582.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chess-problem-diagrams.r72556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessboard.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessfss.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chinesechess.r63276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossword.r64375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crosswrd.r16896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/customdice.r64089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egameps.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebook.r24714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebooklib.r67772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/go.r28628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanoi.r25019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/havannah.r36348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hexboard.r62102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hexgame.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hmtrump.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/horoscop.r56021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jeuxcartes.r68266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jigsaw.r71923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labyrinth.r33454.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logicpuzzle.r34491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mahjong.r58896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maze.r65508.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musikui.r47472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nimsticks.r64118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onedown.r69067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/othello.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/othelloboard.r23714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-crosswords.r32313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/playcards.r67342.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psgo.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quizztex.r72256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realtranspose.r56623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reverxii.r63753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rouequestions.r67670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rpgicons.r71994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rubik.r46791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schwalbe-chess.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrabble.r69599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sgame.r30959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skak.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skaknew.r20031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soup.r50815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudoku.r67189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudokubundle.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tangramtikz.r66183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thematicpuzzle.r69356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trivialpursuit.r72615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoxtwogame.r70423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wargame.r72903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/weiqi.r70178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordle.r72059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xq.r35211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xskak.r51432.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/bartel-chess-fonts.doc.r20619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chess.doc.r20582.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chess-problem-diagrams.doc.r72556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessboard.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessfss.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chinesechess.doc.r63276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossword.doc.r64375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crosswrd.doc.r16896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/customdice.doc.r64089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egameps.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebook.doc.r24714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebooklib.doc.r67772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/go.doc.r28628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/havannah.doc.r36348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hexboard.doc.r62102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hexgame.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hmtrump.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/horoscop.doc.r56021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jeuxcartes.doc.r68266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jigsaw.doc.r71923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labyrinth.doc.r33454.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logicpuzzle.doc.r34491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mahjong.doc.r58896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maze.doc.r65508.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musikui.doc.r47472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nimsticks.doc.r64118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onedown.doc.r69067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/othello.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/othelloboard.doc.r23714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-crosswords.doc.r32313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/playcards.doc.r67342.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psgo.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quizztex.doc.r72256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realtranspose.doc.r56623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reverxii.doc.r63753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rouequestions.doc.r67670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rpgicons.doc.r71994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rubik.doc.r46791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schwalbe-chess.doc.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrabble.doc.r69599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sgame.doc.r30959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skak.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skaknew.doc.r20031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soup.doc.r50815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudoku.doc.r67189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudokubundle.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tangramtikz.doc.r66183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thematicpuzzle.doc.r69356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trivialpursuit.doc.r72615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoxtwogame.doc.r70423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wargame.doc.r72903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/weiqi.doc.r70178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordle.doc.r72059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xq.doc.r35211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xskak.doc.r51432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bartel-chess-fonts.doc.r20619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chess.doc.r20582.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chess-problem-diagrams.doc.r72556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessboard.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessfss.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chinesechess.doc.r63276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossword.doc.r64375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crosswrd.doc.r16896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/customdice.doc.r64089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egameps.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebook.doc.r24714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebooklib.doc.r67772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/go.doc.r28628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/havannah.doc.r36348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hexboard.doc.r62102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hexgame.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hmtrump.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/horoscop.doc.r56021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jeuxcartes.doc.r68266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jigsaw.doc.r71923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labyrinth.doc.r33454.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logicpuzzle.doc.r34491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mahjong.doc.r58896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maze.doc.r65508.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musikui.doc.r47472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nimsticks.doc.r64118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onedown.doc.r69067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/othello.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/othelloboard.doc.r23714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-crosswords.doc.r32313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/playcards.doc.r67342.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psgo.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quizztex.doc.r72256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realtranspose.doc.r56623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reverxii.doc.r63753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rouequestions.doc.r67670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rpgicons.doc.r71994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rubik.doc.r46791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schwalbe-chess.doc.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrabble.doc.r69599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sgame.doc.r30959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skak.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skaknew.doc.r20031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soup.doc.r50815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudoku.doc.r67189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudokubundle.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tangramtikz.doc.r66183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thematicpuzzle.doc.r69356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trivialpursuit.doc.r72615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoxtwogame.doc.r70423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wargame.doc.r72903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/weiqi.doc.r70178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordle.doc.r72059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xq.doc.r35211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xskak.doc.r51432.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/chess-problem-diagrams.source.r72556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessboard.source.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chessfss.source.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossword.source.r64375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crosswrd.source.r16896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/customdice.source.r64089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebook.source.r24714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gamebooklib.source.r67772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/go.source.r28628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/havannah.source.r36348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hexboard.source.r62102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/horoscop.source.r56021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mahjong.source.r58896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nimsticks.source.r64118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onedown.source.r69067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realtranspose.source.r56623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reverxii.source.r63753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rubik.source.r46791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schwalbe-chess.source.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soup.source.r50815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudoku.source.r67189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sudokubundle.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wargame.source.r72903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/weiqi.source.r70178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xskak.source.r51432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chess-problem-diagrams.source.r72556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessboard.source.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chessfss.source.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossword.source.r64375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crosswrd.source.r16896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/customdice.source.r64089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebook.source.r24714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gamebooklib.source.r67772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/go.source.r28628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/havannah.source.r36348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hexboard.source.r62102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/horoscop.source.r56021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mahjong.source.r58896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nimsticks.source.r64118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onedown.source.r69067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realtranspose.source.r56623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reverxii.source.r63753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rubik.source.r46791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schwalbe-chess.source.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soup.source.r50815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudoku.source.r67189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sudokubundle.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wargame.source.r72903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/weiqi.source.r70178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xskak.source.r51432.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=5a5574122d3f3254d069ee8fd5ade4d9 +_md5_=edc19b2347c75b9d831f05f5f778ec30 diff --git a/metadata/md5-cache/dev-texlive/texlive-humanities-2024_p72692 b/metadata/md5-cache/dev-texlive/texlive-humanities-2024_p72692 index e2c0ccfa46bd..8186cb09a469 100644 --- a/metadata/md5-cache/dev-texlive/texlive-humanities-2024_p72692 +++ b/metadata/md5-cache/dev-texlive/texlive-humanities-2024_p72692 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c RDEPEND=>=dev-texlive/texlive-latex-2024 doc? ( app-text/sword ) !<dev-texlive/texlive-formatsextra-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-humanities.r72692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adtrees.r51618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref.r55626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-lds.r25526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-mouth.r25527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-parse.r22054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/covington.r69091.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diadia.r37656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dramatist.r35866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvgloss.r29103.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecltree.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edfnotes.r21540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmac.r72250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledform.r38114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledmac.r45418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex.r44499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex-glossonly.r69914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gb4e.r19216.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gb4e-next.r72692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmverse.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interlinear.r72106.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jura.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/juraabbrev.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/juramisc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurarsp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langnames.r69101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ledmac.r41811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexikon.r17364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexref.r36026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ling-macros.r42268.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linguex.r30815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/liturg.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metrix.r52323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nnext.r56575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opbible.r68465.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parallel.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parrun.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonrule.r43963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plari.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/play.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poemscol.r56082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetry.r53129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetrytex.r68353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qobitree.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qtree.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reledmac.r71890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rrgtrees.r27322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rtklage.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/screenplay.r27223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/screenplay-pkg.r44965.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sides.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stage.r62929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textglos.r30788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thalie.r65249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tree-dvips.r21751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verse.r69835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xyling.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-humanities.r72692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adtrees.r51618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref.r55626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-lds.r25526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-mouth.r25527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-parse.r22054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/covington.r69091.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diadia.r37656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dramatist.r35866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvgloss.r29103.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecltree.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edfnotes.r21540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmac.r72250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledform.r38114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledmac.r45418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex.r44499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex-glossonly.r69914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gb4e.r19216.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gb4e-next.r72692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmverse.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interlinear.r72106.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jura.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/juraabbrev.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/juramisc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurarsp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langnames.r69101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ledmac.r41811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexikon.r17364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexref.r36026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ling-macros.r42268.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linguex.r30815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/liturg.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metrix.r52323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nnext.r56575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opbible.r68465.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parallel.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parrun.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonrule.r43963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plari.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/play.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poemscol.r56082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetry.r53129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetrytex.r68353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qobitree.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qtree.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reledmac.r71890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rrgtrees.r27322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rtklage.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/screenplay.r27223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/screenplay-pkg.r44965.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sides.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stage.r62929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textglos.r30788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thalie.r65249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tree-dvips.r21751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verse.r69835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xyling.r15878.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/adtrees.doc.r51618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref.doc.r55626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-lds.doc.r25526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-mouth.doc.r25527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-parse.doc.r22054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/covington.doc.r69091.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diadia.doc.r37656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dramatist.doc.r35866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvgloss.doc.r29103.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecltree.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edfnotes.doc.r21540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmac.doc.r72250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledform.doc.r38114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledmac.doc.r45418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex.doc.r44499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex-glossonly.doc.r69914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gb4e.doc.r19216.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gb4e-next.doc.r72692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmverse.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interlinear.doc.r72106.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jura.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/juraabbrev.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/juramisc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurarsp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langnames.doc.r69101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ledmac.doc.r41811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexikon.doc.r17364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lexref.doc.r36026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ling-macros.doc.r42268.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linguex.doc.r30815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/liturg.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metrix.doc.r52323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nnext.doc.r56575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opbible.doc.r68465.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parallel.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parrun.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonrule.doc.r43963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plari.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/play.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poemscol.doc.r56082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetry.doc.r53129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetrytex.doc.r68353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qobitree.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qtree.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reledmac.doc.r71890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rrgtrees.doc.r27322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rtklage.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/screenplay.doc.r27223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/screenplay-pkg.doc.r44965.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sides.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stage.doc.r62929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textglos.doc.r30788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thalie.doc.r65249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theatre.doc.r45363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tree-dvips.doc.r21751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verse.doc.r69835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xyling.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adtrees.doc.r51618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref.doc.r55626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-lds.doc.r25526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-mouth.doc.r25527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-parse.doc.r22054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/covington.doc.r69091.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diadia.doc.r37656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dramatist.doc.r35866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvgloss.doc.r29103.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecltree.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edfnotes.doc.r21540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmac.doc.r72250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledform.doc.r38114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledmac.doc.r45418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex.doc.r44499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex-glossonly.doc.r69914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gb4e.doc.r19216.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gb4e-next.doc.r72692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmverse.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interlinear.doc.r72106.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jura.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/juraabbrev.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/juramisc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurarsp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langnames.doc.r69101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ledmac.doc.r41811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexikon.doc.r17364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lexref.doc.r36026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ling-macros.doc.r42268.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linguex.doc.r30815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/liturg.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metrix.doc.r52323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nnext.doc.r56575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opbible.doc.r68465.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parallel.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parrun.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonrule.doc.r43963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plari.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/play.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poemscol.doc.r56082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetry.doc.r53129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetrytex.doc.r68353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qobitree.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qtree.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reledmac.doc.r71890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rrgtrees.doc.r27322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rtklage.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/screenplay.doc.r27223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/screenplay-pkg.doc.r44965.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sides.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stage.doc.r62929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textglos.doc.r30788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thalie.doc.r65249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theatre.doc.r45363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tree-dvips.doc.r21751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verse.doc.r69835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xyling.doc.r15878.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref.source.r55626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-lds.source.r25526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-mouth.source.r25527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dramatist.source.r35866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvgloss.source.r29103.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edfnotes.source.r21540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledform.source.r38114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eledmac.source.r45418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jura.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/juraabbrev.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jurarsp.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langnames.source.r69101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ledmac.source.r41811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/liturg.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metrix.source.r52323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nnext.source.r56575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parallel.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parrun.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plari.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/play.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poemscol.source.r56082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetry.source.r53129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poetrytex.source.r68353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reledmac.source.r71890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rrgtrees.source.r27322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/screenplay.source.r27223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stage.source.r62929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textglos.source.r30788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verse.source.r69835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref.source.r55626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-lds.source.r25526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-mouth.source.r25527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dramatist.source.r35866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvgloss.source.r29103.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edfnotes.source.r21540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledform.source.r38114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eledmac.source.r45418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jura.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/juraabbrev.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jurarsp.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langnames.source.r69101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ledmac.source.r41811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/liturg.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metrix.source.r52323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nnext.source.r56575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parallel.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parrun.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plari.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/play.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poemscol.source.r56082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetry.source.r53129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poetrytex.source.r68353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reledmac.source.r71890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rrgtrees.source.r27322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/screenplay.source.r27223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stage.source.r62929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textglos.source.r30788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verse.source.r69835.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=f54820200460e1ef0e77f025ae148a62 +_md5_=e67847c89064bd21efb3c4a70139834e diff --git a/metadata/md5-cache/dev-texlive/texlive-langarabic-2024_p69111 b/metadata/md5-cache/dev-texlive/texlive-langarabic-2024_p69111 index 7abc73a62b4a..e334a816a025 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langarabic-2024_p69111 +++ b/metadata/md5-cache/dev-texlive/texlive-langarabic-2024_p69111 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-SA-4.0 GPL-2 GPL-3+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langarabic.r69111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alkalami.r44497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alpha-persian.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amiri.r65191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabi.r44662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabi-add.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabic-book.r59594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabluatex.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabtex.r64260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidi.r67798.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidihl.r37795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dad.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ghab.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvarabic.r59423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imsproc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iran-bibtex.r71972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/khatalmaqala.r68280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kurdishlipsum.r47518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luabidi.r68432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/na-box.r45130.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsimatn.r70775.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsinevis.r70776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/persian-bib.r37297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran.r72223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sexam.r46628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simurgh.r31719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texnegar.r57692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tram.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian.r68117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian-hm.r56272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langarabic.r69111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alkalami.r44497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alpha-persian.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amiri.r65191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabi.r44662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabi-add.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabic-book.r59594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabluatex.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabtex.r64260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidi.r67798.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidihl.r37795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dad.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ghab.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvarabic.r59423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imsproc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iran-bibtex.r71972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/khatalmaqala.r68280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kurdishlipsum.r47518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luabidi.r68432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/na-box.r45130.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsimatn.r70775.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsinevis.r70776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/persian-bib.r37297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran.r72223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sexam.r46628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simurgh.r31719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texnegar.r57692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tram.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian.r68117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian-hm.r56272.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/alkalami.doc.r44497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alpha-persian.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amiri.doc.r65191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabi.doc.r44662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabi-add.doc.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabic-book.doc.r59594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabluatex.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabtex.doc.r64260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidi.doc.r67798.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidihl.doc.r37795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dad.doc.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ghab.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvarabic.doc.r59423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imsproc.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iran-bibtex.doc.r71972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/khatalmaqala.doc.r68280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kurdishlipsum.doc.r47518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-persian.doc.r31296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luabidi.doc.r68432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/na-box.doc.r45130.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsimatn.doc.r70775.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsinevis.doc.r70776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/persian-bib.doc.r37297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran.doc.r72223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sexam.doc.r46628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simurgh.doc.r31719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texnegar.doc.r57692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tram.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian.doc.r68117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian-hm.doc.r56272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xindy-persian.doc.r59013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alkalami.doc.r44497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alpha-persian.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amiri.doc.r65191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabi.doc.r44662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabi-add.doc.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabic-book.doc.r59594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabluatex.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabtex.doc.r64260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidi.doc.r67798.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidihl.doc.r37795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dad.doc.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ghab.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvarabic.doc.r59423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imsproc.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iran-bibtex.doc.r71972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/khatalmaqala.doc.r68280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kurdishlipsum.doc.r47518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-persian.doc.r31296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luabidi.doc.r68432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/na-box.doc.r45130.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsimatn.doc.r70775.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsinevis.doc.r70776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/persian-bib.doc.r37297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran.doc.r72223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sexam.doc.r46628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simurgh.doc.r31719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texnegar.doc.r57692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tram.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian.doc.r68117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian-hm.doc.r56272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xindy-persian.doc.r59013.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabluatex.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidi.source.r67798.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texnegar.source.r57692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian.source.r68117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xepersian-hm.source.r56272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabluatex.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidi.source.r67798.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texnegar.source.r57692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian.source.r68117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xepersian-hm.source.r56272.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=cbd27b2cc51c0f931093d9b49210be55 +_md5_=5c6818d64e551c882a0a8f438e2658b5 diff --git a/metadata/md5-cache/dev-texlive/texlive-langchinese-2024_p72136 b/metadata/md5-cache/dev-texlive/texlive-langchinese-2024_p72136 index 8beeb4247953..4e4317872788 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langchinese-2024_p72136 +++ b/metadata/md5-cache/dev-texlive/texlive-langchinese-2024_p72136 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=FDL-1.1+ GPL-1+ GPL-3+ LGPL-2+ LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-langcjk-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langchinese.r72136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arphic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arphic-ttf.r42675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cns.r45677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctex.r71527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-zh.r69917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fandol.r37889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fduthesis.r67231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanzibox.r63062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-chinese.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nanicolle.r56224.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njurepo.r50492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfornament-han.r72640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qyxf-book.r56319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sjtutex.r72826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suanpan-l3.r72540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upzhkinsoku.r47354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpinyin.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xtuthesis.r47049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhlineskip.r51142.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhlipsum.r54994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhmetrics.r22207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhmetrics-uptex.r40728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhnumber.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhspacing.r41145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langchinese.r72136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arphic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arphic-ttf.r42675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cns.r45677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctex.r71527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-zh.r69917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fandol.r37889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fduthesis.r67231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanzibox.r63062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-chinese.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nanicolle.r56224.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njurepo.r50492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfornament-han.r72640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qyxf-book.r56319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sjtutex.r72826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suanpan-l3.r72540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upzhkinsoku.r47354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpinyin.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xtuthesis.r47049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhlineskip.r51142.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhlipsum.r54994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhmetrics.r22207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhmetrics-uptex.r40728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhnumber.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhspacing.r41145.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/arphic.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arphic-ttf.doc.r42675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asymptote-by-example-zh-cn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asymptote-faq-zh-cn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asymptote-manual-zh-cn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cns.doc.r45677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctex.doc.r71527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctex-faq.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-zh.doc.r69917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fandol.doc.r37889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fduthesis.doc.r67231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanzibox.doc.r63062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impatient-cn.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/install-latex-guide-zh-cn.doc.r72158.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-notes-zh-cn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-chinese.doc.r67025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nanicolle.doc.r56224.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njurepo.doc.r50492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfornament-han.doc.r72640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qyxf-book.doc.r56319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sjtutex.doc.r72826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suanpan-l3.doc.r72540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-zh-cn.doc.r71700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texproposal.doc.r43151.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlmgr-intro-zh-cn.doc.r59100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upzhkinsoku.doc.r47354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpinyin.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xtuthesis.doc.r47049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhlineskip.doc.r51142.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhlipsum.doc.r54994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhmetrics.doc.r22207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhmetrics-uptex.doc.r40728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhnumber.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhspacing.doc.r41145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arphic.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arphic-ttf.doc.r42675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asymptote-by-example-zh-cn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asymptote-faq-zh-cn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asymptote-manual-zh-cn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cns.doc.r45677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctex.doc.r71527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctex-faq.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-zh.doc.r69917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fandol.doc.r37889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fduthesis.doc.r67231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanzibox.doc.r63062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impatient-cn.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/install-latex-guide-zh-cn.doc.r72158.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-notes-zh-cn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-chinese.doc.r67025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nanicolle.doc.r56224.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njurepo.doc.r50492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfornament-han.doc.r72640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qyxf-book.doc.r56319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sjtutex.doc.r72826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suanpan-l3.doc.r72540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-zh-cn.doc.r71700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texproposal.doc.r43151.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlmgr-intro-zh-cn.doc.r59100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upzhkinsoku.doc.r47354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpinyin.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xtuthesis.doc.r47049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhlineskip.doc.r51142.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhlipsum.doc.r54994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhmetrics.doc.r22207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhmetrics-uptex.doc.r40728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhnumber.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhspacing.doc.r41145.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctex.source.r71527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fduthesis.source.r67231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanzibox.source.r63062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njurepo.source.r50492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sjtutex.source.r72826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpinyin.source.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhlipsum.source.r54994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhmetrics.source.r22207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zhnumber.source.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctex.source.r71527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fduthesis.source.r67231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanzibox.source.r63062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njurepo.source.r50492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sjtutex.source.r72826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpinyin.source.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhlipsum.source.r54994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhmetrics.source.r22207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zhnumber.source.r66115.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=ed534acff4d500ca73aa4403b08d9cc9 +_md5_=413826d4f5ca884c8bc6758d6a56eb46 diff --git a/metadata/md5-cache/dev-texlive/texlive-langcjk-2024_p65824 b/metadata/md5-cache/dev-texlive/texlive-langcjk-2024_p65824 index edbb900cc9a8..a1044f8454dc 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langcjk-2024_p65824 +++ b/metadata/md5-cache/dev-texlive/texlive-langcjk-2024_p65824 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT TeX RDEPEND=>=app-text/texlive-core-2024[cjk] >=dev-texlive/texlive-basic-2024 !<dev-texlive/texlive-xetex-2023 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langcjk.r65824.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adobemapping.r66552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/c90.r60830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk.r60865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk-gs-integrate.r59705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjkpunct.r41119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjkutils.r60833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dnp.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/evangelion-jfm.r69751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixjfm.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garuda-c90.r60832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jfmutil.r60987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/norasi-c90.r60831.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxtatescale.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcjk2uni.r54958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecjk.r64059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zitie.r60676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjafont.r62864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langcjk.r65824.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adobemapping.r66552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/c90.r60830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk.r60865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk-gs-integrate.r59705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjkpunct.r41119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjkutils.r60833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dnp.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/evangelion-jfm.r69751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixjfm.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garuda-c90.r60832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jfmutil.r60987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/norasi-c90.r60831.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxtatescale.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcjk2uni.r54958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecjk.r64059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zitie.r60676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjafont.r62864.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/c90.doc.r60830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk.doc.r60865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk-gs-integrate.doc.r59705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjkpunct.doc.r41119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjkutils.doc.r60833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/evangelion-jfm.doc.r69751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixjfm.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jfmutil.doc.r60987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxtatescale.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcjk2uni.doc.r54958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecjk.doc.r64059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zitie.doc.r60676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjafont.doc.r62864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/c90.doc.r60830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk.doc.r60865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk-gs-integrate.doc.r59705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjkpunct.doc.r41119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjkutils.doc.r60833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/evangelion-jfm.doc.r69751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixjfm.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jfmutil.doc.r60987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxtatescale.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcjk2uni.doc.r54958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecjk.doc.r64059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zitie.doc.r60676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjafont.doc.r62864.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/c90.source.r60830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk.source.r60865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk-gs-integrate.source.r59705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjkpunct.source.r41119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/evangelion-jfm.source.r69751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garuda-c90.source.r60832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/norasi-c90.source.r60831.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcjk2uni.source.r54958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecjk.source.r64059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/c90.source.r60830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk.source.r60865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk-gs-integrate.source.r59705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjkpunct.source.r41119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/evangelion-jfm.source.r69751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garuda-c90.source.r60832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/norasi-c90.source.r60831.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcjk2uni.source.r54958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecjk.source.r64059.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=00c3b613ac32948f41a1fed15b9d267a +_md5_=7b5b1448fe2a0a506893e2b102b52e33 diff --git a/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2024_p69727 b/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2024_p69727 index 175f3dc6a366..cab3dce02188 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2024_p69727 +++ b/metadata/md5-cache/dev-texlive/texlive-langcyrillic-2024_p69727 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langcyrillic.r69727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-belarusian.r49022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bulgarian.r31902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-russian.r57376.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbian.r64571.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbianc.r64588.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-ukrainian.r56674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/churchslavonic.r67474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmcyr.r68681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic.r71408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic-bin.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrplain.r45692.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/disser.r43417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eskd.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eskdx.r29235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gost.r57616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-belarusian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-bulgarian.r58685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-churchslavonic.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-mongolian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-russian.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-serbian.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-ukrainian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcyw.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lh.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lhcyr.r31795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnhyphn.r69727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mongolian-babel.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/montex.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numnameru.r44895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ruhyphen.r21081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/russ.r25209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-apostrophe.r23799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-date-lat.r23446.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-def-cyr.r23734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-lig.r53127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/t2.r47870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ukrhyph.r21081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecyrmongolian.r53160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langcyrillic.r69727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-belarusian.r49022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bulgarian.r31902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-russian.r57376.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbian.r64571.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbianc.r64588.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-ukrainian.r56674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/churchslavonic.r67474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmcyr.r68681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic.r71408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic-bin.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrplain.r45692.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/disser.r43417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eskd.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eskdx.r29235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gost.r57616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-belarusian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-bulgarian.r58685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-churchslavonic.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-mongolian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-russian.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-serbian.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-ukrainian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcyw.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lh.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lhcyr.r31795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnhyphn.r69727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mongolian-babel.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/montex.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numnameru.r44895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ruhyphen.r21081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/russ.r25209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-apostrophe.r23799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-date-lat.r23446.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-def-cyr.r23734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-lig.r53127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/t2.r47870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ukrhyph.r21081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecyrmongolian.r53160.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-belarusian.doc.r49022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bulgarian.doc.r31902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-russian.doc.r57376.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbian.doc.r64571.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbianc.doc.r64588.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-ukrainian.doc.r56674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/churchslavonic.doc.r67474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmcyr.doc.r68681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic.doc.r71408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic-bin.doc.r62517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/disser.doc.r43417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eskd.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eskdx.doc.r29235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gost.doc.r57616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcyw.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lh.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-bulgarian.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-mongol.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-russian.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-ukr.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnhyphn.doc.r69727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mongolian-babel.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/montex.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpman-ru.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numnameru.doc.r44895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eucl-translation-bg.doc.r19296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/russ.doc.r25209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-apostrophe.doc.r23799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-date-lat.doc.r23446.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-def-cyr.doc.r23734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/serbian-lig.doc.r53127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/t2.doc.r47870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-ru.doc.r58426.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-sr.doc.r54594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ukrhyph.doc.r21081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecyrmongolian.doc.r53160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-belarusian.doc.r49022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bulgarian.doc.r31902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-russian.doc.r57376.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbian.doc.r64571.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbianc.doc.r64588.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-ukrainian.doc.r56674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/churchslavonic.doc.r67474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmcyr.doc.r68681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic.doc.r71408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic-bin.doc.r62517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/disser.doc.r43417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eskd.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eskdx.doc.r29235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gost.doc.r57616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcyw.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lh.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-bulgarian.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-mongol.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-russian.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-ukr.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnhyphn.doc.r69727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mongolian-babel.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/montex.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpman-ru.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numnameru.doc.r44895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eucl-translation-bg.doc.r19296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/russ.doc.r25209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-apostrophe.doc.r23799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-date-lat.doc.r23446.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-def-cyr.doc.r23734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/serbian-lig.doc.r53127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/t2.doc.r47870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-ru.doc.r58426.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-sr.doc.r54594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ukrhyph.doc.r21081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecyrmongolian.doc.r53160.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-belarusian.source.r49022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bulgarian.source.r31902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-russian.source.r57376.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbian.source.r64571.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-serbianc.source.r64588.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-ukrainian.source.r56674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyrillic.source.r71408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/disser.source.r43417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eskd.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gost.source.r57616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcyw.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lh.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lhcyr.source.r31795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mongolian-babel.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ruhyphen.source.r21081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecyrmongolian.source.r53160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-belarusian.source.r49022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bulgarian.source.r31902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-russian.source.r57376.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbian.source.r64571.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-serbianc.source.r64588.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-ukrainian.source.r56674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyrillic.source.r71408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/disser.source.r43417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eskd.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gost.source.r57616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcyw.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lh.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lhcyr.source.r31795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mongolian-babel.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ruhyphen.source.r21081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecyrmongolian.source.r53160.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=72483fcfa96689a98ce039367ef95401 +_md5_=d52a634c853e8dac1f98498eaa0b8518 diff --git a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2024_p54074 b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2024_p54074 index fbcff37811c2..bab086a8504e 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2024_p54074 +++ b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2024_p54074 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ LPPL-1.3 LPPL-1.3c TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024[xetex] >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langczechslovak.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-czech.r30261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovak.r30292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cnbwp.r69910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cs.r41553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csbulletin.r65250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cslatex.r67494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csplain.r67934.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-czech.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-slovak.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langczechslovak.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-czech.r30261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovak.r30292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cnbwp.r69910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cs.r41553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csbulletin.r65250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cslatex.r67494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csplain.r67934.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-czech.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-slovak.r58609.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-czech.doc.r30261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovak.doc.r30292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cnbwp.doc.r69910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csbulletin.doc.r65250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cstex.doc.r64149.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-czech.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-slovak.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-cz.doc.r72437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-czech.doc.r30261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovak.doc.r30292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cnbwp.doc.r69910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csbulletin.doc.r65250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cstex.doc.r64149.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-czech.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-slovak.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-cz.doc.r72437.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-czech.source.r30261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovak.source.r30292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cslatex.source.r67494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-czech.source.r30261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovak.source.r30292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cslatex.source.r67494.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=017cdd0879377b1fc3208d55f57ad695 +_md5_=408911e2eb47403e24471086983ba67e diff --git a/metadata/md5-cache/dev-texlive/texlive-langenglish-2024_p71835 b/metadata/md5-cache/dev-texlive/texlive-langenglish-2024_p71835 index a4eaa08ce1b7..718babf58420 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langenglish-2024_p71835 +++ b/metadata/md5-cache/dev-texlive/texlive-langenglish-2024_p71835 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-3.0 CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c OPL TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langenglish.r71835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-english.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexfileinfo-pkgs.r26760.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macros2e.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-en.r68790.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langenglish.r71835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-english.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexfileinfo-pkgs.r26760.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macros2e.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-en.r68790.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amiweb2c-guide.doc.r56878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscls-doc.doc.r46110.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amslatex-primer.doc.r28980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/around-the-bend.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascii-chart.doc.r20536.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asy-overview.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biblatex-cheatsheet.doc.r44685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/components.doc.r63184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comprehensive.doc.r69619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dickimaw.doc.r32925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docsurvey.doc.r70729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawing-with-metapost.doc.r72705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxtut.doc.r69587.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/first-latex-doc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontinstallationguide.doc.r59755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forest-quickstart.doc.r55688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentle.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guide-to-latex.doc.r45712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/happy4th.doc.r25020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impatient.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intro-scientific.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knuth-errata.doc.r58682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knuth-hint.doc.r72019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knuth-pdf.doc.r72018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2tabu-english.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-brochure.doc.r40612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-course.doc.r68681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-doc-ptr.doc.r72417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-for-undergraduates.doc.r70199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-graphics-companion.doc.r29235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-refsheet.doc.r45076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-veryshortguide.doc.r55228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-web-companion.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2e-help-texinfo.doc.r71252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex4wp.doc.r68096.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcheat.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcourse-rug.doc.r39026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexfileinfo-pkgs.doc.r26760.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-english.doc.r58309.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macros2e.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/math-into-latex-4.doc.r44131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maths-symbols.doc.r37763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memdesign.doc.r48664.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoirchapterstyles.doc.r59766.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metafont-beginners.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metapost-examples.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patgen2-tutorial.doc.r58841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictexsum.doc.r24965.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plain-doc.doc.r28424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-en.doc.r68790.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/short-math-guide.doc.r46126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplified-latex.doc.r20620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svg-inkscape.doc.r32199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tamethebeast.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tds.doc.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-font-errors-cheatsheet.doc.r18314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-nutshell.doc.r70375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-overview.doc.r41403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-refs.doc.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-vpat.doc.r72067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texbytopic.doc.r68950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texonly.doc.r50985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlepages.doc.r19457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlc2.doc.r26096.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlc3-examples.doc.r65496.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlmgrbasics.doc.r70175.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typstfun.doc.r70018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undergradmath.doc.r57286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/visualfaq.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/webguide.doc.r25813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapstuff-doc-en.doc.r71835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexref.doc.r70299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yet-another-guide-latex2e.doc.r68564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amiweb2c-guide.doc.r56878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscls-doc.doc.r46110.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amslatex-primer.doc.r28980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/around-the-bend.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascii-chart.doc.r20536.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asy-overview.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biblatex-cheatsheet.doc.r44685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/components.doc.r63184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comprehensive.doc.r69619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dickimaw.doc.r32925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docsurvey.doc.r70729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawing-with-metapost.doc.r72705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxtut.doc.r69587.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/first-latex-doc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontinstallationguide.doc.r59755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forest-quickstart.doc.r55688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentle.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guide-to-latex.doc.r45712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/happy4th.doc.r25020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impatient.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intro-scientific.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knuth-errata.doc.r58682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knuth-hint.doc.r72019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knuth-pdf.doc.r72018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2tabu-english.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-brochure.doc.r40612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-course.doc.r68681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-doc-ptr.doc.r72417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-for-undergraduates.doc.r70199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-graphics-companion.doc.r29235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-refsheet.doc.r45076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-veryshortguide.doc.r55228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-web-companion.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2e-help-texinfo.doc.r71252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex4wp.doc.r68096.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcheat.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcourse-rug.doc.r39026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexfileinfo-pkgs.doc.r26760.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-english.doc.r58309.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macros2e.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/math-into-latex-4.doc.r44131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maths-symbols.doc.r37763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memdesign.doc.r48664.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoirchapterstyles.doc.r59766.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metafont-beginners.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metapost-examples.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patgen2-tutorial.doc.r58841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictexsum.doc.r24965.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plain-doc.doc.r28424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-en.doc.r68790.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/short-math-guide.doc.r46126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplified-latex.doc.r20620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svg-inkscape.doc.r32199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tamethebeast.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tds.doc.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-font-errors-cheatsheet.doc.r18314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-nutshell.doc.r70375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-overview.doc.r41403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-refs.doc.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-vpat.doc.r72067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texbytopic.doc.r68950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texonly.doc.r50985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlepages.doc.r19457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlc2.doc.r26096.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlc3-examples.doc.r65496.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlmgrbasics.doc.r70175.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typstfun.doc.r70018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undergradmath.doc.r57286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/visualfaq.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/webguide.doc.r25813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapstuff-doc-en.doc.r71835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexref.doc.r70299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yet-another-guide-latex2e.doc.r68564.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexfileinfo-pkgs.source.r26760.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexfileinfo-pkgs.source.r26760.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9b08ecb8c61bef51a4ed42d4a1f286c4 +_md5_=c16cacd9c5f4ea558808eb734da1b72b diff --git a/metadata/md5-cache/dev-texlive/texlive-langeuropean-2024_p66432 b/metadata/md5-cache/dev-texlive/texlive-langeuropean-2024_p66432 index 35f89cfd58b6..fbc25c86e3a5 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langeuropean-2024_p66432 +++ b/metadata/md5-cache/dev-texlive/texlive-langeuropean-2024_p66432 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-SA-4.0 GPL-1+ GPL-2 LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langeuropean.r66432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/armtex.r69418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-albanian.r57005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bosnian.r38174.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-breton.r30257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-croatian.r35198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-danish.r57642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-dutch.r60362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-estonian.r38064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-finnish.r57643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-friulan.r39861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-hungarian.r49701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-icelandic.r51551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-irish.r30277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-kurmanji.r30279.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latin.r59800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latvian.r71108.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-lithuanian.r66513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-macedonian.r39587.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-norsk.r70691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-occitan.r39608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-piedmontese.r30282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romanian.r58776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romansh.r30286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-samin.r69604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-scottish.r69610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovenian.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-swedish.r57647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-turkish.r51560.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-welsh.r71109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/finbib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrlatex.r18020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huaz.r71180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hulipsum.r70928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-croatian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-danish.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-dutch.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-estonian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-finnish.r71880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-friulan.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-hungarian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-icelandic.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-irish.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-kurmanji.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-latin.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-latvian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-lithuanian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-macedonian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-norwegian.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-occitan.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-piedmontese.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-romanian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-romansh.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-slovenian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-swedish.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-turkish.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-uppersorbian.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-welsh.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lithuanian.r66461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nevelok.r39029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rojud.r56895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swebib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turkmen.r17748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langeuropean.r66432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/armtex.r69418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-albanian.r57005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bosnian.r38174.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-breton.r30257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-croatian.r35198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-danish.r57642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-dutch.r60362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-estonian.r38064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-finnish.r57643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-friulan.r39861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-hungarian.r49701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-icelandic.r51551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-irish.r30277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-kurmanji.r30279.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latin.r59800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latvian.r71108.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-lithuanian.r66513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-macedonian.r39587.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-norsk.r70691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-occitan.r39608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-piedmontese.r30282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romanian.r58776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romansh.r30286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-samin.r69604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-scottish.r69610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovenian.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-swedish.r57647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-turkish.r51560.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-welsh.r71109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/finbib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrlatex.r18020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huaz.r71180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hulipsum.r70928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-croatian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-danish.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-dutch.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-estonian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-finnish.r71880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-friulan.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-hungarian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-icelandic.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-irish.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-kurmanji.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-latin.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-latvian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-lithuanian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-macedonian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-norwegian.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-occitan.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-piedmontese.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-romanian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-romansh.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-slovenian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-swedish.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-turkish.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-uppersorbian.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-welsh.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lithuanian.r66461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nevelok.r39029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rojud.r56895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swebib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turkmen.r17748.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/armtex.doc.r69418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-albanian.doc.r57005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bosnian.doc.r38174.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-breton.doc.r30257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-croatian.doc.r35198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-danish.doc.r57642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-dutch.doc.r60362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-estonian.doc.r38064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-finnish.doc.r57643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-friulan.doc.r39861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-hungarian.doc.r49701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-icelandic.doc.r51551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-irish.doc.r30277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-kurmanji.doc.r30279.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latin.doc.r59800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latvian.doc.r71108.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-lithuanian.doc.r66513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-macedonian.doc.r39587.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-norsk.doc.r70691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-occitan.doc.r39608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-piedmontese.doc.r30282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romanian.doc.r58776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romansh.doc.r30286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-samin.doc.r69604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-scottish.doc.r69610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovenian.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-swedish.doc.r57647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-turkish.doc.r51560.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-welsh.doc.r71109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gloss-occitan.doc.r52593.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrlatex.doc.r18020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huaz.doc.r71180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hulipsum.doc.r70928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-hungarian.doc.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kaytannollista-latexia.doc.r71784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lithuanian.doc.r66461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-dutch.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-estonian.doc.r39323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-finnish.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-slovenian.doc.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-turkish.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nevelok.doc.r39029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rojud.doc.r56895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swebib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turkmen.doc.r17748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/armtex.doc.r69418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-albanian.doc.r57005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bosnian.doc.r38174.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-breton.doc.r30257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-croatian.doc.r35198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-danish.doc.r57642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-dutch.doc.r60362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-estonian.doc.r38064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-finnish.doc.r57643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-friulan.doc.r39861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-hungarian.doc.r49701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-icelandic.doc.r51551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-irish.doc.r30277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-kurmanji.doc.r30279.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latin.doc.r59800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latvian.doc.r71108.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-lithuanian.doc.r66513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-macedonian.doc.r39587.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-norsk.doc.r70691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-occitan.doc.r39608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-piedmontese.doc.r30282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romanian.doc.r58776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romansh.doc.r30286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-samin.doc.r69604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-scottish.doc.r69610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovenian.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-swedish.doc.r57647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-turkish.doc.r51560.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-welsh.doc.r71109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gloss-occitan.doc.r52593.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrlatex.doc.r18020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huaz.doc.r71180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hulipsum.doc.r70928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-hungarian.doc.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kaytannollista-latexia.doc.r71784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lithuanian.doc.r66461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-dutch.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-estonian.doc.r39323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-finnish.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-slovenian.doc.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-turkish.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nevelok.doc.r39029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rojud.doc.r56895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swebib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turkmen.doc.r17748.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-albanian.source.r57005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-bosnian.source.r38174.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-breton.source.r30257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-croatian.source.r35198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-danish.source.r57642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-dutch.source.r60362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-estonian.source.r38064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-finnish.source.r57643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-friulan.source.r39861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-icelandic.source.r51551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-irish.source.r30277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-kurmanji.source.r30279.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latin.source.r59800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-latvian.source.r71108.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-lithuanian.source.r66513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-macedonian.source.r39587.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-norsk.source.r70691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-occitan.source.r39608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-piedmontese.source.r30282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romanian.source.r58776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-romansh.source.r30286.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-samin.source.r69604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-scottish.source.r69610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-slovenian.source.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-swedish.source.r57647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-turkish.source.r51560.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-welsh.source.r71109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gloss-occitan.source.r52593.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrlatex.source.r18020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hulipsum.source.r70928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-turkish.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nevelok.source.r39029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turkmen.source.r17748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-albanian.source.r57005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-bosnian.source.r38174.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-breton.source.r30257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-croatian.source.r35198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-danish.source.r57642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-dutch.source.r60362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-estonian.source.r38064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-finnish.source.r57643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-friulan.source.r39861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-icelandic.source.r51551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-irish.source.r30277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-kurmanji.source.r30279.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latin.source.r59800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-latvian.source.r71108.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-lithuanian.source.r66513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-macedonian.source.r39587.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-norsk.source.r70691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-occitan.source.r39608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-piedmontese.source.r30282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romanian.source.r58776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-romansh.source.r30286.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-samin.source.r69604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-scottish.source.r69610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-slovenian.source.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-swedish.source.r57647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-turkish.source.r51560.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-welsh.source.r71109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gloss-occitan.source.r52593.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrlatex.source.r18020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hulipsum.source.r70928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-turkish.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nevelok.source.r39029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turkmen.source.r17748.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=2b0497fa723e6c5418bd4e74fb499cff +_md5_=70c99652a2c2cce55b1a3b856cdd8247 diff --git a/metadata/md5-cache/dev-texlive/texlive-langfrench-2024_p72499 b/metadata/md5-cache/dev-texlive/texlive-langfrench-2024_p72499 index 1e0079800310..db670dfc838b 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langfrench-2024_p72499 +++ b/metadata/md5-cache/dev-texlive/texlive-langfrench-2024_p72499 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-4.0 CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langfrench.r72499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aeguill.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/annee-scolaire.r55988.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-basque.r30256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-french.r71907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-book.r32924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-date.r26477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib-fr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-french.r53138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cahierprof.r68148.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/couleurs-fr.r67901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/droit-fr.r39802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/e-french.r52027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facture.r67538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frenchmath.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frletter.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frpseudocode.r56088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-basque.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-french.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impnattypo.r50227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letgut.r72713.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mafr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matapli.r62632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/panneauxroute.r72287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profcollege.r72198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proflabo.r63147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proflycee.r72722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profsio.r71302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabvar.r63921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tdsfrmath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/variations.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langfrench.r72499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aeguill.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annee-scolaire.r55988.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-basque.r30256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-french.r71907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-book.r32924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-date.r26477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib-fr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-french.r53138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cahierprof.r68148.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/couleurs-fr.r67901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/droit-fr.r39802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/e-french.r52027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facture.r67538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frenchmath.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frletter.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frpseudocode.r56088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-basque.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-french.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impnattypo.r50227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letgut.r72713.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mafr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matapli.r62632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/panneauxroute.r72287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profcollege.r72198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proflabo.r63147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proflycee.r72722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profsio.r71302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabvar.r63921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tdsfrmath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/variations.r15878.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aeguill.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/annee-scolaire.doc.r55988.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apprendre-a-programmer-en-tex.doc.r57179.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apprends-latex.doc.r19306.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-basque.doc.r30256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-french.doc.r71907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-book.doc.r32924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-date.doc.r26477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bib-fr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-french.doc.r53138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booktabs-fr.doc.r21948.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cahierprof.doc.r68148.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/couleurs-fr.doc.r67901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/droit-fr.doc.r39802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/e-french.doc.r52027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epslatex-fr.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expose-expl3-dunkerque-2019.doc.r54451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facture.doc.r67538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/faq-fr.doc.r71182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/faq-fr-gutenberg.doc.r72499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formation-latex-ul.doc.r70507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frenchmath.doc.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frletter.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frpseudocode.doc.r56088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impatient-fr.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impnattypo.doc.r50227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2tabu-french.doc.r31315.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2e-help-texinfo-fr.doc.r64228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letgut.doc.r72713.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-french.doc.r23332.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mafr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matapli.doc.r62632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/panneauxroute.doc.r72287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profcollege.doc.r72198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proflabo.doc.r63147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proflycee.doc.r72722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profsio.doc.r71302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabvar.doc.r63921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tdsfrmath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-fr.doc.r70783.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-array-fr.doc.r24344.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-dcolumn-fr.doc.r24345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-natbib-fr.doc.r25105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-tabbing-fr.doc.r24228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/variations.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/visualfaq-fr.doc.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/visualtikz.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aeguill.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annee-scolaire.doc.r55988.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apprendre-a-programmer-en-tex.doc.r57179.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apprends-latex.doc.r19306.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-basque.doc.r30256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-french.doc.r71907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-book.doc.r32924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-date.doc.r26477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bib-fr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-french.doc.r53138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booktabs-fr.doc.r21948.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cahierprof.doc.r68148.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/couleurs-fr.doc.r67901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/droit-fr.doc.r39802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/e-french.doc.r52027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epslatex-fr.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expose-expl3-dunkerque-2019.doc.r54451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facture.doc.r67538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/faq-fr.doc.r71182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/faq-fr-gutenberg.doc.r72499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formation-latex-ul.doc.r70507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frenchmath.doc.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frletter.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frpseudocode.doc.r56088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impatient-fr.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impnattypo.doc.r50227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2tabu-french.doc.r31315.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2e-help-texinfo-fr.doc.r64228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letgut.doc.r72713.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-french.doc.r23332.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mafr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matapli.doc.r62632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/panneauxroute.doc.r72287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profcollege.doc.r72198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proflabo.doc.r63147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proflycee.doc.r72722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profsio.doc.r71302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabvar.doc.r63921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tdsfrmath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-fr.doc.r70783.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-array-fr.doc.r24344.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-dcolumn-fr.doc.r24345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-natbib-fr.doc.r25105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-tabbing-fr.doc.r24228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/variations.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/visualfaq-fr.doc.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/visualtikz.doc.r54080.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/annee-scolaire.source.r55988.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-basque.source.r30256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-french.source.r71907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-book.source.r32924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basque-date.source.r26477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-french.source.r53138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facture.source.r67538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formation-latex-ul.source.r70507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frenchmath.source.r71205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-basque.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/impnattypo.source.r50227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letgut.source.r72713.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabvar.source.r63921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tdsfrmath.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annee-scolaire.source.r55988.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-basque.source.r30256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-french.source.r71907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-book.source.r32924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basque-date.source.r26477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-french.source.r53138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facture.source.r67538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formation-latex-ul.source.r70507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frenchmath.source.r71205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-basque.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/impnattypo.source.r50227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letgut.source.r72713.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabvar.source.r63921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tdsfrmath.source.r15878.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=6cfbc93be0e9e007801d6c66bb825659 +_md5_=0aa1fb505225c27e1b92269082d163ac diff --git a/metadata/md5-cache/dev-texlive/texlive-langgerman-2024_p68711 b/metadata/md5-cache/dev-texlive/texlive-langgerman-2024_p68711 index 5c1a40623cd9..6e4e126fca99 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langgerman-2024_p68711 +++ b/metadata/md5-cache/dev-texlive/texlive-langgerman-2024_p68711 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=FDL-1.1+ GPL-1+ LPPL-1.0 LPPL-1.3 LPPL-1.3c MIT OPL TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langgerman.r68711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apalike-german.r65403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autotype.r69309.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-german.r69506.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-german.r21923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dehyph.r48599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dehyph-exptl.r70233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dhua.r24035.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtk-bibliography.r72281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/german.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/germbib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/germkorr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hausarbeit-jura.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-german.r59807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/milog.r41610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-de.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/r_und_s.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schulmathematik.r69244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal-de.r47111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udesoftec.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhrzeit.r39570.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umlaute.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langgerman.r68711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apalike-german.r65403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autotype.r69309.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-german.r69506.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-german.r21923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dehyph.r48599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dehyph-exptl.r70233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dhua.r24035.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtk-bibliography.r72281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/german.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/germbib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/germkorr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hausarbeit-jura.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-german.r59807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/milog.r41610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-de.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/r_und_s.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schulmathematik.r69244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal-de.r47111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udesoftec.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhrzeit.r39570.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umlaute.r15878.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/apalike-german.doc.r65403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autotype.doc.r69309.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-german.doc.r69506.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibleref-german.doc.r21923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booktabs-de.doc.r21907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csquotes-de.doc.r23371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dehyph-exptl.doc.r70233.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dhua.doc.r24035.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtk-bibliography.doc.r72281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etdipa.doc.r36354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoolbox-de.doc.r21906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fifinddo-info.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/german.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/germbib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/germkorr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hausarbeit-jura.doc.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-script-examples.doc.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2picfaq.doc.r19601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2tabu.doc.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcheat-de.doc.r35702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-german.doc.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-doc-de.doc.r30474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/microtype-de.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/milog.doc.r41610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-de.doc.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/r_und_s.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schulmathematik.doc.r69244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/templates-fenn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/templates-sommer.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal-de.doc.r47111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-de.doc.r71542.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipa-de.doc.r22005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-arsclassica-de.doc.r23803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-biblatex-de.doc.r59382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-chemsym-de.doc.r23804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-ecv-de.doc.r24754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-enumitem-de.doc.r24196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-europecv-de.doc.r23840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-filecontents-de.doc.r24010.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translation-moreverb-de.doc.r23957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udesoftec.doc.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhrzeit.doc.r39570.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umlaute.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/voss-mathcol.doc.r32954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apalike-german.doc.r65403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autotype.doc.r69309.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-german.doc.r69506.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibleref-german.doc.r21923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booktabs-de.doc.r21907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csquotes-de.doc.r23371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dehyph-exptl.doc.r70233.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dhua.doc.r24035.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtk-bibliography.doc.r72281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etdipa.doc.r36354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoolbox-de.doc.r21906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fifinddo-info.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/german.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/germbib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/germkorr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hausarbeit-jura.doc.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-script-examples.doc.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2picfaq.doc.r19601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2tabu.doc.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcheat-de.doc.r35702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-german.doc.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-doc-de.doc.r30474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/microtype-de.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/milog.doc.r41610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-de.doc.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/r_und_s.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schulmathematik.doc.r69244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/templates-fenn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/templates-sommer.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal-de.doc.r47111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-de.doc.r71542.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipa-de.doc.r22005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-arsclassica-de.doc.r23803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-biblatex-de.doc.r59382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-chemsym-de.doc.r23804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-ecv-de.doc.r24754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-enumitem-de.doc.r24196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-europecv-de.doc.r23840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-filecontents-de.doc.r24010.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translation-moreverb-de.doc.r23957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udesoftec.doc.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhrzeit.doc.r39570.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umlaute.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/voss-mathcol.doc.r32954.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-german.source.r69506.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dhua.source.r24035.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fifinddo-info.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/german.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hausarbeit-jura.source.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal-de.source.r47111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udesoftec.source.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umlaute.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-german.source.r69506.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dhua.source.r24035.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fifinddo-info.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/german.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hausarbeit-jura.source.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal-de.source.r47111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udesoftec.source.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umlaute.source.r15878.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=632b808781383d95f1209f152bd16bf7 +_md5_=e287dbfb19e6625e41d52034d3e6e053 diff --git a/metadata/md5-cache/dev-texlive/texlive-langgreek-2024_p65038 b/metadata/md5-cache/dev-texlive/texlive-langgreek-2024_p65038 index 3710247d3663..50d58cf34d92 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langgreek-2024_p65038 +++ b/metadata/md5-cache/dev-texlive/texlive-langgreek-2024_p65038 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD-2 GPL-1+ GPL-2 LGPL-3 LPPL-1.3 LPPL-1.3c TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langgreek.r65038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-greek.r68532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/begingreek.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/betababel.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbfonts.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbfonts-fd.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsbaskerville.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsporson.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greek-fontenc.r68877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greek-inputenc.r66634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greekdates.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greektex.r28327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greektonoi.r39419.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-ancientgreek.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-greek.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibycus-babel.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibygrk.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kerkis.r56271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/levy.r21750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lgreek.r21818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lgrmath.r65038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkgrkindex.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/talos.r61820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/teubner.r68074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xgreek.r69652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yannisgr.r22613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langgreek.r65038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-greek.r68532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/begingreek.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/betababel.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbfonts.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbfonts-fd.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsbaskerville.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsporson.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greek-fontenc.r68877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greek-inputenc.r66634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greekdates.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greektex.r28327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greektonoi.r39419.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-ancientgreek.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-greek.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibycus-babel.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibygrk.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kerkis.r56271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/levy.r21750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lgreek.r21818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lgrmath.r65038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkgrkindex.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/talos.r61820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/teubner.r68074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xgreek.r69652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yannisgr.r22613.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-greek.doc.r68532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/begingreek.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/betababel.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbfonts.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbfonts-fd.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsbaskerville.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfsporson.doc.r18651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greek-fontenc.doc.r68877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greek-inputenc.doc.r66634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greekdates.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greektex.doc.r28327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greektonoi.doc.r39419.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-greek.doc.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibycus-babel.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibygrk.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kerkis.doc.r56271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/levy.doc.r21750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lgreek.doc.r21818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lgrmath.doc.r65038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkgrkindex.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/talos.doc.r61820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/teubner.doc.r68074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xgreek.doc.r69652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yannisgr.doc.r22613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-greek.doc.r68532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/begingreek.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/betababel.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbfonts.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbfonts-fd.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsbaskerville.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfsporson.doc.r18651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greek-fontenc.doc.r68877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greek-inputenc.doc.r66634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greekdates.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greektex.doc.r28327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greektonoi.doc.r39419.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-greek.doc.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibycus-babel.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibygrk.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kerkis.doc.r56271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/levy.doc.r21750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lgreek.doc.r21818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lgrmath.doc.r65038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkgrkindex.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/talos.doc.r61820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/teubner.doc.r68074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xgreek.doc.r69652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yannisgr.doc.r22613.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-greek.source.r68532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/begingreek.source.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbfonts-fd.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/greekdates.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibycus-babel.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lgrmath.source.r65038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/teubner.source.r68074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xgreek.source.r69652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-greek.source.r68532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/begingreek.source.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbfonts-fd.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/greekdates.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibycus-babel.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lgrmath.source.r65038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/teubner.source.r68074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xgreek.source.r69652.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=f5f18a74cd0c72e1a0fe879ff2b9576d +_md5_=2bd16eb818e5f962ac7aa41c326e30d3 diff --git a/metadata/md5-cache/dev-texlive/texlive-langitalian-2024_p55129 b/metadata/md5-cache/dev-texlive/texlive-langitalian-2024_p55129 index 76931456c2aa..3bade4943343 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langitalian-2024_p55129 +++ b/metadata/md5-cache/dev-texlive/texlive-langitalian-2024_p55129 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=FDL-1.1+ GPL-1+ LGPL-2+ LPPL-1.3 LPPL-1.3c TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langitalian.r55129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antanilipsum.r55250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-italian.r72520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codicefiscaleitaliano.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixltxhyph.r25832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frontespizio.r24054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-italian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/itnumpar.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layaureo.r19087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifica.r56625.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langitalian.r55129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antanilipsum.r55250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-italian.r72520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codicefiscaleitaliano.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixltxhyph.r25832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frontespizio.r24054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-italian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/itnumpar.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layaureo.r19087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifica.r56625.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsldoc-it.doc.r45662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsmath-it.doc.r22930.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsthdoc-it.doc.r45662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/antanilipsum.doc.r55250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-italian.doc.r72520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codicefiscaleitaliano.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhdr-it.doc.r21912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixltxhyph.doc.r25832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frontespizio.doc.r24054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/itnumpar.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2tabu-italian.doc.r25218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex4wp-it.doc.r36000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layaureo.doc.r19087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-italian.doc.r57038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfrag-italian.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-it.doc.r58653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifica.doc.r56625.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsldoc-it.doc.r45662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsmath-it.doc.r22930.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsthdoc-it.doc.r45662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antanilipsum.doc.r55250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-italian.doc.r72520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codicefiscaleitaliano.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhdr-it.doc.r21912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixltxhyph.doc.r25832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frontespizio.doc.r24054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/itnumpar.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2tabu-italian.doc.r25218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex4wp-it.doc.r36000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layaureo.doc.r19087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-italian.doc.r57038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfrag-italian.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-it.doc.r58653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifica.doc.r56625.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/antanilipsum.source.r55250.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-italian.source.r72520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codicefiscaleitaliano.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixltxhyph.source.r25832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frontespizio.source.r24054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/itnumpar.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layaureo.source.r19087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifica.source.r56625.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antanilipsum.source.r55250.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-italian.source.r72520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codicefiscaleitaliano.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixltxhyph.source.r25832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frontespizio.source.r24054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/itnumpar.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layaureo.source.r19087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifica.source.r56625.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9893ec2f61815c04d9b59a35df708a00 +_md5_=06551c2c369fcc85fbfec2bacb54f8d1 diff --git a/metadata/md5-cache/dev-texlive/texlive-langjapanese-2024_p72817 b/metadata/md5-cache/dev-texlive/texlive-langjapanese-2024_p72817 index 983fdcb00fc5..abdd02dbe15f 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langjapanese-2024_p72817 +++ b/metadata/md5-cache/dev-texlive/texlive-langjapanese-2024_p72817 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD BSD-2 GPL-1+ GPL-2 GPL-3 LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-langcjk-2024 dev-lang/ruby >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langjapanese.r72817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascmac.r53411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asternote.r63838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-japanese.r57733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxbase.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcjkjatype.r67705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcoloremoji.r72896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxghost.r66147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjaholiday.r60636.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjalipsum.r67620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjaprnind.r59641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjatoucs.r71870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjscls.r71848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxorigcapt.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxwareki.r67594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/convbkmk.r49252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotesj.r47703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gckanbun.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentombow.r64333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/haranoaji.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/haranoaji-extra.r68500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieejtran.r65641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifptex.r66803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifxptex.r46153.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipaex.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/japanese-mathformulas.r64678.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/japanese-otf.r68492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jieeetran.r65642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlreq.r72460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlreq-deluxe.r69961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpneduenumerate.r72898.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpnedumathsymbols.r63864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jsclasses.r66093.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kanbun.r62026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexja.r72546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mendex-doc.r62914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morisawa.r46946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbibtex-base.r66085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platex.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platex-tools.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plautopatch.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex.r70058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-base.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-fontmaps.r65953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-fonts.r64330.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex2pdf.r65953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxbase.r66187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxchfon.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxcjkcat.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxjahyper.r72114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxjodel.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxrubrica.r66298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxufont.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uplatex.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex.r66381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex-base.r72534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex-fonts.r68297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wadalab.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjafbfont.r28539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjatype.r53500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langjapanese.r72817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascmac.r53411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asternote.r63838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-japanese.r57733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxbase.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcjkjatype.r67705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcoloremoji.r72896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxghost.r66147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjaholiday.r60636.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjalipsum.r67620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjaprnind.r59641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjatoucs.r71870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjscls.r71848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxorigcapt.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxwareki.r67594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/convbkmk.r49252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotesj.r47703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gckanbun.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentombow.r64333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/haranoaji.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/haranoaji-extra.r68500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieejtran.r65641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifptex.r66803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifxptex.r46153.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipaex.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/japanese-mathformulas.r64678.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/japanese-otf.r68492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jieeetran.r65642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlreq.r72460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlreq-deluxe.r69961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpneduenumerate.r72898.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpnedumathsymbols.r63864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jsclasses.r66093.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kanbun.r62026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexja.r72546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mendex-doc.r62914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morisawa.r46946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbibtex-base.r66085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platex.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platex-tools.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plautopatch.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex.r70058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-base.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-fontmaps.r65953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-fonts.r64330.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex2pdf.r65953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxbase.r66187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxchfon.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxcjkcat.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxjahyper.r72114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxjodel.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxrubrica.r66298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxufont.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uplatex.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex.r66381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex-base.r72534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex-fonts.r68297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wadalab.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjafbfont.r28539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjatype.r53500.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascmac.doc.r53411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asternote.doc.r63838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-japanese.doc.r57733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxbase.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcjkjatype.doc.r67705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcoloremoji.doc.r72896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxghost.doc.r66147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjaholiday.doc.r60636.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjalipsum.doc.r67620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjaprnind.doc.r59641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjatoucs.doc.r71870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjscls.doc.r71848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxorigcapt.doc.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxwareki.doc.r67594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/convbkmk.doc.r49252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotesj.doc.r47703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gckanbun.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gentombow.doc.r64333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/haranoaji.doc.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/haranoaji-extra.doc.r68500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieejtran.doc.r65641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifptex.doc.r66803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifxptex.doc.r46153.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipaex.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/japanese-mathformulas.doc.r64678.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/japanese-otf.doc.r68492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jieeetran.doc.r65642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlreq.doc.r72460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlreq-deluxe.doc.r69961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpneduenumerate.doc.r72898.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpnedumathsymbols.doc.r63864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jsclasses.doc.r66093.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kanbun.doc.r62026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-japanese.doc.r36207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexja.doc.r72546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mendex-doc.doc.r62914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morisawa.doc.r46946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbibtex-base.doc.r66085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbibtex-manual.doc.r66181.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platex.doc.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platex-tools.doc.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platexcheat.doc.r49557.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plautopatch.doc.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex.doc.r70058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-base.doc.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-fontmaps.doc.r65953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-fonts.doc.r64330.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-manual.doc.r71534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex2pdf.doc.r65953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxbase.doc.r66187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxchfon.doc.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxcjkcat.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxjahyper.doc.r72114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxjodel.doc.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxrubrica.doc.r66298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxufont.doc.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-ja.doc.r70587.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uplatex.doc.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex.doc.r66381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex-base.doc.r72534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uptex-fonts.doc.r68297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wadalab.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjafbfont.doc.r28539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zxjatype.doc.r53500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascmac.doc.r53411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asternote.doc.r63838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-japanese.doc.r57733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxbase.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcjkjatype.doc.r67705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcoloremoji.doc.r72896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxghost.doc.r66147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjaholiday.doc.r60636.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjalipsum.doc.r67620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjaprnind.doc.r59641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjatoucs.doc.r71870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjscls.doc.r71848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxorigcapt.doc.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxwareki.doc.r67594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/convbkmk.doc.r49252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotesj.doc.r47703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gckanbun.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gentombow.doc.r64333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/haranoaji.doc.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/haranoaji-extra.doc.r68500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieejtran.doc.r65641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifptex.doc.r66803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifxptex.doc.r46153.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipaex.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/japanese-mathformulas.doc.r64678.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/japanese-otf.doc.r68492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jieeetran.doc.r65642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlreq.doc.r72460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlreq-deluxe.doc.r69961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpneduenumerate.doc.r72898.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpnedumathsymbols.doc.r63864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jsclasses.doc.r66093.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kanbun.doc.r62026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-japanese.doc.r36207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexja.doc.r72546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mendex-doc.doc.r62914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morisawa.doc.r46946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbibtex-base.doc.r66085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbibtex-manual.doc.r66181.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platex.doc.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platex-tools.doc.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platexcheat.doc.r49557.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plautopatch.doc.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex.doc.r70058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-base.doc.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-fontmaps.doc.r65953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-fonts.doc.r64330.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-manual.doc.r71534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex2pdf.doc.r65953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxbase.doc.r66187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxchfon.doc.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxcjkcat.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxjahyper.doc.r72114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxjodel.doc.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxrubrica.doc.r66298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxufont.doc.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-ja.doc.r70587.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uplatex.doc.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex.doc.r66381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex-base.doc.r72534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uptex-fonts.doc.r68297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wadalab.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjafbfont.doc.r28539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zxjatype.doc.r53500.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascmac.source.r53411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-japanese.source.r57733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxjscls.source.r71848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/japanese-otf.source.r68492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlreq.source.r72460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jsclasses.source.r66093.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexja.source.r72546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mendex-doc.source.r62914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morisawa.source.r46946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/platex.source.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptex-fontmaps.source.r65953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxrubrica.source.r66298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uplatex.source.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascmac.source.r53411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-japanese.source.r57733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxjscls.source.r71848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/japanese-otf.source.r68492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlreq.source.r72460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jsclasses.source.r66093.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexja.source.r72546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mendex-doc.source.r62914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morisawa.source.r46946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/platex.source.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptex-fontmaps.source.r65953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxrubrica.source.r66298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uplatex.source.r71363.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=47df10f6cf6df2eb2b8789934501d2a2 +_md5_=15ccae7e24404fca2c9150c7498cd593 diff --git a/metadata/md5-cache/dev-texlive/texlive-langkorean-2024_p54074 b/metadata/md5-cache/dev-texlive/texlive-langkorean-2024_p54074 index 5b04cc8a4fc0..e426b2e3f708 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langkorean-2024_p54074 +++ b/metadata/md5-cache/dev-texlive/texlive-langkorean-2024_p54074 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=FDL-1.1+ GPL-1+ GPL-2 LPPL-1.3 LPPL-1.3c OFL-1.1 TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-langcjk-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langkorean.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/baekmuk.r56915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk-ko.r70300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-oblivoir.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-plain.r63689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-utf.r63690.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-utils.r38727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nanumtype1.r29558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmhanguljamo.r71464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhc.r16791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unfonts-core.r56291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unfonts-extra.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langkorean.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baekmuk.r56915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk-ko.r70300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-oblivoir.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-plain.r63689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-utf.r63690.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-utils.r38727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nanumtype1.r29558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmhanguljamo.r71464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhc.r16791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unfonts-core.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unfonts-extra.r56291.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/baekmuk.doc.r56915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjk-ko.doc.r70300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-oblivoir.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-plain.doc.r63689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-utf.doc.r63690.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kotex-utils.doc.r38727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-korean.doc.r58468.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nanumtype1.doc.r29558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmhanguljamo.doc.r71464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhc.doc.r16791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unfonts-core.doc.r56291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unfonts-extra.doc.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/baekmuk.doc.r56915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjk-ko.doc.r70300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-oblivoir.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-plain.doc.r63689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-utf.doc.r63690.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kotex-utils.doc.r38727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-korean.doc.r58468.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nanumtype1.doc.r29558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmhanguljamo.doc.r71464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhc.doc.r16791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unfonts-core.doc.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unfonts-extra.doc.r56291.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=1daf478ada7bce002533938ddc64d46c +_md5_=64d00617f651b08a7ae403c5edd857b5 diff --git a/metadata/md5-cache/dev-texlive/texlive-langother-2024_p68719 b/metadata/md5-cache/dev-texlive/texlive-langother-2024_p68719 index e5bd35f1a050..5cca485d8f42 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langother-2024_p68719 +++ b/metadata/md5-cache/dev-texlive/texlive-langother-2024_p68719 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3+ LPPL-1.3 LPPL-1.3c OFL-1.1 TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langother.r68719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aalok.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akshar.r56277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aramaic-serto.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-azerbaijani.r44197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-esperanto.r30265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-georgian.r45864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-hebrew.r68016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-indonesian.r43235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-interlingua.r30276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-malay.r43234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-sorbian.r60975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-thai.r30564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-vietnamese.r39246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangla.r65786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangtex.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bengali.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/burmese.r25185.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chhaya.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjhebrew.r43444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctib.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/culmus.r68495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebong.r67933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ethiop.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ethiop-t1.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fc.r32796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonts-tlwg.r60817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hebrew-fonts.r68038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-afrikaans.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-armenian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-coptic.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-esperanto.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-ethiopic.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-georgian.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-indic.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-indonesian.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-interlingua.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-sanskrit.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-thai.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-turkmen.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexbangla.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latino-sine-flexione.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marathi.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/padauk.r42617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-bn.r68345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-id.r68747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-ur.r68314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanskrit.r64502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanskrit-t1.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thaienum.r44140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thaispec.r58019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-alphabets.r66225.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vntex.r62837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wnri.r22459.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wnri-latex.r22338.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-devanagari.r34296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langother.r68719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aalok.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akshar.r56277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aramaic-serto.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-azerbaijani.r44197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-esperanto.r30265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-georgian.r45864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-hebrew.r68016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-indonesian.r43235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-interlingua.r30276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-malay.r43234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-sorbian.r60975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-thai.r30564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-vietnamese.r39246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangla.r65786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangtex.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bengali.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/burmese.r25185.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chhaya.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjhebrew.r43444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctib.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/culmus.r68495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebong.r67933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ethiop.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ethiop-t1.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fc.r32796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonts-tlwg.r60817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hebrew-fonts.r68038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-afrikaans.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-armenian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-coptic.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-esperanto.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-ethiopic.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-georgian.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-indic.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-indonesian.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-interlingua.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-sanskrit.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-thai.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-turkmen.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexbangla.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latino-sine-flexione.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marathi.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/padauk.r42617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-bn.r68345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-id.r68747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-ur.r68314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanskrit.r64502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanskrit-t1.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thaienum.r44140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thaispec.r58019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-alphabets.r66225.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vntex.r62837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wnri.r22459.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wnri-latex.r22338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-devanagari.r34296.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aalok.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akshar.doc.r56277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsldoc-vn.doc.r21855.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aramaic-serto.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-azerbaijani.doc.r44197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-esperanto.doc.r30265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-georgian.doc.r45864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-hebrew.doc.r68016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-indonesian.doc.r43235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-interlingua.doc.r30276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-malay.doc.r43234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-sorbian.doc.r60975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-thai.doc.r30564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-vietnamese.doc.r39246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangla.doc.r65786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangtex.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bengali.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/burmese.doc.r25185.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chhaya.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjhebrew.doc.r43444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctib.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/culmus.doc.r68495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebong.doc.r67933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ethiop.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ethiop-t1.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fc.doc.r32796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonts-tlwg.doc.r60817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hebrew-fonts.doc.r68038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hindawi-latex-template.doc.r57757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-sanskrit.doc.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-mr.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexbangla.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latino-sine-flexione.doc.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-thai.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-vietnamese.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marathi.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntheorem-vn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/padauk.doc.r42617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-bn.doc.r68345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-id.doc.r68747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-ur.doc.r68314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanskrit.doc.r64502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanskrit-t1.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thaienum.doc.r44140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thaispec.doc.r58019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-alphabets.doc.r66225.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vntex.doc.r62837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wnri.doc.r22459.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wnri-latex.doc.r22338.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-devanagari.doc.r34296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aalok.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akshar.doc.r56277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsldoc-vn.doc.r21855.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aramaic-serto.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-azerbaijani.doc.r44197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-esperanto.doc.r30265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-georgian.doc.r45864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-hebrew.doc.r68016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-indonesian.doc.r43235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-interlingua.doc.r30276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-malay.doc.r43234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-sorbian.doc.r60975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-thai.doc.r30564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-vietnamese.doc.r39246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangla.doc.r65786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangtex.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bengali.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/burmese.doc.r25185.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chhaya.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjhebrew.doc.r43444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctib.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/culmus.doc.r68495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebong.doc.r67933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ethiop.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ethiop-t1.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fc.doc.r32796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonts-tlwg.doc.r60817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hebrew-fonts.doc.r68038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hindawi-latex-template.doc.r57757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-sanskrit.doc.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-mr.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexbangla.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latino-sine-flexione.doc.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-thai.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-vietnamese.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marathi.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntheorem-vn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/padauk.doc.r42617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-bn.doc.r68345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-id.doc.r68747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-ur.doc.r68314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanskrit.doc.r64502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanskrit-t1.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thaienum.doc.r44140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thaispec.doc.r58019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-alphabets.doc.r66225.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vntex.doc.r62837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wnri.doc.r22459.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wnri-latex.doc.r22338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-devanagari.doc.r34296.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aalok.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akshar.source.r56277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-azerbaijani.source.r44197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-esperanto.source.r30265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-hebrew.source.r68016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-indonesian.source.r43235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-interlingua.source.r30276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-malay.source.r43234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-sorbian.source.r60975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-thai.source.r30564.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-vietnamese.source.r39246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bengali.source.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/burmese.source.r25185.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chhaya.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctib.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/culmus.source.r68495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ethiop.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonts-tlwg.source.r60817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hebrew-fonts.source.r68038.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-armenian.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-ethiopic.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-turkmen.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marathi.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanskrit.source.r64502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thaispec.source.r58019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vntex.source.r62837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wnri-latex.source.r22338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aalok.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akshar.source.r56277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-azerbaijani.source.r44197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-esperanto.source.r30265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-hebrew.source.r68016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-indonesian.source.r43235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-interlingua.source.r30276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-malay.source.r43234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-sorbian.source.r60975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-thai.source.r30564.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-vietnamese.source.r39246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bengali.source.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/burmese.source.r25185.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chhaya.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctib.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/culmus.source.r68495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ethiop.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonts-tlwg.source.r60817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hebrew-fonts.source.r68038.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-armenian.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-ethiopic.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-turkmen.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marathi.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanskrit.source.r64502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thaispec.source.r58019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vntex.source.r62837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wnri-latex.source.r22338.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9a532dc0efdea20c2c2da5556d3414fc +_md5_=9ebf569e4e71a6bcbef338ad1b262542 diff --git a/metadata/md5-cache/dev-texlive/texlive-langpolish-2024_p54074 b/metadata/md5-cache/dev-texlive/texlive-langpolish-2024_p54074 index 94cac05c2e6c..914decc07559 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langpolish-2024_p54074 +++ b/metadata/md5-cache/dev-texlive/texlive-langpolish-2024_p54074 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=FDL-1.1+ GPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c TeX public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langpolish.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-polish.r62680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bredzenie.r44371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cc-pl.r58602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gustlib.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-polish.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mex.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwcls.r44352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pl.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polski.r60322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/przechlewski-book.r23552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qpxqtx.r45797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tap.r31731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utf8mex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langpolish.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-polish.r62680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bredzenie.r44371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cc-pl.r58602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gustlib.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-polish.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mex.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwcls.r44352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pl.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polski.r60322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/przechlewski-book.r23552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qpxqtx.r45797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tap.r31731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utf8mex.r15878.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-polish.doc.r62680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bredzenie.doc.r44371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cc-pl.doc.r58602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gustlib.doc.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gustprog.doc.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-polish.doc.r63289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mex.doc.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwcls.doc.r44352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pl.doc.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polski.doc.r60322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/przechlewski-book.doc.r23552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qpxqtx.doc.r45797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tap.doc.r31731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-virtual-academy-pl.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-pl.doc.r66576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utf8mex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-polish.doc.r62680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bredzenie.doc.r44371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cc-pl.doc.r58602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gustlib.doc.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gustprog.doc.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-polish.doc.r63289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mex.doc.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwcls.doc.r44352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pl.doc.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polski.doc.r60322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/przechlewski-book.doc.r23552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qpxqtx.doc.r45797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tap.doc.r31731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-virtual-academy-pl.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-pl.doc.r66576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utf8mex.doc.r15878.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-polish.source.r62680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mex.source.r58661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwcls.source.r44352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polski.source.r60322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-polish.source.r62680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mex.source.r58661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwcls.source.r44352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polski.source.r60322.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=afd359aa7627a96ab8cbd4a2f5560441 +_md5_=3e7889385e2cdc23007ea6e953321db0 diff --git a/metadata/md5-cache/dev-texlive/texlive-langportuguese-2024_p67125 b/metadata/md5-cache/dev-texlive/texlive-langportuguese-2024_p67125 index b16d1610aad1..702734d09887 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langportuguese-2024_p67125 +++ b/metadata/md5-cache/dev-texlive/texlive-langportuguese-2024_p67125 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2+ LPPL-1.3 LPPL-1.3c MIT public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langportuguese.r67125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-portuges.r59883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feupphdteses.r30962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-portuguese.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numberpt.r51640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ordinalpt.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptlatexcommands.r67125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langportuguese.r67125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-portuges.r59883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feupphdteses.r30962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-portuguese.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numberpt.r51640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ordinalpt.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptlatexcommands.r67125.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-portuges.doc.r59883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-tut-pt.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cursolatex.doc.r24139.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feupphdteses.doc.r30962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-via-exemplos.doc.r68627.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcheat-ptbr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-portuguese.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numberpt.doc.r51640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ordinalpt.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptlatexcommands.doc.r67125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xypic-tut-pt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-portuges.doc.r59883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-tut-pt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cursolatex.doc.r24139.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feupphdteses.doc.r30962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-via-exemplos.doc.r68627.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcheat-ptbr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-portuguese.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numberpt.doc.r51640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ordinalpt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptlatexcommands.doc.r67125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xypic-tut-pt.doc.r15878.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-portuges.source.r59883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numberpt.source.r51640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ordinalpt.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptlatexcommands.source.r67125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-portuges.source.r59883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numberpt.source.r51640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ordinalpt.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptlatexcommands.source.r67125.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=c87f012f3f796197d1eaea9e23e7f8fe +_md5_=0f66c733eba39213df126b724afb574b diff --git a/metadata/md5-cache/dev-texlive/texlive-langspanish-2024_p72203 b/metadata/md5-cache/dev-texlive/texlive-langspanish-2024_p72203 index 40dd0cf3672a..407bdea0a7cf 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langspanish-2024_p72203 +++ b/metadata/md5-cache/dev-texlive/texlive-langspanish-2024_p72203 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-4.0 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-langspanish.r72203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-catalan.r30259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-galician.r30270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-spanish.r59367.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-catalan.r58609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-galician.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-spanish.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-es.r72203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-langspanish.r72203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-catalan.r30259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-galician.r30270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-spanish.r59367.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-catalan.r58609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-galician.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-spanish.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-es.r72203.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/antique-spanish-units.doc.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-catalan.doc.r30259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-galician.doc.r30270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-spanish.doc.r59367.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/es-tex-faq.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-spanish.doc.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l2tabu-spanish.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex2e-help-texinfo-spanish.doc.r65614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcheat-esmx.doc.r36866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lshort-spanish.doc.r35050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quran-es.doc.r72203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlive-es.doc.r70417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/antique-spanish-units.doc.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-catalan.doc.r30259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-galician.doc.r30270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-spanish.doc.r59367.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/es-tex-faq.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-spanish.doc.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l2tabu-spanish.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex2e-help-texinfo-spanish.doc.r65614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcheat-esmx.doc.r36866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lshort-spanish.doc.r35050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quran-es.doc.r72203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlive-es.doc.r70417.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-catalan.source.r30259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-galician.source.r30270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-spanish.source.r59367.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-galician.source.r58652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphen-spanish.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-catalan.source.r30259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-galician.source.r30270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-spanish.source.r59367.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-galician.source.r58652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphen-spanish.source.r58652.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=8d8a4c5b741f44aa30337df1b7ecf9b2 +_md5_=6f040d9d0e9eccfb86d028053caaa19b diff --git a/metadata/md5-cache/dev-texlive/texlive-latex-2024_p71912 b/metadata/md5-cache/dev-texlive/texlive-latex-2024_p71912 index 9d57aa1b3f3c..e555d65c156e 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latex-2024_p71912 +++ b/metadata/md5-cache/dev-texlive/texlive-latex-2024_p71912 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-2 LPPL-1.0 LPPL-1.3 LPPL-1.3c public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 !<dev-texlive/texlive-latexrecommended-2023 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-latex.r71912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ae.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscls.r55378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsmath.r72779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atbegshi.r53051.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atveryend.r72507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auxhook.r53173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel.r72799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-english.r70799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babelbib.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigintcalc.r53172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitset.r53837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookmark.r69084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carlisle.r59577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colortbl.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epstopdf-pkg.r71084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etexcmds.r53171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhdr.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firstaid.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fix2col.r38770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geometry.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gettitlestring.r53170.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-cfg.r41448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grfext.r53024.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hopatch.r65491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hycolor.r53584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypcap.r71912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperref.r72773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intcalc.r53168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvdefinekeys.r53193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvoptions.r63622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvsetkeys.r64632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel.r72755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3packages.r72128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-bin.r71362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-fonts.r28888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexconfig.r68923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letltxmacro.r53022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxcmds.r69032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxmisc.r21927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfnfss.r46036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mptopdf.r69363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/natbib.r20668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oberdiek.r71916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagesel.r56105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfescape.r53082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftexcmds.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pslatex.r67469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psnfss.r54694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pspicture.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refcount.r53164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rerunfilecheck.r63869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringenc.r52982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tools.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uniquecounter.r53162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/url.r32528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-latex.r71912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ae.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscls.r55378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsmath.r72779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atbegshi.r53051.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atveryend.r72507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auxhook.r53173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel.r72799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-english.r70799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babelbib.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigintcalc.r53172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitset.r53837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookmark.r69084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carlisle.r59577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colortbl.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epstopdf-pkg.r71084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etexcmds.r53171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhdr.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firstaid.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fix2col.r38770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geometry.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gettitlestring.r53170.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-cfg.r41448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grfext.r53024.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hopatch.r65491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hycolor.r53584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypcap.r71912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperref.r72773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intcalc.r53168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvdefinekeys.r53193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvoptions.r63622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvsetkeys.r64632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel.r72755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3packages.r72128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-bin.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-fonts.r28888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexconfig.r68923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letltxmacro.r53022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxcmds.r69032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxmisc.r21927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfnfss.r46036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mptopdf.r69363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/natbib.r20668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oberdiek.r71916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagesel.r56105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfescape.r53082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftexcmds.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pslatex.r67469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psnfss.r54694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pspicture.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refcount.r53164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rerunfilecheck.r63869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringenc.r52982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tools.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uniquecounter.r53162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/url.r32528.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/ae.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscls.doc.r55378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsmath.doc.r72779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atbegshi.doc.r53051.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atveryend.doc.r72507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auxhook.doc.r53173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel.doc.r72799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-english.doc.r70799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babelbib.doc.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigintcalc.doc.r53172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitset.doc.r53837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookmark.doc.r69084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carlisle.doc.r59577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colortbl.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epstopdf-pkg.doc.r71084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etexcmds.doc.r53171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhdr.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firstaid.doc.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fix2col.doc.r38770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geometry.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gettitlestring.doc.r53170.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics.doc.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-cfg.doc.r41448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grfext.doc.r53024.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hopatch.doc.r65491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hycolor.doc.r53584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypcap.doc.r71912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperref.doc.r72773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intcalc.doc.r53168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvdefinekeys.doc.r53193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvoptions.doc.r63622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvsetkeys.doc.r64632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel.doc.r72755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3packages.doc.r72128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex.doc.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-bin.doc.r71362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-fonts.doc.r28888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab.doc.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letltxmacro.doc.r53022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxcmds.doc.r69032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfnfss.doc.r46036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mptopdf.doc.r69363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/natbib.doc.r20668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oberdiek.doc.r71916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagesel.doc.r56105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfescape.doc.r53082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftexcmds.doc.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psnfss.doc.r54694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pspicture.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refcount.doc.r53164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rerunfilecheck.doc.r63869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringenc.doc.r52982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tools.doc.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uniquecounter.doc.r53162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/url.doc.r32528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ae.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscls.doc.r55378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsmath.doc.r72779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atbegshi.doc.r53051.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atveryend.doc.r72507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auxhook.doc.r53173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel.doc.r72799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-english.doc.r70799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babelbib.doc.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigintcalc.doc.r53172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitset.doc.r53837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookmark.doc.r69084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carlisle.doc.r59577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colortbl.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epstopdf-pkg.doc.r71084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etexcmds.doc.r53171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhdr.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firstaid.doc.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fix2col.doc.r38770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geometry.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gettitlestring.doc.r53170.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics.doc.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-cfg.doc.r41448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grfext.doc.r53024.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hopatch.doc.r65491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hycolor.doc.r53584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypcap.doc.r71912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperref.doc.r72773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intcalc.doc.r53168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvdefinekeys.doc.r53193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvoptions.doc.r63622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvsetkeys.doc.r64632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel.doc.r72755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3packages.doc.r72128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex.doc.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-bin.doc.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-fonts.doc.r28888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab.doc.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letltxmacro.doc.r53022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxcmds.doc.r69032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfnfss.doc.r46036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mptopdf.doc.r69363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/natbib.doc.r20668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oberdiek.doc.r71916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagesel.doc.r56105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfescape.doc.r53082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftexcmds.doc.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psnfss.doc.r54694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pspicture.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refcount.doc.r53164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rerunfilecheck.doc.r63869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringenc.doc.r52982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tools.doc.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uniquecounter.doc.r53162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/url.doc.r32528.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/ae.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscls.source.r55378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsmath.source.r72779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atbegshi.source.r53051.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atveryend.source.r72507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auxhook.source.r53173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel.source.r72799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/babel-english.source.r70799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigintcalc.source.r53172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitset.source.r53837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookmark.source.r69084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carlisle.source.r59577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colortbl.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epstopdf-pkg.source.r71084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etexcmds.source.r53171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhdr.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/firstaid.source.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fix2col.source.r38770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geometry.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gettitlestring.source.r53170.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics.source.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grfext.source.r53024.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hopatch.source.r65491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hycolor.source.r53584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypcap.source.r71912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperref.source.r72773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intcalc.source.r53168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvdefinekeys.source.r53193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvoptions.source.r63622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvsetkeys.source.r64632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend.source.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel.source.r72755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3packages.source.r72128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex.source.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab.source.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letltxmacro.source.r53022.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxcmds.source.r69032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfnfss.source.r46036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/natbib.source.r20668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oberdiek.source.r71916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagesel.source.r56105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfescape.source.r53082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftexcmds.source.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pslatex.source.r67469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psnfss.source.r54694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pspicture.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refcount.source.r53164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rerunfilecheck.source.r63869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringenc.source.r52982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tools.source.r72739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uniquecounter.source.r53162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ae.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscls.source.r55378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsmath.source.r72779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atbegshi.source.r53051.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atveryend.source.r72507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auxhook.source.r53173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel.source.r72799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/babel-english.source.r70799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigintcalc.source.r53172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitset.source.r53837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookmark.source.r69084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carlisle.source.r59577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colortbl.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epstopdf-pkg.source.r71084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etexcmds.source.r53171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhdr.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/firstaid.source.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fix2col.source.r38770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geometry.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gettitlestring.source.r53170.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics.source.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grfext.source.r53024.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hopatch.source.r65491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hycolor.source.r53584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypcap.source.r71912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperref.source.r72773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intcalc.source.r53168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvdefinekeys.source.r53193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvoptions.source.r63622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvsetkeys.source.r64632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend.source.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel.source.r72755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3packages.source.r72128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex.source.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab.source.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letltxmacro.source.r53022.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxcmds.source.r69032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfnfss.source.r46036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/natbib.source.r20668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oberdiek.source.r71916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagesel.source.r56105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfescape.source.r53082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftexcmds.source.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pslatex.source.r67469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psnfss.source.r54694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pspicture.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refcount.source.r53164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rerunfilecheck.source.r63869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringenc.source.r52982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tools.source.r72739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uniquecounter.source.r53162.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=68717d6385dc66e857f130f295d5585c +_md5_=c7441e6956c9dd7b4ed5918ad9a34f59 diff --git a/metadata/md5-cache/dev-texlive/texlive-latexextra-2024_p72895-r1 b/metadata/md5-cache/dev-texlive/texlive-latexextra-2024_p72895-r1 index 18b3feb6975b..ef712b83885a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latexextra-2024_p72895-r1 +++ b/metadata/md5-cache/dev-texlive/texlive-latexextra-2024_p72895-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=optfeature texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 Artistic BSD BSD-2 CC-BY-2.0 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LGPL-2+ LGPL-3 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain PDEPEND=>=dev-tex/glossaries-4.55 >=dev-tex/minted-3.4.0 RDEPEND=>=dev-texlive/texlive-latexrecommended-2024 >=dev-texlive/texlive-pictures-2024 dev-perl/Spreadsheet-ParseExcel !<dev-texlive/texlive-xetex-2023 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-latexextra.r72895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/2up.r55076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a0poster.r54071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a4wide.r20943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a5comb.r17020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abraces.r71955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abspos.r64465.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abstract.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accessibility.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accsupp.r53052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/achemso.r69638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acro.r62925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acronym.r72324.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acroterm.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialangle.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialsymbol.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addfont.r58559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addlines.r49326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjmulticol.r63320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjustbox.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adrconv.r46817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/advdate.r20538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/affilauthor.r68996.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akktex.r26055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akletter.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alchemist.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alertmessage.r38055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alnumsec.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alphalph.r53087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alterqcm.r59265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altfont.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altsubsup.r62738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsaddr.r64357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anima.r72895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/animate.r72548.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonchap.r17049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/answers.r35032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anyfontsize.r17050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/appendix.r53718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/appendixnumberbeamer.r46317.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apptools.r28400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabicfront.r51474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arcs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/argumentation.r72754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraycols.r71168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arrayjobx.r18125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraysort.r31576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arydshln.r50084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asciilist.r49060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/askinclude.r54725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/assignment.r20431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/assoccnt.r38497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/association-matrix.r64845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atenddvi.r56922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atendofenv.r62164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile.r42099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aurl.r41853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authoraftertitle.r55889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authorarchive.r65777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authorindex.r51757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autofancyhdr.r54049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autonum.r36084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autopdf.r32377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autopuncitems.r63045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/avremu.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/awesomebox.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/axessibility.r57105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/background.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bankstatement.r38857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bashful.r25597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basicarith.r35460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bchart.r43928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-rl.r69254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer2thesis.r27539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerappendixnote.r55732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beameraudience.r23427.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerauxtheme.r56087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamercolorthemeowl.r40105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerdarkthemes.r55117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerposter.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamersubframe.r23510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-arguelles.r71485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-cuerna.r42161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-detlevcm.r39048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-epyt.r41404.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-focus.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-gotham.r72808.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-light.r49867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-metropolis.r43031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-mirage.r72656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-npbt.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-phnompenh.r39100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-pure-minimalistic.r56934.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-rainbow.r72864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-saintpetersburg.r45877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-simpledarkblue.r60061.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-simpleplus.r64770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-tcolorbox.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-trigon.r65985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-upenn-bc.r29937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemeamurmaple.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemeconcrete.r69528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemejltree.r21977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemelalic.r58777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemenirma.r20765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemenord.r56180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bearwear.r54826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beaulivre.r70049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beautybook.r71693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beautynote.r70155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beton.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bewerbung.r61632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bez123.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bhcexam.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibletext.r45196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigfoot.r38248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigints.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bilingualpages.r59643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biochemistry-colors.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bithesis.r72491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bizcard.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blindtext.r25039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blkarray.r36406.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/block.r17209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blowup.r67640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bnumexpr.r59244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boites.r32235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bold-extra.r17076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/book-of-common-prayer.r62240.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookcover.r72461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookest.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booklet.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookshelf.r72521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boolexpr.r17830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bophook.r17062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxedminipage.r54827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxhandler.r28031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bracketkey.r17129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braket.r17127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breakurl.r29901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bubblesort.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bullcntr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcalc.r56431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxdpx-beamer.r41813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxdvidriver.r43219.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxenclose.r40213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxnewfont.r44173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxpapersize.r63174.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxpdfver.r71967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxtexlogo.r63231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calcage.r27725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calctab.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculator.r64424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculatoritems.r72824.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calrsfs.r17125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cals.r43003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calxxxx-yyyy.r69266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cancel.r32508.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/canoniclayout.r64889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/capt-of.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/captcont.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/captdef.r17353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carbohydrates.r39000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cases.r54682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/casyl.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfile.r53084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfilebetweentags.r21476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catechis.r59998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catoptions.r68982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catppuccinpalette.r72060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbcoptic.r16666.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccaption.r23443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cclicenses.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd.r34452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd-cover.r17121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdcmd.r60742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdpbundl.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cellprops.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cellspace.r61501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/censor.r67293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/centeredline.r64672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/centerlastline.r56644.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changebar.r71847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changelayout.r16094.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changelog.r72305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changepage.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changes.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chappg.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chapterfolder.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cheatsheet.r45069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checkend.r51475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chet.r45081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chextras.r27118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/childdoc.r49543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chkfloat.r27473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chletter.r20060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chngcntr.r47577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chronology.r67973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circ.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circledsteps.r67889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circledtext.r72238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classics.r53671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classpack.r55218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clefval.r55985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref-forward.r70649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref-usedon.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clicks.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clipboard.r47747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clistmap.r61811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clock.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrdblpg.r47511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrstrip.r60363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmdstring.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmdtrack.r28910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmsd.r18787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cnltx.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cntformats.r34668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cntperchap.r37572.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codebox.r61771.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codedescribe.r69943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codedoc.r17630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codehigh.r65787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codepage.r51502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codesection.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collcell.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collectbox.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colophon.r47913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/color-edits.r56707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorblind.r71253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colordoc.r18270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorframed.r64551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorinfo.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloring.r41042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorist.r70100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorspace.r50585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colortab.r22155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorwav.r67012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorweb.r31490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colourchange.r21741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combelow.r18462.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combine.r19361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comma.r18259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commado.r38875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commalists-tools.r72641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commedit.r50116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comment.r41927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commonunicode.r62901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/competences.r47573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concepts.r29020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concprog.r18791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conditext.r55387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/constants.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/continue.r49449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contour.r18950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contracard.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conv-xkv.r43558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking-units.r65241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cool.r67013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolfn.r69007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coollist.r67048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolstr.r67015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolthms.r29062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooltooltips.r60201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coop-writing.r61607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coordsys.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/copyedit.r37928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/copyrightbox.r24829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coseoul.r23862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/count1to.r71526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counterz.r67335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counttexruns.r27576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courseoutline.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coursepaper.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coverpage.r63509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cprotect.r21209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cprotectinside.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crbox.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/create-theorem.r72830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/creationboites.r68087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crefthe.r70156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossreference.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossreftools.r55879.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crumbs.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csquotes.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/css-colors.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csvmerge.r51857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csvsimple.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cuisine.r34453.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currency.r48990.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currfile.r70650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curriculum-vitae.r68211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currvita.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/customenvs.r72764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cutwin.r60901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cv.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cv4tw.r34577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cweb-latex.r28878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyber.r46776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cybercic.r37659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/darkmode.r64271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashbox.r23425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashrule.r29579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashrulex.r72642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashundergaps.r58150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dataref.r62942.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datatool.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datax.r61772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dateiliste.r27974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datenumber.r61761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datestamp.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime.r36650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2.r63102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bahasai.r46287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-basque.r47064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-breton.r52647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bulgarian.r47031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-catalan.r47032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-croatian.r36682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-czech.r47033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-danish.r47034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-dutch.r47355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-en-fulltext.r36705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-english.r52479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-esperanto.r47356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-estonian.r47565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-finnish.r47047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-french.r56393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-galician.r47631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-german.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-greek.r47533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-hebrew.r47534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-icelandic.r65213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-irish.r47632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-it-fulltext.r54779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-italian.r37146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-latin.r47748.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-lsorbian.r47749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-magyar.r48266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-norsk.r48267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-polish.r48456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-portuges.r48457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-romanian.r56394.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-russian.r49345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-samin.r49346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-scottish.r52101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-serbian.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovak.r52281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovene.r52282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-spanish.r45785.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-swedish.r36700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-turkish.r52331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-ukrainian.r47552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-usorbian.r52375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-welsh.r52553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dblfloatfix.r28983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dbshow.r61634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/debate.r64846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimal.r23374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimalcomma.r69251.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decorule.r55230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/defoldfonts.r68234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimtxt.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/democodetools.r64314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/denisbdoc.r70592.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diabetes-logbook.r54810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagbox.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagnose.r19387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dialogl.r28946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dichokey.r17192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/didactic.r70901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/didec.r70229.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dimnum.r58774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dinbrief.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/directory.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtytalk.r20520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dlfltxb.r17337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dnaseq.r17194.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doclicense.r68441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmfp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmute.r25741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docshots.r69676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doctools.r34474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/documentation.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docutils.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doi.r48634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doibanner.r71919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotarrow.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotlessi.r51476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotseqn.r17195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/download.r52257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dox.r46011.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dpfloat.r17196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dprogress.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drac.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftcopy.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftfigure.r44854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftwatermark.r70393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtk.r71776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxdescribe.r69507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ducksay.r70816.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duckuments.r52271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvdcoll.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynamicnumber.r38726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynblocks.r35193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ean13isbn.r57514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easy.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easy-todo.r32677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easybook.r72897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfig.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfloats.r72699.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyformat.r44543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easylist.r32661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyreview.r38352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebezier.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecclesiastic.r38172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econlipsum.r58390.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecv.r24928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ed.r25231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edichokey.r56223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmargin.r27599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eemeir.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/efbox.r33236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egplot.r20617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ehhline.r54676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/einfart.r70313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elements.r61792.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipsis.r55418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elmath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elocalloc.r42712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elpres.r71385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elzcards.r51894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emarks.r24504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedall.r51177.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedfile.r65528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embrac.r57814.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emo.r66944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emotion.r69834.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emptypage.r18064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emulateapj.r28469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endfloat.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endheads.r43750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotes.r53319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotes-hy.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engpron.r16558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engrec.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enotez.r61490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ensps-colorscheme.r71431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumext.r72861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumitem.r51423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumitem-zref.r21472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/envbig.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enverb.r72137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/environ.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/envlab.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epcqrcode.r70956.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigraph.r54857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigraph-keys.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epiolmec.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eq-pin2corr.r59477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqell.r22931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqlist.r32257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnalign.r43278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqname.r20678.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqparbox.r45215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/errata.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erw-l3.r61799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esami.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esdiff.r21385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esieecv.r59638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esindex.r71111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esint.r52240.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esint-type1.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etaremune.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etextools.r20694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etl.r60998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eukdate.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eulerpx.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euromoney.r72221.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/europasscv.r56829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/europecv.r69661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyhook.r35675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everypage.r56694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam.r67600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-lite.r65754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-n.r64674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-randomizechoices.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examdesign.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/example.r33398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examplep.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examz.r67303.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exceltex.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/excludeonly.r17262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercise.r35417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisebank.r50448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisepoints.r49590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercises.r55188.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisesheets.r71063.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exesheet.r69838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exframe.r72595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exp-testopt.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expdlist.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/export.r27206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exsheets.r67300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exsol.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extract.r52117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ezedits.r72849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facsimile.r21328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/factura.r61697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fail-fast.r67543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/familytree.r63739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhandout.r46411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancylabel.r46736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancynum.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancypar.r58895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyqr.r72472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyslides.r36263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytabs.r41549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytooltips.r68931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbox.r69041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcolumn.r67729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetchcls.r45245.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fewerfloatpages.r58058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ffcode.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ffslides.r38895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fgruler.r70917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fifo-stack.r33288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figsize.r18784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontents.r66740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontentsdef.r52208.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filedate.r29529.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fileinfo.r28421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filemod.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fillwith.r72006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fink.r24329.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/finstrut.r21719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fistrum.r70187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fithesis.r70531.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixcmex.r51825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixfoot.r17131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixme.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmetodonotes.r30168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fjodor.r53207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flabels.r17272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flacards.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flagderiv.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flashcards.r62104.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flashmovie.r25768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flexipage.r66614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flipbook.r25584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flippdf.r56782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatbytocbasic.r67945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatflt.r25540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrow.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrowbytocbasic.r67946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowfram.r35291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmtcount.r72583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fn2end.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnbreak.r66615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fncychap.r20710.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fncylab.r52090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnpara.r25607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnpct.r62248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnumprint.r29173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foilhtml.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foliono.r58877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontaxes.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontscale.r72614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontsetup.r72734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontsize.r60161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonttable.r44799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisx.r42621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnotebackref.r27034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnoterange.r66149.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnpag.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forarray.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foreign.r27819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forloop.r67017.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formlett.r21480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forms16be.r51305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formular.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fragments.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frame.r18312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/framed.r26789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/framedsyntax.r72199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frankenstein.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frege.r27417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/froufrou.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftcap.r17275.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftnxtra.r29652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullblck.r25434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullminipage.r34545.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullwidth.r24684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/functional.r69908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-calligra.r26018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-cyr.r26019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-sueterlin.r26030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fvextra.r72885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fwlw.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/g-brief.r50415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gatherenum.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gauss.r32934.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gcard.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gcite.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gender.r36464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogy-profiles.r69580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genmpage.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gensymb.r64740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getfiledate.r16189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getitems.r39365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gindex.r52311.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ginpenc.r24980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitfile-info.r51928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo.r34049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo2.r38913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitlog.r38932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitstatus.r64662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitver.r63920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/globalvals.r49962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gloss.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-danish.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-dutch.r35685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-english.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-estonian.r49928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-extra.r68409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-finnish.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-french.r42873.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-german.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-irish.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-italian.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-magyar.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-norsk.r67141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-nynorsk.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-polish.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-portuges.r36064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-serbian.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-slovene.r51211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-spanish.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmdoc.r21292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmdoc-enhance.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmiflink.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmutils.r24287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmverb.r24288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grabbox.r65223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradient-text.r65567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grading-scheme.r62505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphbox.r46360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicscache.r65318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicx-psmin.r56931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicxbox.r32630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphpaper.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grayhints.r49052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grfpaste.r17354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grid.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grid-system.r32981.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridpapers.r58723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridset.r72056.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridslides.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gs1.r59620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitlogo.r55741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ha-prosper.r59651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hackthefootline.r46494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/halloweenmath.r52602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handin.r48255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handout.r43962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handoutwithnotes.r62140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hang.r43280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanging.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hardwrap.r21396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harnon-cv.r26543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harpoon.r21327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/he-she.r41359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hebdomon.r72033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-acronym.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-float.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-text.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-title.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hereapplies.r68638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hhtensor.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hideanswer.r63852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/highlightlatex.r58392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/highlightx.r72619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/histogr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitec.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitreport.r58357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hletter.r30002.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobsub.r52810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/homework.r72441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hpsdiss.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/href-ul.r72741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrefhide.r66189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huawei.r72668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvextern.r70795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvindex.r46051.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvlogos.r72538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvpygmentex.r62405.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvqrurl.r71361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hwemoji.r65001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdestopt.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdoc.r68661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdvips.r53197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyper.r17357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperbar.r48147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypernat.r17358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperxmp.r70694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphenat.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/identkey.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/idxcmds.r54554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/idxlayout.r25821.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iexec.r69420.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifallfalse.r60027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iffont.r38823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifmslide.r20727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifmtarg.r47544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifnextok.r23379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifoddpage.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifthenx.r25819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iitem.r29613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/image-gallery.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imakeidx.r42287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/import.r54683.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/incgraph.r70635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/indextools.r68555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inline-images.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinedef.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinegraphicx.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinelabel.r63853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputenx.r52986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputtrc.r28019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interactiveworkbook.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interfaces.r21474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intopdf.r63987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inversepath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice.r48359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice-class.r49749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice2.r67327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipsum.r68861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso10303.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodate.r16613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodoc.r59709.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isonums.r17362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isopt.r45509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isorot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isosafety.r72227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isotope.r23711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/issuulinks.r25742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iwonamath.r71844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlabels.r24858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmsdelim.r62630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jobname-suffix.r64797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/joinbox.r72239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jslectureplanner.r70443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jsonparse.r72772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jumplines.r37553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jvlisting.r24638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kalendarium.r48744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kantlipsum.r68983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kerntest.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keycommand.r18042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyfloat.r69399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyindex.r50828.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyparse.r60277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyreader.r28195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keystroke.r17992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyval2e.r23698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyvaltable.r65416.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kix.r21606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knowledge.r70594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-moderncvclassic.r25025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-script-sfs.r26137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv.r57721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv-rg.r49064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/korigamik.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ktv-texdata.r27369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend-dev.r71211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3build.r72567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel-dev.r72756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labbook.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labels.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labels4easylist.r51124.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labelschanged.r69400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambdax.r60278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastbib.r70376.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpackage.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpage.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-amsmath-dev.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-base-dev.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-bin-dev.r71362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-context-ppchtex.r66687.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-firstaid-dev.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-graphics-dev.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab-dev.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-tools-dev.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-uni8.r49729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcolors.r49888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexdemo.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexgit.r54811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layouts.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lazylist.r17691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lccaps.r46432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcd.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcg.r31474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leading.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leaflet.r70652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lebhart.r70049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lectures.r53642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lectureslides.r62292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leftidx.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leftindex.r69660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leipzig.r52450.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lengthconvert.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lettre.r54722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lettrine.r72860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lewis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lhelp.r23638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libgreek.r65004.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limap.r44863.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linegoal.r21523.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linop.r41304.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lipsum.r60561.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lisp-on-tex.r38722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listing.r17373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listingsutf8.r53097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listlbls.r67215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listliketab.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listofsymbols.r16134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litebook.r70777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litesolution.r72036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litetable.r72539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lkproof.r20021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lmake.r25552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/locality.r20422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logbox.r24499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logical-markup-utils.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logoetalab.r68916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logpap.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longfbox.r39028.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longfigure.r34302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longnamefilelist.r27889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/loops.r30704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lsc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lscapeenhanced.r70967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstaddons.r72068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstfiracode.r49503.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3graph.r45913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3rawobjects.r66619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltablex.r34923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltabptch.r17533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxdockit.r21869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxguidex.r50992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxkeys.r28332.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxnew.r21586.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxtools.r24897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-check-hyphen.r47527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-physical.r59138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatodonotes.r53825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macrolist.r60139.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macroswap.r31498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magaz.r24694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magicnum.r52983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magicwatermark.r72044.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailing.r71862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailmerge.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebarcode.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebase.r41012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebox.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecell.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecirc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecmds.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makedtx.r46702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeglos.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makelabels.r60255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makerobust.r52811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mandi.r70231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manfnt.r54684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manuscript.r36110.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manyind.r49874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfit.r48281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfix.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginnote.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/markdown.r72765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathalpha.r61089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathastext.r72671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathexam.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfam256.r53519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfont.r68241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathgreeks.r71248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maybemath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcaption.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mceinleger.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcexam.r60481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcite.r18173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mciteplus.r31648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdframed.r31075.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/media4svg.r64686.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/media9.r72299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/medstarbeamer.r38828.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/meetingmins.r31878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memexsupp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memory.r30452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mensa-tex.r45997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menu.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menucard.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menukeys.r64314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogox.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metanorma.r55010.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metastr.r56246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/method.r17485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metre.r18489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfirstuc.r64743.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mftinc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mi-solns.r49651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/midpage.r17484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mindflow.r65236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minibox.r30914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minidocument.r43752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minifp.r32559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minimalist.r70302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minipage-marginpar.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minitoc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minorrevision.r32165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minutes.r42186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mla-paper.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mleftright.r53021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlist.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mmap.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnotes.r63406.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moderncv.r71837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modernposter.r47269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moderntimeline.r55518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modref.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modroman.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modular.r44142.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moloch.r72715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/monofill.r28140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moodle.r65672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moreenum.r24479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morefloats.r37927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morehype.r38815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moresize.r17513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moreverb.r22126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morewrites.r69679.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/movement-arrows.r67270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/movie15.r26473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mparhack.r59066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpostinl.r49559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msg.r49578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mslapa.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mtgreek.r17967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multenum.r21775.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiaudience.r60688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibbl.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicap.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicolrule.r56366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multidef.r40637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multienv.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiexpand.r45943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multifootnote.r70745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multilang.r49065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiple-choice.r63722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multirow.r72833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multitoc.r71520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mversion.r29370.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwe.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mycv.r26807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mylatex.r56751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mylatexformat.r21392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nag.r24741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nameauth.r69758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namespc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncclatex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncctools.r51810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/needspace.r29601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nestquot.r27323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newenviron.r29331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfile.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newlfm.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newspaper.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newunicodechar.r47382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newvbtm.r23996.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newverbs.r64833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nextpage.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nfssext-cfr.r72454.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicefilelist.r65842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/niceframe.r36086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicetext.r38914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nidanfloat.r48295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ninecolors.r62006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nlctdoc.r72810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noconflict.r30140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nodepthtext.r72822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noindentafter.r59195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noitcrul.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nolbreaks.r26786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomencl.r61029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomentbl.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/non-decimal-units.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonfloat.r17598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonumonpart.r22114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nopageno.r18128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/normalcolor.r40125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notebeamer.r72554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notespages.r41906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notestex.r45396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notoccite.r18129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nowidow.r24066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nox.r30991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntheorem.r27609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numberedblock.r33109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numname.r18130.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numprint.r27498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numspell.r70936.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocg-p.r28803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocgx.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocgx2.r72300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-latex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/octavo.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldstyle.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onlyamsmath.r42927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opcit.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opencolor.r66363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optidef.r50941.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optional.r18131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/options.r39030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orcidlink.r71633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orientation.r57390.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outline.r18360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outliner.r21095.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outlines.r25192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outlining.r45601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overlays.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overpic.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/padcount.r47621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecolor.r66885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecont.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagegrid.r64470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagelayout.r71937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagenote.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagerange.r16915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pageslts.r39164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/palette.r60119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pangram.r66300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paper.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papercdcase.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papermas.r66835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papertex.r19230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paracol.r72651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parades.r40042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paralist.r43021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paresse.r59228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parnotes.r71505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsa.r54840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parselines.r21475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-cours.r55859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-cv.r32263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-tableur.r72283.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/passopt.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patchcmd.r41379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pauldoc.r16005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pawpict.r21629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbalance.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbox.r24807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbsheet.r24830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdf14.r17583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfannotations.r68958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcol.r64469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcolmk.r52912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcomment.r49047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcprot.r18735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmarginpar.r23492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfoverlay.r64210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpagediff.r37946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpc.r68610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpc-movie.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfprivacy.r45985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfrender.r69058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfreview.r50100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfscreen.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfslide.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfsync.r20373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfwin.r68667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfx.r71681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pecha.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perltex.r52162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/permute.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/petiteannonce.r25915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmath-xfp.r59268.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfcc.r60731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfextendedabstract.r60732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phffullpagefigure.r41857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfnote.r60733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfparen.r41859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfqit.r60734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfquotetext.r41869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfsvnwatermark.r41870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfthm.r60735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philex.r36396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonenumbers.r63774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/photo.r18739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/photobook.r71843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/picture.r54867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piff.r21894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkgloader.r47486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeins.r19848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plantslabels.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plates.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plweb.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmboxdraw.r53046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynom.r44832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynomial.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polytable.r55837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postcards.r21641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poster-mac.r18305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postnotes.r72850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot.r59272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppr-prv.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppt-slides.r72584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/practicalreports.r52312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/precattl.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prelim2e.r57000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preprint.r30447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pressrelease.r35147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prettyref.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prettytok.r66884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preview.r71662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/printlen.r19847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/probsoln.r44783.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profmaquette.r72757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/program.r44214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/progress.r19519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/progressbar.r33822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/projlib.r72789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proofread.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/properties.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prosper.r33033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/protex.r41633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/protocol.r25562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfragx.r26243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstool.r46393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstring.r42857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxgreeks.r21838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pygmentex.r64131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pynotebook.r70818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/python.r60162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythonimmediate.r69487.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/q-and-a.r69164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qcm.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qstest.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsymbols.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quicktype.r42183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quiz2socrative.r52276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotchap.r56926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quoting.r32818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotmark.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ran_toks.r59515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randexam.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randintlist.r72646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randtext.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rccol.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs-multi.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcsinfo.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/readablecv.r67986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/readarray.r60540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realboxes.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipe.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipebook.r37026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipecard.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rectopma.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refcheck.r29128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refenums.r44131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reflectgraphics.r40612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refman.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refstyle.r69680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regcount.r19979.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regexpatch.r58668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/register.r54485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regstats.r66795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/relenc.r22050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/relsize.r30707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repeatindex.r24305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repltext.r56433.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rescansync.r63856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resmes.r65375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/responsive.r71800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/returntogrid.r48485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rgltxdoc.r53858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rjlparshap.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rlepsf.r19082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rmpage.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robust-externalize.r70653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robustcommand.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robustindex.r49877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbar.r25005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbarpagenumber.r36236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanneg.r20087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romannum.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rorlink.r67461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rotfloat.r18292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rotpages.r18740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roundbox.r29675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rterface.r30084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rtkinenc.r20003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rulerbox.r50984.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rulercompass.r32392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/runcode.r69471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rvwrite.r19614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanitize-umlaut.r67126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauerj.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/saveenv.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savefnmark.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savesym.r31565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savetrees.r40525.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scale.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scalebar.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scalerel.r42809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scaletextbullet.r72834.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scanpages.r42633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schedule.r51805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schooldocs.r69659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scontents.r71533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrambledenvs.r60615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrhack.r72608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrlayer-fancyhdr.r63844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrlttr2copy.r56733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrwfile.r66872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sdaps.r65345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sdrt.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/secdot.r20208.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/secnum.r61813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectionbox.r37749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectionbreak.r50339.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectsty.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seealso.r43595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selectp.r20185.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selinput.r53098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantex.r65679.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantic-markup.r53607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplanner.r56841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semioneside.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semproc.r37568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semtex.r56530.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sepfootnotes.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seqsplit.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesstime.r49750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setspaceenhanced.r72852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sf298.r41653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sffms.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfmath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadethm.r53350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadow.r20312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadowtext.r26522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shapepar.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shdoc.r41991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shipunov.r52334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shorttoc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/show2e.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showcharinbox.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showdim.r28918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showexpl.r57414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showlabels.r63940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidecap.r65618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotes.r72264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotesplus.r69176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/silence.r27028.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sillypage.r71889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sim-os-menus.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecd.r29260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecv.r35537.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleinvoice.r45673.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplivre.r70314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sitem.r22136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skb.r22781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skdoc.r56950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeldoc.r57922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeycommand.r24652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeyval.r30560.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skills.r56734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skrapport.r52412.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/slantsc.r25007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smalltableof.r20333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smart-eqn.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartref.r20311.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartunits.r39592.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snapshot.r56735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snaptodo.r70676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snotez.r61992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soulpos.r60772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spacingtricks.r69048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spark-otf.r62481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sparklines.r42821.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spelatex.r72763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sphack.r20842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitindex.r39766.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spot.r22408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spotcolor.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spreadtab.r68256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spverbatim.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srbook-mem.r45818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srcltx.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sseq.r31585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sslides.r32293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stack.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stackengine.r60019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standalone.r64677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standardsectioning.r71479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/starray.r70796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdclsdv.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdpage.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stealcaps.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stex.r68569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stocksize.r72853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/storebox.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/storecmd.r24431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringstrings.r57097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sttools.r60736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stubs.r70341.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/studenthandouts.r43516.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/styledcmd.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subdepth.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subdocs.r51480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqn.r71864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqnarray.r71865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfigmat.r20308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfigure.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfiles.r56977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfloat.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/substr.r16117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/supertabular.r71854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suppose.r59281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svg.r70626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svgcolor.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-multi.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-prov.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svninfo.r62157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swfigure.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swungdash.r64204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntax.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synthslant.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntrace.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synttree.r16252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabbing.r59715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabfigures.r25202.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tableaux.r42413.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablefootnote.r32804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tableof.r72313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablists.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabls.r17255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablvar.r72007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabstackengine.r46848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabto-ltx.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabu.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularborder.r17885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularcalc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularew.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularray.r69906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabulary.r71463.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagging.r52064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagpair.r42138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagpdf.r72901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/talk.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tamefloats.r27345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tangocolors.r66733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tasks.r61541.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tblr-extras.r71623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tcldoc.r22018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tcolorbox.r72624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tdclock.r33043.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/technics.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ted.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/telprint.r71914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/templatetools.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal.r22514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termlist.r18923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termsim.r61414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testhyphens.r38928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testidx.r60966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-label.r16372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-locale.r48500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texlogos.r19083.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texmate.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texments.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texpower.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texshade.r69371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texsurgery.r59885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textcsc.r67193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textfit.r20591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textmerg.r20677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textpos.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textualicomma.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texvc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theoremref.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thinsp.r39669.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threadcol.r28754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeparttable.r17383.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeparttablex.r34206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumb.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumbs.r33134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumby.r16736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ticket.r42280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timeop.r72875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipauni.r65817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlecaps.r63020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlefoot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlepic.r43497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titleref.r18729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlesec.r68677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titling.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/to-be-determined.r72527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocbibind.r20085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocdata.r69512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocloft.r53364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocvsec2.r33146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todo.r17746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todonotes.r69319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tokcycle.r60320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tokenizer.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toolbox.r32260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topfloat.r19084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topiclongtable.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totalcount.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totcount.r21178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totpages.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tramlines.r71842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translations.r61896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/transparent.r64852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/treesvr.r71382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trfsigns.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trimspaces.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trivfloat.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trsym.r18732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/truncate.r18921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tucv.r20680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turnthepage.r72902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tutodoc.r72719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoinone.r17024.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoup.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txgreeks.r21839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/type1cm.r21820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typed-checklist.r63445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typeface.r27046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typoaid.r44238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typog.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typogrid.r24994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uassign.r38459.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucs.r68759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uebungsblatt.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umoline.r19085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underlin.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underoverlap.r29019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undolabl.r65846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-titlepage.r68917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-math-input.r69591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicodefonttable.r71477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unifront.r67054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unisc.r63178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitconv.r55060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/units.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unravel.r69308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/updatemarks.r72489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upmethodology.r64613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upquote.r26059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uri.r48602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/useclass.r72455.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ushort.r32261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uspace.r63123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utf8add.r61074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwmslide.r27354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/variablelm.r60014.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varindex.r32262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varsfromjobname.r44154.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varwidth.r24104.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vcell.r59039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vdmlisting.r56905.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbasef.r21922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbatimbox.r67865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbatimcopy.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbdef.r17177.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbments.r23670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifiche.r69726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifycommand.r72180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/version.r21920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/versions.r21921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/versonotes.r69249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vertbars.r49429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vgrid.r32457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vhistory.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vmargin.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/volumes.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vpe.r26039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vruler.r21598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vtable.r51126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vwcol.r36254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wallcalendar.r45568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wallpaper.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/warning.r66616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/warpcol.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/was.r64691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/webquiz.r58808.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/whatsnote.r72823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widetable.r53409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widows-and-orphans.r66753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/williams.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/willowtreebook.r60638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/withargs.r52641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordcount.r46165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordlike.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/worksheet.r48423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapfig.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapfig2.r70838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapstuff.r64058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/writeongrid.r72768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wtref.r69214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xargs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xassoccnt.r61112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xbmks.r53448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcntperchap.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-material.r42289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-solarized.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcomment.r72759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcookybooky.r36435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcpdftips.r50449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xdoc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xellipsis.r47546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfakebold.r68929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfor.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xhfill.r22575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xifthen.r38929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ximera.r71243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xint.r63562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xint-regression.r71443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkcdcolors.r67895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkeymask.r69223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xltabular.r72846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmpincl.r60593.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xnewcommand.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xoptarg.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpatch.r69768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpeek.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xprintlen.r35928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpunctuate.r67918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xreview.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xsavebox.r64049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xsim.r61988.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xstring.r68015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xtab.r23347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xurl.r61553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xwatermark.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xytree.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yafoot.r48568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yagusylo.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yaletter.r42830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ycbook.r46201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ydoc.r64887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yplan.r34398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zebra-goodies.r66630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zed-csp.r17258.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zennote.r65549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ziffer.r32279.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref.r68278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-check.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-clever.r72876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-vario.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zugferd.r72877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zwgetfdate.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zwpagelayout.r63074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-latexextra.r72895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/2up.r55076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a0poster.r54071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a4wide.r20943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a5comb.r17020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abraces.r71955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abspos.r64465.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abstract.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accessibility.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accsupp.r53052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/achemso.r69638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acro.r62925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acronym.r72324.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acroterm.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialangle.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialsymbol.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addfont.r58559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addlines.r49326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjmulticol.r63320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjustbox.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adrconv.r46817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/advdate.r20538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/affilauthor.r68996.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akktex.r26055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akletter.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alchemist.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alertmessage.r38055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alnumsec.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alphalph.r53087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alterqcm.r59265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altfont.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altsubsup.r62738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsaddr.r64357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anima.r72895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/animate.r72548.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonchap.r17049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/answers.r35032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anyfontsize.r17050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/appendix.r53718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/appendixnumberbeamer.r46317.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apptools.r28400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabicfront.r51474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arcs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/argumentation.r72754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraycols.r71168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arrayjobx.r18125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraysort.r31576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arydshln.r50084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asciilist.r49060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/askinclude.r54725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/assignment.r20431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/assoccnt.r38497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/association-matrix.r64845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atenddvi.r56922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atendofenv.r62164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile.r42099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aurl.r41853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authoraftertitle.r55889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authorarchive.r65777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authorindex.r51757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autofancyhdr.r54049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autonum.r36084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autopdf.r32377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autopuncitems.r63045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/avremu.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/awesomebox.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axessibility.r57105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/background.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bankstatement.r38857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bashful.r25597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basicarith.r35460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bchart.r43928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-rl.r69254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer2thesis.r27539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerappendixnote.r55732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beameraudience.r23427.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerauxtheme.r56087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamercolorthemeowl.r40105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerdarkthemes.r55117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerposter.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamersubframe.r23510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-arguelles.r71485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-cuerna.r42161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-detlevcm.r39048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-epyt.r41404.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-focus.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-gotham.r72808.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-light.r49867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-metropolis.r43031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-mirage.r72656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-npbt.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-phnompenh.r39100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-pure-minimalistic.r56934.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-rainbow.r72864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-saintpetersburg.r45877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-simpledarkblue.r60061.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-simpleplus.r64770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-tcolorbox.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-trigon.r65985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-upenn-bc.r29937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemeamurmaple.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemeconcrete.r69528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemejltree.r21977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemelalic.r58777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemenirma.r20765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemenord.r56180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bearwear.r54826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beaulivre.r70049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beautybook.r71693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beautynote.r70155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beton.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bewerbung.r61632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bez123.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bhcexam.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibletext.r45196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigfoot.r38248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigints.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bilingualpages.r59643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biochemistry-colors.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bithesis.r72491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bizcard.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blindtext.r25039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blkarray.r36406.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/block.r17209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blowup.r67640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bnumexpr.r59244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boites.r32235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bold-extra.r17076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/book-of-common-prayer.r62240.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookcover.r72461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookest.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booklet.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookshelf.r72521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boolexpr.r17830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bophook.r17062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxedminipage.r54827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxhandler.r28031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bracketkey.r17129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braket.r17127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breakurl.r29901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bubblesort.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bullcntr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcalc.r56431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxdpx-beamer.r41813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxdvidriver.r43219.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxenclose.r40213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxnewfont.r44173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxpapersize.r63174.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxpdfver.r71967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxtexlogo.r63231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calcage.r27725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calctab.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculator.r64424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculatoritems.r72824.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calrsfs.r17125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cals.r43003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calxxxx-yyyy.r69266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cancel.r32508.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/canoniclayout.r64889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/capt-of.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/captcont.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/captdef.r17353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carbohydrates.r39000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cases.r54682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/casyl.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfile.r53084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfilebetweentags.r21476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catechis.r59998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catoptions.r68982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catppuccinpalette.r72060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbcoptic.r16666.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccaption.r23443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cclicenses.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd.r34452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd-cover.r17121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdcmd.r60742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdpbundl.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cellprops.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cellspace.r61501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/censor.r67293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/centeredline.r64672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/centerlastline.r56644.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changebar.r71847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changelayout.r16094.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changelog.r72305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changepage.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changes.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chappg.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chapterfolder.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cheatsheet.r45069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checkend.r51475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chet.r45081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chextras.r27118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/childdoc.r49543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chkfloat.r27473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chletter.r20060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chngcntr.r47577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chronology.r67973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circ.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circledsteps.r67889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circledtext.r72238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classics.r53671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classpack.r55218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clefval.r55985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref-forward.r70649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref-usedon.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clicks.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clipboard.r47747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clistmap.r61811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clock.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrdblpg.r47511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrstrip.r60363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmdstring.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmdtrack.r28910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmsd.r18787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cnltx.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cntformats.r34668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cntperchap.r37572.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codebox.r61771.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codedescribe.r69943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codedoc.r17630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codehigh.r65787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codepage.r51502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codesection.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collcell.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collectbox.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colophon.r47913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/color-edits.r56707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorblind.r71253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colordoc.r18270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorframed.r64551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorinfo.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloring.r41042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorist.r70100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorspace.r50585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colortab.r22155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorwav.r67012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorweb.r31490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colourchange.r21741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combelow.r18462.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combine.r19361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comma.r18259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commado.r38875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commalists-tools.r72641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commedit.r50116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comment.r41927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commonunicode.r62901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/competences.r47573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concepts.r29020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concprog.r18791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conditext.r55387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/constants.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/continue.r49449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contour.r18950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contracard.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conv-xkv.r43558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking-units.r65241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cool.r67013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolfn.r69007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coollist.r67048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolstr.r67015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolthms.r29062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooltooltips.r60201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coop-writing.r61607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coordsys.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/copyedit.r37928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/copyrightbox.r24829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coseoul.r23862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/count1to.r71526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counterz.r67335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counttexruns.r27576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courseoutline.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coursepaper.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coverpage.r63509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cprotect.r21209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cprotectinside.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crbox.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/create-theorem.r72830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/creationboites.r68087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crefthe.r70156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossreference.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossreftools.r55879.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crumbs.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csquotes.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/css-colors.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csvmerge.r51857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csvsimple.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cuisine.r34453.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currency.r48990.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currfile.r70650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curriculum-vitae.r68211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currvita.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/customenvs.r72764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cutwin.r60901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cv.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cv4tw.r34577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cweb-latex.r28878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyber.r46776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cybercic.r37659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/darkmode.r64271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashbox.r23425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashrule.r29579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashrulex.r72642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashundergaps.r58150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dataref.r62942.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datatool.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datax.r61772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dateiliste.r27974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datenumber.r61761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datestamp.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime.r36650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2.r63102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bahasai.r46287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-basque.r47064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-breton.r52647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bulgarian.r47031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-catalan.r47032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-croatian.r36682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-czech.r47033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-danish.r47034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-dutch.r47355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-en-fulltext.r36705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-english.r52479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-esperanto.r47356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-estonian.r47565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-finnish.r47047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-french.r56393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-galician.r47631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-german.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-greek.r47533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-hebrew.r47534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-icelandic.r65213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-irish.r47632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-it-fulltext.r54779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-italian.r37146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-latin.r47748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-lsorbian.r47749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-magyar.r48266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-norsk.r48267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-polish.r48456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-portuges.r48457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-romanian.r56394.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-russian.r49345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-samin.r49346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-scottish.r52101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-serbian.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovak.r52281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovene.r52282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-spanish.r45785.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-swedish.r36700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-turkish.r52331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-ukrainian.r47552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-usorbian.r52375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-welsh.r52553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dblfloatfix.r28983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dbshow.r61634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/debate.r64846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimal.r23374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimalcomma.r69251.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decorule.r55230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/defoldfonts.r68234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimtxt.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/democodetools.r64314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/denisbdoc.r70592.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diabetes-logbook.r54810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagbox.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagnose.r19387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dialogl.r28946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dichokey.r17192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/didactic.r70901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/didec.r70229.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dimnum.r58774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dinbrief.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/directory.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtytalk.r20520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dlfltxb.r17337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dnaseq.r17194.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doclicense.r68441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmfp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmute.r25741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docshots.r69676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doctools.r34474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/documentation.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docutils.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doi.r48634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doibanner.r71919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotarrow.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotlessi.r51476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotseqn.r17195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/download.r52257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dox.r46011.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dpfloat.r17196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dprogress.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drac.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftcopy.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftfigure.r44854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftwatermark.r70393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtk.r71776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxdescribe.r69507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ducksay.r70816.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duckuments.r52271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvdcoll.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynamicnumber.r38726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynblocks.r35193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ean13isbn.r57514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easy.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easy-todo.r32677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easybook.r72897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfig.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfloats.r72699.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyformat.r44543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easylist.r32661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyreview.r38352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebezier.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecclesiastic.r38172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econlipsum.r58390.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecv.r24928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ed.r25231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edichokey.r56223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmargin.r27599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eemeir.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/efbox.r33236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egplot.r20617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ehhline.r54676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/einfart.r70313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elements.r61792.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipsis.r55418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elmath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elocalloc.r42712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elpres.r71385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elzcards.r51894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emarks.r24504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedall.r51177.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedfile.r65528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embrac.r57814.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emo.r66944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emotion.r69834.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emptypage.r18064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emulateapj.r28469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endfloat.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endheads.r43750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotes.r53319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotes-hy.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engpron.r16558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engrec.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enotez.r61490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ensps-colorscheme.r71431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumext.r72861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumitem.r51423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumitem-zref.r21472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/envbig.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enverb.r72137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/environ.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/envlab.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epcqrcode.r70956.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigraph.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigraph-keys.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epiolmec.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eq-pin2corr.r59477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqell.r22931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqlist.r32257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnalign.r43278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqname.r20678.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqparbox.r45215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/errata.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erw-l3.r61799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esami.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esdiff.r21385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esieecv.r59638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esindex.r71111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esint.r52240.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esint-type1.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etaremune.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etextools.r20694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etl.r60998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eukdate.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eulerpx.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euromoney.r72221.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/europasscv.r56829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/europecv.r69661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyhook.r35675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everypage.r56694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam.r67600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-lite.r65754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-n.r64674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-randomizechoices.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examdesign.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/example.r33398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examplep.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examz.r67303.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exceltex.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/excludeonly.r17262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercise.r35417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisebank.r50448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisepoints.r49590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercises.r55188.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisesheets.r71063.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exesheet.r69838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exframe.r72595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exp-testopt.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expdlist.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/export.r27206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exsheets.r67300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exsol.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extract.r52117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ezedits.r72849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facsimile.r21328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/factura.r61697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fail-fast.r67543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/familytree.r63739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhandout.r46411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancylabel.r46736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancynum.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancypar.r58895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyqr.r72472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyslides.r36263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytabs.r41549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytooltips.r68931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbox.r69041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcolumn.r67729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetchcls.r45245.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fewerfloatpages.r58058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ffcode.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ffslides.r38895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fgruler.r70917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fifo-stack.r33288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figsize.r18784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontents.r66740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontentsdef.r52208.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filedate.r29529.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fileinfo.r28421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filemod.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fillwith.r72006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fink.r24329.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/finstrut.r21719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fistrum.r70187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fithesis.r70531.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixcmex.r51825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixfoot.r17131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixme.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmetodonotes.r30168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fjodor.r53207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flabels.r17272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flacards.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flagderiv.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flashcards.r62104.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flashmovie.r25768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flexipage.r66614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flipbook.r25584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flippdf.r56782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatbytocbasic.r67945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatflt.r25540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrow.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrowbytocbasic.r67946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowfram.r35291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmtcount.r72583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fn2end.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnbreak.r66615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fncychap.r20710.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fncylab.r52090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnpara.r25607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnpct.r62248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnumprint.r29173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foilhtml.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foliono.r58877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontaxes.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontscale.r72614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontsetup.r72734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontsize.r60161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonttable.r44799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisx.r42621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnotebackref.r27034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnoterange.r66149.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnpag.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forarray.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foreign.r27819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forloop.r67017.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formlett.r21480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forms16be.r51305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formular.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fragments.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frame.r18312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/framed.r26789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/framedsyntax.r72199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frankenstein.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frege.r27417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/froufrou.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftcap.r17275.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftnxtra.r29652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullblck.r25434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullminipage.r34545.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullwidth.r24684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/functional.r69908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-calligra.r26018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-cyr.r26019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-sueterlin.r26030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fvextra.r72885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fwlw.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/g-brief.r50415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gatherenum.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gauss.r32934.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gcard.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gcite.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gender.r36464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogy-profiles.r69580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genmpage.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gensymb.r64740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getfiledate.r16189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getitems.r39365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gindex.r52311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ginpenc.r24980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitfile-info.r51928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo.r34049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo2.r38913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitlog.r38932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitstatus.r64662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitver.r63920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/globalvals.r49962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gloss.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-danish.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-dutch.r35685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-english.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-estonian.r49928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-extra.r68409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-finnish.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-french.r42873.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-german.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-irish.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-italian.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-magyar.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-norsk.r67141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-nynorsk.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-polish.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-portuges.r36064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-serbian.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-slovene.r51211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-spanish.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmdoc.r21292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmdoc-enhance.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmiflink.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmutils.r24287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmverb.r24288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grabbox.r65223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradient-text.r65567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grading-scheme.r62505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphbox.r46360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicscache.r65318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicx-psmin.r56931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicxbox.r32630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphpaper.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grayhints.r49052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grfpaste.r17354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grid.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grid-system.r32981.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridpapers.r58723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridset.r72056.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridslides.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gs1.r59620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitlogo.r55741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ha-prosper.r59651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hackthefootline.r46494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/halloweenmath.r52602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handin.r48255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handout.r43962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handoutwithnotes.r62140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hang.r43280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanging.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hardwrap.r21396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harnon-cv.r26543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harpoon.r21327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/he-she.r41359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hebdomon.r72033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-acronym.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-float.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-text.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-title.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hereapplies.r68638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hhtensor.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hideanswer.r63852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/highlightlatex.r58392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/highlightx.r72619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/histogr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitec.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitreport.r58357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hletter.r30002.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobsub.r52810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/homework.r72441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hpsdiss.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/href-ul.r72741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrefhide.r66189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huawei.r72668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvextern.r70795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvindex.r46051.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvlogos.r72538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvpygmentex.r62405.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvqrurl.r71361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hwemoji.r65001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdestopt.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdoc.r68661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdvips.r53197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyper.r17357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperbar.r48147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypernat.r17358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperxmp.r70694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphenat.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/identkey.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/idxcmds.r54554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/idxlayout.r25821.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iexec.r69420.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifallfalse.r60027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iffont.r38823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifmslide.r20727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifmtarg.r47544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifnextok.r23379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifoddpage.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifthenx.r25819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iitem.r29613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/image-gallery.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imakeidx.r42287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/import.r54683.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/incgraph.r70635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/indextools.r68555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inline-images.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinedef.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinegraphicx.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinelabel.r63853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputenx.r52986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputtrc.r28019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interactiveworkbook.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interfaces.r21474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intopdf.r63987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inversepath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice.r48359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice-class.r49749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice2.r67327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipsum.r68861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso10303.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodate.r16613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodoc.r59709.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isonums.r17362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isopt.r45509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isorot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isosafety.r72227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isotope.r23711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/issuulinks.r25742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iwonamath.r71844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlabels.r24858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmsdelim.r62630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jobname-suffix.r64797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/joinbox.r72239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jslectureplanner.r70443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jsonparse.r72772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jumplines.r37553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jvlisting.r24638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kalendarium.r48744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kantlipsum.r68983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kerntest.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keycommand.r18042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyfloat.r69399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyindex.r50828.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyparse.r60277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyreader.r28195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keystroke.r17992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyval2e.r23698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyvaltable.r65416.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kix.r21606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knowledge.r70594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-moderncvclassic.r25025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-script-sfs.r26137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv.r57721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv-rg.r49064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/korigamik.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ktv-texdata.r27369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend-dev.r71211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3build.r72567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel-dev.r72756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labbook.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labels.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labels4easylist.r51124.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labelschanged.r69400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambdax.r60278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastbib.r70376.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpackage.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpage.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-amsmath-dev.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-base-dev.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-bin-dev.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-context-ppchtex.r66687.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-firstaid-dev.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-graphics-dev.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab-dev.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-tools-dev.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-uni8.r49729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcolors.r49888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexdemo.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexgit.r54811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layouts.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lazylist.r17691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lccaps.r46432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcd.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcg.r31474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leading.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leaflet.r70652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lebhart.r70049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lectures.r53642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lectureslides.r62292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leftidx.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leftindex.r69660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leipzig.r52450.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lengthconvert.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lettre.r54722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lettrine.r72860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lewis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lhelp.r23638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libgreek.r65004.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limap.r44863.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linegoal.r21523.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linop.r41304.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lipsum.r60561.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lisp-on-tex.r38722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listing.r17373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listingsutf8.r53097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listlbls.r67215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listliketab.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listofsymbols.r16134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litebook.r70777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litesolution.r72036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litetable.r72539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lkproof.r20021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lmake.r25552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/locality.r20422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logbox.r24499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logical-markup-utils.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logoetalab.r68916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logpap.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longfbox.r39028.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longfigure.r34302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longnamefilelist.r27889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/loops.r30704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lsc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lscapeenhanced.r70967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstaddons.r72068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstfiracode.r49503.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3graph.r45913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3rawobjects.r66619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltablex.r34923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltabptch.r17533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxdockit.r21869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxguidex.r50992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxkeys.r28332.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxnew.r21586.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxtools.r24897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-check-hyphen.r47527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-physical.r59138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatodonotes.r53825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macrolist.r60139.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macroswap.r31498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magaz.r24694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magicnum.r52983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magicwatermark.r72044.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailing.r71862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailmerge.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebarcode.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebase.r41012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebox.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecell.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecirc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecmds.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makedtx.r46702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeglos.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makelabels.r60255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makerobust.r52811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mandi.r70231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manfnt.r54684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manuscript.r36110.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manyind.r49874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfit.r48281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfix.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginnote.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/markdown.r72765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathalpha.r61089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathastext.r72671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathexam.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfam256.r53519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfont.r68241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathgreeks.r71248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maybemath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcaption.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mceinleger.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcexam.r60481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcite.r18173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mciteplus.r31648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdframed.r31075.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/media4svg.r64686.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/media9.r72299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/medstarbeamer.r38828.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/meetingmins.r31878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memexsupp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memory.r30452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mensa-tex.r45997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menu.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menucard.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menukeys.r64314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogox.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metanorma.r55010.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metastr.r56246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/method.r17485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metre.r18489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfirstuc.r64743.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mftinc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mi-solns.r49651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/midpage.r17484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mindflow.r65236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minibox.r30914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minidocument.r43752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minifp.r32559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minimalist.r70302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minipage-marginpar.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minitoc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minorrevision.r32165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minutes.r42186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mla-paper.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mleftright.r53021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlist.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mmap.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnotes.r63406.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moderncv.r71837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modernposter.r47269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moderntimeline.r55518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modref.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modroman.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modular.r44142.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moloch.r72715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/monofill.r28140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moodle.r65672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moreenum.r24479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morefloats.r37927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morehype.r38815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moresize.r17513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moreverb.r22126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morewrites.r69679.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/movement-arrows.r67270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/movie15.r26473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mparhack.r59066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpostinl.r49559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msg.r49578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mslapa.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mtgreek.r17967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multenum.r21775.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiaudience.r60688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibbl.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicap.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicolrule.r56366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multidef.r40637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multienv.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiexpand.r45943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multifootnote.r70745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multilang.r49065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiple-choice.r63722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multirow.r72833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multitoc.r71520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mversion.r29370.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwe.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mycv.r26807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mylatex.r56751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mylatexformat.r21392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nag.r24741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nameauth.r69758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namespc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncclatex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncctools.r51810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/needspace.r29601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nestquot.r27323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newenviron.r29331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfile.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newlfm.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newspaper.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newunicodechar.r47382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newvbtm.r23996.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newverbs.r64833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nextpage.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nfssext-cfr.r72454.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicefilelist.r65842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/niceframe.r36086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicetext.r38914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nidanfloat.r48295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ninecolors.r62006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nlctdoc.r72810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noconflict.r30140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nodepthtext.r72822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noindentafter.r59195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noitcrul.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nolbreaks.r26786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomencl.r61029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomentbl.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/non-decimal-units.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonfloat.r17598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonumonpart.r22114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nopageno.r18128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/normalcolor.r40125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notebeamer.r72554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notespages.r41906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notestex.r45396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notoccite.r18129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nowidow.r24066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nox.r30991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntheorem.r27609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numberedblock.r33109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numname.r18130.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numprint.r27498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numspell.r70936.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocg-p.r28803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocgx.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocgx2.r72300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-latex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/octavo.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldstyle.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onlyamsmath.r42927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opcit.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opencolor.r66363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optidef.r50941.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optional.r18131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/options.r39030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orcidlink.r71633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orientation.r57390.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outline.r18360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outliner.r21095.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outlines.r25192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outlining.r45601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overlays.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overpic.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/padcount.r47621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecolor.r66885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecont.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagegrid.r64470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagelayout.r71937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagenote.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagerange.r16915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pageslts.r39164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/palette.r60119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pangram.r66300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paper.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papercdcase.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papermas.r66835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papertex.r19230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paracol.r72651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parades.r40042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paralist.r43021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paresse.r59228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parnotes.r71505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsa.r54840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parselines.r21475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-cours.r55859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-cv.r32263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-tableur.r72283.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/passopt.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patchcmd.r41379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pauldoc.r16005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pawpict.r21629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbalance.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbox.r24807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbsheet.r24830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdf14.r17583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfannotations.r68958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcol.r64469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcolmk.r52912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcomment.r49047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcprot.r18735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmarginpar.r23492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfoverlay.r64210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpagediff.r37946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpc.r68610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpc-movie.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfprivacy.r45985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfrender.r69058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfreview.r50100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfscreen.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfslide.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfsync.r20373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfwin.r68667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfx.r71681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pecha.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perltex.r52162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/permute.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/petiteannonce.r25915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmath-xfp.r59268.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfcc.r60731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfextendedabstract.r60732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phffullpagefigure.r41857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfnote.r60733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfparen.r41859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfqit.r60734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfquotetext.r41869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfsvnwatermark.r41870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfthm.r60735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philex.r36396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonenumbers.r63774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/photo.r18739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/photobook.r71843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/picture.r54867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piff.r21894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkgloader.r47486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeins.r19848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plantslabels.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plates.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plweb.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmboxdraw.r53046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynom.r44832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynomial.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polytable.r55837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postcards.r21641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poster-mac.r18305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postnotes.r72850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot.r59272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppr-prv.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppt-slides.r72584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/practicalreports.r52312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/precattl.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prelim2e.r57000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preprint.r30447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pressrelease.r35147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prettyref.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prettytok.r66884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preview.r71662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/printlen.r19847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/probsoln.r44783.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profmaquette.r72757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/program.r44214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/progress.r19519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/progressbar.r33822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/projlib.r72789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proofread.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/properties.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prosper.r33033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/protex.r41633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/protocol.r25562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfragx.r26243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstool.r46393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstring.r42857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxgreeks.r21838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pygmentex.r64131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pynotebook.r70818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/python.r60162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythonimmediate.r69487.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/q-and-a.r69164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qcm.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qstest.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsymbols.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quicktype.r42183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quiz2socrative.r52276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotchap.r56926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quoting.r32818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotmark.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ran_toks.r59515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randexam.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randintlist.r72646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randtext.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rccol.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs-multi.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcsinfo.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/readablecv.r67986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/readarray.r60540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realboxes.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipe.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipebook.r37026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipecard.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rectopma.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refcheck.r29128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refenums.r44131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reflectgraphics.r40612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refman.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refstyle.r69680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regcount.r19979.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regexpatch.r58668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/register.r54485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regstats.r66795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/relenc.r22050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/relsize.r30707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repeatindex.r24305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repltext.r56433.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rescansync.r63856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resmes.r65375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/responsive.r71800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/returntogrid.r48485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rgltxdoc.r53858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rjlparshap.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rlepsf.r19082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rmpage.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robust-externalize.r70653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robustcommand.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robustindex.r49877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbar.r25005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbarpagenumber.r36236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanneg.r20087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romannum.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rorlink.r67461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rotfloat.r18292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rotpages.r18740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roundbox.r29675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rterface.r30084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rtkinenc.r20003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rulerbox.r50984.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rulercompass.r32392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/runcode.r69471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rvwrite.r19614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanitize-umlaut.r67126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauerj.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/saveenv.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savefnmark.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savesym.r31565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savetrees.r40525.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scale.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scalebar.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scalerel.r42809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scaletextbullet.r72834.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scanpages.r42633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schedule.r51805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schooldocs.r69659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scontents.r71533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrambledenvs.r60615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrhack.r72608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrlayer-fancyhdr.r63844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrlttr2copy.r56733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrwfile.r66872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sdaps.r65345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sdrt.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/secdot.r20208.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/secnum.r61813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectionbox.r37749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectionbreak.r50339.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectsty.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seealso.r43595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selectp.r20185.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selinput.r53098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantex.r65679.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantic-markup.r53607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplanner.r56841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semioneside.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semproc.r37568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semtex.r56530.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sepfootnotes.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seqsplit.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesstime.r49750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setspaceenhanced.r72852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sf298.r41653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sffms.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfmath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadethm.r53350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadow.r20312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadowtext.r26522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shapepar.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shdoc.r41991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shipunov.r52334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shorttoc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/show2e.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showcharinbox.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showdim.r28918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showexpl.r57414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showlabels.r63940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidecap.r65618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotes.r72264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotesplus.r69176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/silence.r27028.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sillypage.r71889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sim-os-menus.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecd.r29260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecv.r35537.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleinvoice.r45673.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplivre.r70314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sitem.r22136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skb.r22781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skdoc.r56950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeldoc.r57922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeycommand.r24652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeyval.r30560.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skills.r56734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skrapport.r52412.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/slantsc.r25007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smalltableof.r20333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smart-eqn.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartref.r20311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartunits.r39592.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snapshot.r56735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snaptodo.r70676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snotez.r61992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soulpos.r60772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spacingtricks.r69048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spark-otf.r62481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sparklines.r42821.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spelatex.r72763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sphack.r20842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitindex.r39766.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spot.r22408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spotcolor.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spreadtab.r68256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spverbatim.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srbook-mem.r45818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srcltx.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sseq.r31585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sslides.r32293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stack.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stackengine.r60019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standalone.r64677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standardsectioning.r71479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/starray.r70796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdclsdv.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdpage.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stealcaps.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stex.r68569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stocksize.r72853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/storebox.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/storecmd.r24431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringstrings.r57097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sttools.r60736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stubs.r70341.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/studenthandouts.r43516.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/styledcmd.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subdepth.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subdocs.r51480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqn.r71864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqnarray.r71865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfigmat.r20308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfigure.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfiles.r56977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfloat.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/substr.r16117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/supertabular.r71854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suppose.r59281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svg.r70626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svgcolor.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-multi.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-prov.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svninfo.r62157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swfigure.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swungdash.r64204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntax.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synthslant.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntrace.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synttree.r16252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabbing.r59715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabfigures.r25202.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tableaux.r42413.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablefootnote.r32804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tableof.r72313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablists.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabls.r17255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablvar.r72007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabstackengine.r46848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabto-ltx.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabu.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularborder.r17885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularcalc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularew.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularray.r69906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabulary.r71463.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagging.r52064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagpair.r42138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagpdf.r72901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/talk.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tamefloats.r27345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tangocolors.r66733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tasks.r61541.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tblr-extras.r71623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tcldoc.r22018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tcolorbox.r72624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tdclock.r33043.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/technics.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ted.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/telprint.r71914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/templatetools.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal.r22514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termlist.r18923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termsim.r61414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testhyphens.r38928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testidx.r60966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-label.r16372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-locale.r48500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texlogos.r19083.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texmate.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texments.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texpower.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texshade.r69371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texsurgery.r59885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textcsc.r67193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textfit.r20591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textmerg.r20677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textpos.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textualicomma.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texvc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theoremref.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thinsp.r39669.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threadcol.r28754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeparttable.r17383.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeparttablex.r34206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumb.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumbs.r33134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumby.r16736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ticket.r42280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timeop.r72875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipauni.r65817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlecaps.r63020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlefoot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlepic.r43497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titleref.r18729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlesec.r68677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titling.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/to-be-determined.r72527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocbibind.r20085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocdata.r69512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocloft.r53364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocvsec2.r33146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todo.r17746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todonotes.r69319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tokcycle.r60320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tokenizer.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toolbox.r32260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topfloat.r19084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topiclongtable.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totalcount.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totcount.r21178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totpages.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tramlines.r71842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translations.r61896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/transparent.r64852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/treesvr.r71382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trfsigns.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trimspaces.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trivfloat.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trsym.r18732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/truncate.r18921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tucv.r20680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turnthepage.r72902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tutodoc.r72719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoinone.r17024.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoup.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txgreeks.r21839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/type1cm.r21820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typed-checklist.r63445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typeface.r27046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typoaid.r44238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typog.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typogrid.r24994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uassign.r38459.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucs.r68759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uebungsblatt.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umoline.r19085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underlin.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underoverlap.r29019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undolabl.r65846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-titlepage.r68917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-math-input.r69591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicodefonttable.r71477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unifront.r67054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unisc.r63178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitconv.r55060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/units.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unravel.r69308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/updatemarks.r72489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upmethodology.r64613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upquote.r26059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uri.r48602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/useclass.r72455.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ushort.r32261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uspace.r63123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utf8add.r61074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwmslide.r27354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/variablelm.r60014.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varindex.r32262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varsfromjobname.r44154.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varwidth.r24104.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vcell.r59039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vdmlisting.r56905.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbasef.r21922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbatimbox.r67865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbatimcopy.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbdef.r17177.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbments.r23670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifiche.r69726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifycommand.r72180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/version.r21920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/versions.r21921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/versonotes.r69249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vertbars.r49429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vgrid.r32457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vhistory.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vmargin.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/volumes.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vpe.r26039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vruler.r21598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vtable.r51126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vwcol.r36254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wallcalendar.r45568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wallpaper.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/warning.r66616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/warpcol.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/was.r64691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/webquiz.r58808.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/whatsnote.r72823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widetable.r53409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widows-and-orphans.r66753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/williams.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/willowtreebook.r60638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/withargs.r52641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordcount.r46165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordlike.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/worksheet.r48423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapfig.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapfig2.r70838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapstuff.r64058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/writeongrid.r72768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wtref.r69214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xargs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xassoccnt.r61112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xbmks.r53448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcntperchap.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-material.r42289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-solarized.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcomment.r72759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcookybooky.r36435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcpdftips.r50449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xdoc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xellipsis.r47546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfakebold.r68929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfor.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xhfill.r22575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xifthen.r38929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ximera.r71243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xint.r63562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xint-regression.r71443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkcdcolors.r67895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkeymask.r69223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xltabular.r72846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmpincl.r60593.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xnewcommand.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xoptarg.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpatch.r69768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpeek.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xprintlen.r35928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpunctuate.r67918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xreview.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xsavebox.r64049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xsim.r61988.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xstring.r68015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xtab.r23347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xurl.r61553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xwatermark.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xytree.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yafoot.r48568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yagusylo.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yaletter.r42830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ycbook.r46201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ydoc.r64887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yplan.r34398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zebra-goodies.r66630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zed-csp.r17258.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zennote.r65549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ziffer.r32279.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref.r68278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-check.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-clever.r72876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-vario.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zugferd.r72877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zwgetfdate.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zwpagelayout.r63074.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/2up.doc.r55076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a0poster.doc.r54071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a4wide.doc.r20943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/a5comb.doc.r17020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abraces.doc.r71955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abspos.doc.r64465.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abstract.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accessibility.doc.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accsupp.doc.r53052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/achemso.doc.r69638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acro.doc.r62925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acronym.doc.r72324.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acroterm.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialangle.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialsymbol.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addfont.doc.r58559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addlines.doc.r49326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjmulticol.doc.r63320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjustbox.doc.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adrconv.doc.r46817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/advdate.doc.r20538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/affilauthor.doc.r68996.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akktex.doc.r26055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/akletter.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alchemist.doc.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alertmessage.doc.r38055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alnumsec.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alphalph.doc.r53087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alterqcm.doc.r59265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altfont.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altsubsup.doc.r62738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsaddr.doc.r64357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anima.doc.r72895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/animate.doc.r72548.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonchap.doc.r17049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/answers.doc.r35032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anyfontsize.doc.r17050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/appendix.doc.r53718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/appendixnumberbeamer.doc.r46317.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apptools.doc.r28400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabicfront.doc.r51474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arcs.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/argumentation.doc.r72754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraycols.doc.r71168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arrayjobx.doc.r18125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraysort.doc.r31576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arydshln.doc.r50084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asciilist.doc.r49060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/askinclude.doc.r54725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/assignment.doc.r20431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/assoccnt.doc.r38497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/association-matrix.doc.r64845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atenddvi.doc.r56922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atendofenv.doc.r62164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile.doc.r42099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aurl.doc.r41853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authoraftertitle.doc.r55889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authorarchive.doc.r65777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/authorindex.doc.r51757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autofancyhdr.doc.r54049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autonum.doc.r36084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autopdf.doc.r32377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autopuncitems.doc.r63045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/avremu.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/awesomebox.doc.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/axessibility.doc.r57105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/background.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bankstatement.doc.r38857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bashful.doc.r25597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basicarith.doc.r35460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bchart.doc.r43928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-rl.doc.r69254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer2thesis.doc.r27539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerappendixnote.doc.r55732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beameraudience.doc.r23427.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerauxtheme.doc.r56087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamercolorthemeowl.doc.r40105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerdarkthemes.doc.r55117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerposter.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamersubframe.doc.r23510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-arguelles.doc.r71485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-cuerna.doc.r42161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-detlevcm.doc.r39048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-epyt.doc.r41404.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-focus.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-gotham.doc.r72808.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-light.doc.r49867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-metropolis.doc.r43031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-mirage.doc.r72656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-npbt.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-phnompenh.doc.r39100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-pure-minimalistic.doc.r56934.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-rainbow.doc.r72864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-saintpetersburg.doc.r45877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-simpledarkblue.doc.r60061.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-simpleplus.doc.r64770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-tcolorbox.doc.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-trigon.doc.r65985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-upenn-bc.doc.r29937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemeamurmaple.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemeconcrete.doc.r69528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemelalic.doc.r58777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemenirma.doc.r20765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerthemenord.doc.r56180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bearwear.doc.r54826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beaulivre.doc.r70049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beautybook.doc.r71693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beautynote.doc.r70155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beton.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bewerbung.doc.r61632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bez123.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bhcexam.doc.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bibletext.doc.r45196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigfoot.doc.r38248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigints.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bilingualpages.doc.r59643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biochemistry-colors.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bithesis.doc.r72491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bizcard.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blindtext.doc.r25039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blkarray.doc.r36406.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/block.doc.r17209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blowup.doc.r67640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bnumexpr.doc.r59244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boites.doc.r32235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bold-extra.doc.r17076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/book-of-common-prayer.doc.r62240.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookcover.doc.r72461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookest.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booklet.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookshelf.doc.r72521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boolexpr.doc.r17830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bophook.doc.r17062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxedminipage.doc.r54827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxhandler.doc.r28031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bracketkey.doc.r17129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braket.doc.r17127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breakurl.doc.r29901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bubblesort.doc.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bullcntr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxcalc.doc.r56431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxdpx-beamer.doc.r41813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxdvidriver.doc.r43219.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxenclose.doc.r40213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxnewfont.doc.r44173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxpapersize.doc.r63174.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxpdfver.doc.r71967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxtexlogo.doc.r63231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calcage.doc.r27725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calctab.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculator.doc.r64424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculatoritems.doc.r72824.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calrsfs.doc.r17125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cals.doc.r43003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calxxxx-yyyy.doc.r69266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cancel.doc.r32508.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/canoniclayout.doc.r64889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/capt-of.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/captcont.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/captdef.doc.r17353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/carbohydrates.doc.r39000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cases.doc.r54682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/casyl.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfile.doc.r53084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfilebetweentags.doc.r21476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catechis.doc.r59998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catoptions.doc.r68982.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catppuccinpalette.doc.r72060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cbcoptic.doc.r16666.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccaption.doc.r23443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cclicenses.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd.doc.r34452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd-cover.doc.r17121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdcmd.doc.r60742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdpbundl.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cellprops.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cellspace.doc.r61501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/censor.doc.r67293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/centeredline.doc.r64672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/centerlastline.doc.r56644.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changebar.doc.r71847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changelayout.doc.r16094.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changelog.doc.r72305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changepage.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changes.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chappg.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chapterfolder.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cheatsheet.doc.r45069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checkend.doc.r51475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chet.doc.r45081.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chextras.doc.r27118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/childdoc.doc.r49543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chkfloat.doc.r27473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chletter.doc.r20060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chngcntr.doc.r47577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chronology.doc.r67973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circ.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circledsteps.doc.r67889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circledtext.doc.r72238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classics.doc.r53671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classpack.doc.r55218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clefval.doc.r55985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref-forward.doc.r70649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref-usedon.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clicks.doc.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clipboard.doc.r47747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clistmap.doc.r61811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clock.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrdblpg.doc.r47511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrstrip.doc.r60363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmdstring.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmdtrack.doc.r28910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmsd.doc.r18787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cnltx.doc.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cntformats.doc.r34668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cntperchap.doc.r37572.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codebox.doc.r61771.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codedescribe.doc.r69943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codedoc.doc.r17630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codehigh.doc.r65787.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codepage.doc.r51502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codesection.doc.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collcell.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collectbox.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colophon.doc.r47913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/color-edits.doc.r56707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorblind.doc.r71253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colordoc.doc.r18270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorframed.doc.r64551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorinfo.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloring.doc.r41042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorist.doc.r70100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorspace.doc.r50585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colortab.doc.r22155.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorwav.doc.r67012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorweb.doc.r31490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colourchange.doc.r21741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combelow.doc.r18462.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combine.doc.r19361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comma.doc.r18259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commado.doc.r38875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commalists-tools.doc.r72641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commedit.doc.r50116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/comment.doc.r41927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commonunicode.doc.r62901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/competences.doc.r47573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concepts.doc.r29020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concprog.doc.r18791.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conditext.doc.r55387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/constants.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/continue.doc.r49449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contour.doc.r18950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contracard.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conv-xkv.doc.r43558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking-units.doc.r65241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cool.doc.r67013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolfn.doc.r69007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coollist.doc.r67048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolstr.doc.r67015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolthms.doc.r29062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooltooltips.doc.r60201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coop-writing.doc.r61607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coordsys.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/copyedit.doc.r37928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/copyrightbox.doc.r24829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coseoul.doc.r23862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/count1to.doc.r71526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counterz.doc.r67335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counttexruns.doc.r27576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/courseoutline.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coursepaper.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coverpage.doc.r63509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cprotect.doc.r21209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cprotectinside.doc.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crbox.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/create-theorem.doc.r72830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/creationboites.doc.r68087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crefthe.doc.r70156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossreference.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossreftools.doc.r55879.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crumbs.doc.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csquotes.doc.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/css-colors.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csvmerge.doc.r51857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csvsimple.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cuisine.doc.r34453.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currency.doc.r48990.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currfile.doc.r70650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curriculum-vitae.doc.r68211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currvita.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/customenvs.doc.r72764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cutwin.doc.r60901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cv.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cv4tw.doc.r34577.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cweb-latex.doc.r28878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyber.doc.r46776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cybercic.doc.r37659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/darkmode.doc.r64271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashbox.doc.r23425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashrule.doc.r29579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashrulex.doc.r72642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashundergaps.doc.r58150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dataref.doc.r62942.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datatool.doc.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datax.doc.r61772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dateiliste.doc.r27974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datenumber.doc.r61761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datestamp.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime.doc.r36650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2.doc.r63102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bahasai.doc.r46287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-basque.doc.r47064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-breton.doc.r52647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bulgarian.doc.r47031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-catalan.doc.r47032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-croatian.doc.r36682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-czech.doc.r47033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-danish.doc.r47034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-dutch.doc.r47355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-en-fulltext.doc.r36705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-english.doc.r52479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-esperanto.doc.r47356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-estonian.doc.r47565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-finnish.doc.r47047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-french.doc.r56393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-galician.doc.r47631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-german.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-greek.doc.r47533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-hebrew.doc.r47534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-icelandic.doc.r65213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-irish.doc.r47632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-it-fulltext.doc.r54779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-italian.doc.r37146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-latin.doc.r47748.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-lsorbian.doc.r47749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-magyar.doc.r48266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-norsk.doc.r48267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-polish.doc.r48456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-portuges.doc.r48457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-romanian.doc.r56394.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-russian.doc.r49345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-samin.doc.r49346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-scottish.doc.r52101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-serbian.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovak.doc.r52281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovene.doc.r52282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-spanish.doc.r45785.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-swedish.doc.r36700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-turkish.doc.r52331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-ukrainian.doc.r47552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-usorbian.doc.r52375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-welsh.doc.r52553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dblfloatfix.doc.r28983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dbshow.doc.r61634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/debate.doc.r64846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimal.doc.r23374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimalcomma.doc.r69251.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decorule.doc.r55230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/defoldfonts.doc.r68234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimtxt.doc.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/democodetools.doc.r64314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/denisbdoc.doc.r70592.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diabetes-logbook.doc.r54810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagbox.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagnose.doc.r19387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dialogl.doc.r28946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dichokey.doc.r17192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/didactic.doc.r70901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/didec.doc.r70229.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dimnum.doc.r58774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dinbrief.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/directory.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtytalk.doc.r20520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dlfltxb.doc.r17337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dnaseq.doc.r17194.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doclicense.doc.r68441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmfp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmute.doc.r25741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docshots.doc.r69676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doctools.doc.r34474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/documentation.doc.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docutils.doc.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doi.doc.r48634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doibanner.doc.r71919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotarrow.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotlessi.doc.r51476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotseqn.doc.r17195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/download.doc.r52257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dox.doc.r46011.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dpfloat.doc.r17196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dprogress.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drac.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftcopy.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftfigure.doc.r44854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftwatermark.doc.r70393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtk.doc.r71776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxdescribe.doc.r69507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxgallery.doc.r49504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ducksay.doc.r70816.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duckuments.doc.r52271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dvdcoll.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynamicnumber.doc.r38726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynblocks.doc.r35193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ean13isbn.doc.r57514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easy.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easy-todo.doc.r32677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easybook.doc.r72897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfig.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfloats.doc.r72699.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyformat.doc.r44543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easylist.doc.r32661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyreview.doc.r38352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebezier.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecclesiastic.doc.r38172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econlipsum.doc.r58390.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecv.doc.r24928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ed.doc.r25231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edichokey.doc.r56223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmargin.doc.r27599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eemeir.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/efbox.doc.r33236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egplot.doc.r20617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ehhline.doc.r54676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/einfart.doc.r70313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elements.doc.r61792.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipsis.doc.r55418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elmath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elocalloc.doc.r42712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elpres.doc.r71385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elzcards.doc.r51894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emarks.doc.r24504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedall.doc.r51177.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedfile.doc.r65528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embrac.doc.r57814.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emo.doc.r66944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emotion.doc.r69834.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emptypage.doc.r18064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emulateapj.doc.r28469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endfloat.doc.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endheads.doc.r43750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotes.doc.r53319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotes-hy.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engpron.doc.r16558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engrec.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enotez.doc.r61490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ensps-colorscheme.doc.r71431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumext.doc.r72861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumitem.doc.r51423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumitem-zref.doc.r21472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/envbig.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enverb.doc.r72137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/environ.doc.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/envlab.doc.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epcqrcode.doc.r70956.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigraph.doc.r54857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigraph-keys.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epiolmec.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eq-pin2corr.doc.r59477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqell.doc.r22931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqlist.doc.r32257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnalign.doc.r43278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqparbox.doc.r45215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/errata.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erw-l3.doc.r61799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esami.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esdiff.doc.r21385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esieecv.doc.r59638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esindex.doc.r71111.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esint.doc.r52240.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esint-type1.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etaremune.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etextools.doc.r20694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etl.doc.r60998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoc.doc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eukdate.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eulerpx.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euromoney.doc.r72221.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/europasscv.doc.r56829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/europecv.doc.r69661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyhook.doc.r35675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everypage.doc.r56694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam.doc.r67600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-lite.doc.r65754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-n.doc.r64674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-randomizechoices.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examdesign.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examplep.doc.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examz.doc.r67303.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exceltex.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/excludeonly.doc.r17262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercise.doc.r35417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisebank.doc.r50448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisepoints.doc.r49590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercises.doc.r55188.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercisesheets.doc.r71063.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exesheet.doc.r69838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exframe.doc.r72595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exp-testopt.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expdlist.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/export.doc.r27206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exsheets.doc.r67300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exsol.doc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extract.doc.r52117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ezedits.doc.r72849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facsimile.doc.r21328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/factura.doc.r61697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fail-fast.doc.r67543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/familytree.doc.r63739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyhandout.doc.r46411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancylabel.doc.r46736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancynum.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancypar.doc.r58895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyqr.doc.r72472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyslides.doc.r36263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytabs.doc.r41549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytooltips.doc.r68931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbox.doc.r69041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcolumn.doc.r67729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetchcls.doc.r45245.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fewerfloatpages.doc.r58058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ffcode.doc.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ffslides.doc.r38895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fgruler.doc.r70917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fifo-stack.doc.r33288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figsize.doc.r18784.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontents.doc.r66740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontentsdef.doc.r52208.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filedate.doc.r29529.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fileinfo.doc.r28421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filemod.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fillwith.doc.r72006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fink.doc.r24329.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/finstrut.doc.r21719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fistrum.doc.r70187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fithesis.doc.r70531.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixcmex.doc.r51825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixfoot.doc.r17131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixme.doc.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmetodonotes.doc.r30168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fjodor.doc.r53207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flabels.doc.r17272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flacards.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flagderiv.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flashcards.doc.r62104.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flashmovie.doc.r25768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flexipage.doc.r66614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flipbook.doc.r25584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flippdf.doc.r56782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatbytocbasic.doc.r67945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatflt.doc.r25540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrow.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrowbytocbasic.doc.r67946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowfram.doc.r35291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmtcount.doc.r72583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fn2end.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnbreak.doc.r66615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fncychap.doc.r20710.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fncylab.doc.r52090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnpara.doc.r25607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnpct.doc.r62248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnumprint.doc.r29173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foilhtml.doc.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foliono.doc.r58877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontaxes.doc.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontscale.doc.r72614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontsetup.doc.r72734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontsize.doc.r60161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonttable.doc.r44799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisc.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisx.doc.r42621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnotebackref.doc.r27034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnoterange.doc.r66149.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnpag.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forarray.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foreign.doc.r27819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forloop.doc.r67017.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formlett.doc.r21480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forms16be.doc.r51305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formular.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fragments.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frame.doc.r18312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/framed.doc.r26789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/framedsyntax.doc.r72199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frankenstein.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frege.doc.r27417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/froufrou.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftcap.doc.r17275.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftnxtra.doc.r29652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullblck.doc.r25434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullminipage.doc.r34545.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullwidth.doc.r24684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/functional.doc.r69908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-calligra.doc.r26018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-sueterlin.doc.r26030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fvextra.doc.r72885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fwlw.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/g-brief.doc.r50415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gatherenum.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gauss.doc.r32934.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gcard.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gcite.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gender.doc.r36464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogy-profiles.doc.r69580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genmpage.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gensymb.doc.r64740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getfiledate.doc.r16189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getitems.doc.r39365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gindex.doc.r52311.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ginpenc.doc.r24980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitfile-info.doc.r51928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo.doc.r34049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo2.doc.r38913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitlog.doc.r38932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitstatus.doc.r64662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitver.doc.r63920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/globalvals.doc.r49962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gloss.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-danish.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-dutch.doc.r35685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-english.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-estonian.doc.r49928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-extra.doc.r68409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-finnish.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-french.doc.r42873.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-german.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-irish.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-italian.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-magyar.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-norsk.doc.r67141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-nynorsk.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-polish.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-portuges.doc.r36064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-serbian.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-slovene.doc.r51211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-spanish.doc.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmdoc.doc.r21292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmdoc-enhance.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmiflink.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmutils.doc.r24287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmverb.doc.r24288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grabbox.doc.r65223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradient-text.doc.r65567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grading-scheme.doc.r62505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphbox.doc.r46360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicscache.doc.r65318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicx-psmin.doc.r56931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicxbox.doc.r32630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphpaper.doc.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grayhints.doc.r49052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grfpaste.doc.r17354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grid.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grid-system.doc.r32981.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridpapers.doc.r58723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridset.doc.r72056.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridslides.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gs1.doc.r59620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitlogo.doc.r55741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ha-prosper.doc.r59651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hackthefootline.doc.r46494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/halloweenmath.doc.r52602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handin.doc.r48255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handout.doc.r43962.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handoutwithnotes.doc.r62140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hang.doc.r43280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanging.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hardwrap.doc.r21396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harnon-cv.doc.r26543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harpoon.doc.r21327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/he-she.doc.r41359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hebdomon.doc.r72033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-acronym.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-float.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-text.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-title.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hereapplies.doc.r68638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hhtensor.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hideanswer.doc.r63852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/highlightlatex.doc.r58392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/highlightx.doc.r72619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/histogr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitec.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitreport.doc.r58357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hletter.doc.r30002.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobsub.doc.r52810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/homework.doc.r72441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hpsdiss.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/href-ul.doc.r72741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrefhide.doc.r66189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huawei.doc.r72668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvextern.doc.r70795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvindex.doc.r46051.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvlogos.doc.r72538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvpygmentex.doc.r62405.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvqrurl.doc.r71361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hwemoji.doc.r65001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdestopt.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdoc.doc.r68661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdvips.doc.r53197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyper.doc.r17357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperbar.doc.r48147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypernat.doc.r17358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperxmp.doc.r70694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphenat.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/identkey.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/idxcmds.doc.r54554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/idxlayout.doc.r25821.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iexec.doc.r69420.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifallfalse.doc.r60027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iffont.doc.r38823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifmslide.doc.r20727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifmtarg.doc.r47544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifnextok.doc.r23379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifoddpage.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifthenx.doc.r25819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iitem.doc.r29613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/image-gallery.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imakeidx.doc.r42287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/import.doc.r54683.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/incgraph.doc.r70635.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/indextools.doc.r68555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inline-images.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinedef.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinegraphicx.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinelabel.doc.r63853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputenx.doc.r52986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputtrc.doc.r28019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interactiveworkbook.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interfaces.doc.r21474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intopdf.doc.r63987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inversepath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice.doc.r48359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice-class.doc.r49749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice2.doc.r67327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ipsum.doc.r68861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso10303.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodate.doc.r16613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodoc.doc.r59709.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isonums.doc.r17362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isopt.doc.r45509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isorot.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isosafety.doc.r72227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isotope.doc.r23711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/issuulinks.doc.r25742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iwonamath.doc.r71844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jlabels.doc.r24858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmsdelim.doc.r62630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jobname-suffix.doc.r64797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/joinbox.doc.r72239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jslectureplanner.doc.r70443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jsonparse.doc.r72772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jumplines.doc.r37553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jvlisting.doc.r24638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kalendarium.doc.r48744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kantlipsum.doc.r68983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kerntest.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keycommand.doc.r18042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyfloat.doc.r69399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyindex.doc.r50828.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyparse.doc.r60277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyreader.doc.r28195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keystroke.doc.r17992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyval2e.doc.r23698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyvaltable.doc.r65416.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kix.doc.r21606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knowledge.doc.r70594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-moderncvclassic.doc.r25025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-script-sfs.doc.r26137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv.doc.r57721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv-rg.doc.r49064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/korigamik.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ktv-texdata.doc.r27369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend-dev.doc.r71211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3build.doc.r72567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel-dev.doc.r72756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labbook.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labels.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labels4easylist.doc.r51124.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labelschanged.doc.r69400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambdax.doc.r60278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastbib.doc.r70376.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpackage.doc.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpage.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-amsmath-dev.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-base-dev.doc.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-bin-dev.doc.r71362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-context-ppchtex.doc.r66687.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-firstaid-dev.doc.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-graphics-dev.doc.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab-dev.doc.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-tools-dev.doc.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-uni8.doc.r49729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcolors.doc.r49888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexdemo.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexgit.doc.r54811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layouts.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lazylist.doc.r17691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lccaps.doc.r46432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcd.doc.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcg.doc.r31474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leading.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leaflet.doc.r70652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lebhart.doc.r70049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lectures.doc.r53642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lectureslides.doc.r62292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leftidx.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leftindex.doc.r69660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leipzig.doc.r52450.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lengthconvert.doc.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lettre.doc.r54722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lettrine.doc.r72860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lewis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lhelp.doc.r23638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libgreek.doc.r65004.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limap.doc.r44863.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linegoal.doc.r21523.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linop.doc.r41304.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lipsum.doc.r60561.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lisp-on-tex.doc.r38722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listing.doc.r17373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listingsutf8.doc.r53097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listlbls.doc.r67215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listliketab.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listofsymbols.doc.r16134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litebook.doc.r70777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litesolution.doc.r72036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/litetable.doc.r72539.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lkproof.doc.r20021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lmake.doc.r25552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/locality.doc.r20422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logbox.doc.r24499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logical-markup-utils.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logoetalab.doc.r68916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logpap.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longfbox.doc.r39028.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longfigure.doc.r34302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longnamefilelist.doc.r27889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/loops.doc.r30704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lsc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lscapeenhanced.doc.r70967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstaddons.doc.r72068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstfiracode.doc.r49503.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3graph.doc.r45913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3rawobjects.doc.r66619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltablex.doc.r34923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltabptch.doc.r17533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxdockit.doc.r21869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxguidex.doc.r50992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxkeys.doc.r28332.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxnew.doc.r21586.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxtools.doc.r24897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-check-hyphen.doc.r47527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-physical.doc.r59138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatodonotes.doc.r53825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macrolist.doc.r60139.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macroswap.doc.r31498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magaz.doc.r24694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magicnum.doc.r52983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magicwatermark.doc.r72044.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailing.doc.r71862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailmerge.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebarcode.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebase.doc.r41012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebox.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecell.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecirc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecmds.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecookbook.doc.r49311.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makedtx.doc.r46702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeglos.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makelabels.doc.r60255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makerobust.doc.r52811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mandi.doc.r70231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manfnt.doc.r54684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manuscript.doc.r36110.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manyind.doc.r49874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfit.doc.r48281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfix.doc.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginnote.doc.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/markdown.doc.r72765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathalpha.doc.r61089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathastext.doc.r72671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathexam.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfam256.doc.r53519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfont.doc.r68241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathgreeks.doc.r71248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maybemath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcaption.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mceinleger.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcexam.doc.r60481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcite.doc.r18173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mciteplus.doc.r31648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdframed.doc.r31075.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/media4svg.doc.r64686.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/media9.doc.r72299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/medstarbeamer.doc.r38828.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/meetingmins.doc.r31878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memexsupp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memory.doc.r30452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mensa-tex.doc.r45997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menu.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menucard.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menukeys.doc.r64314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogox.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metanorma.doc.r55010.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metastr.doc.r56246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/method.doc.r17485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metre.doc.r18489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfirstuc.doc.r64743.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mftinc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mi-solns.doc.r49651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/midpage.doc.r17484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mindflow.doc.r65236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minibox.doc.r30914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minidocument.doc.r43752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minifp.doc.r32559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minimalist.doc.r70302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minipage-marginpar.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minitoc.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minorrevision.doc.r32165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minutes.doc.r42186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mla-paper.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mleftright.doc.r53021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlist.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mmap.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnotes.doc.r63406.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moderncv.doc.r71837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modernposter.doc.r47269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moderntimeline.doc.r55518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modref.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modroman.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modular.doc.r44142.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moloch.doc.r72715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/monofill.doc.r28140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moodle.doc.r65672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moreenum.doc.r24479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morefloats.doc.r37927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morehype.doc.r38815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moresize.doc.r17513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moreverb.doc.r22126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morewrites.doc.r69679.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/movement-arrows.doc.r67270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/movie15.doc.r26473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mparhack.doc.r59066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpostinl.doc.r49559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msc.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msg.doc.r49578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mslapa.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mtgreek.doc.r17967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multenum.doc.r21775.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiaudience.doc.r60688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibbl.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicap.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicolrule.doc.r56366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multidef.doc.r40637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multienv.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiexpand.doc.r45943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multifootnote.doc.r70745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multilang.doc.r49065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiple-choice.doc.r63722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multirow.doc.r72833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multitoc.doc.r71520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mversion.doc.r29370.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwe.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mycv.doc.r26807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mylatex.doc.r56751.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mylatexformat.doc.r21392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nag.doc.r24741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nameauth.doc.r69758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namespc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncclatex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncctools.doc.r51810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/needspace.doc.r29601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newcommand.doc.r18704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newenviron.doc.r29331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfile.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newlfm.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newspaper.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newunicodechar.doc.r47382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newvbtm.doc.r23996.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newverbs.doc.r64833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nfssext-cfr.doc.r72454.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicefilelist.doc.r65842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/niceframe.doc.r36086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicetext.doc.r38914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nidanfloat.doc.r48295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ninecolors.doc.r62006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nlctdoc.doc.r72810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noconflict.doc.r30140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nodepthtext.doc.r72822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noindentafter.doc.r59195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noitcrul.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nolbreaks.doc.r26786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomencl.doc.r61029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomentbl.doc.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/non-decimal-units.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonfloat.doc.r17598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonumonpart.doc.r22114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nopageno.doc.r18128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/normalcolor.doc.r40125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notebeamer.doc.r72554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notespages.doc.r41906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notestex.doc.r45396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notoccite.doc.r18129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nowidow.doc.r24066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nox.doc.r30991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntheorem.doc.r27609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numberedblock.doc.r33109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numname.doc.r18130.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numprint.doc.r27498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numspell.doc.r70936.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocg-p.doc.r28803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocgx.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocgx2.doc.r72300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocr-latex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/octavo.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldstyle.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onlyamsmath.doc.r42927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opcit.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opencolor.doc.r66363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optidef.doc.r50941.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optional.doc.r18131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/options.doc.r39030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orcidlink.doc.r71633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orientation.doc.r57390.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outline.doc.r18360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outliner.doc.r21095.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outlines.doc.r25192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outlining.doc.r45601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overlays.doc.r57866.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overpic.doc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/padcount.doc.r47621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecolor.doc.r66885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecont.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagegrid.doc.r64470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagelayout.doc.r71937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagenote.doc.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagerange.doc.r16915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pageslts.doc.r39164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/palette.doc.r60119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pangram.doc.r66300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paper.doc.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papercdcase.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papermas.doc.r66835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papertex.doc.r19230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paracol.doc.r72651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parades.doc.r40042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paralist.doc.r43021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paresse.doc.r59228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parnotes.doc.r71505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parsa.doc.r54840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parselines.doc.r21475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-cours.doc.r55859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-cv.doc.r32263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pas-tableur.doc.r72283.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/passopt.doc.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patchcmd.doc.r41379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pauldoc.doc.r16005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pawpict.doc.r21629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbalance.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbox.doc.r24807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbsheet.doc.r24830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdf14.doc.r17583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfannotations.doc.r68958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcol.doc.r64469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcolmk.doc.r52912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcomment.doc.r49047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcprot.doc.r18735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmarginpar.doc.r23492.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfoverlay.doc.r64210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpagediff.doc.r37946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpc.doc.r68610.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpc-movie.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfprivacy.doc.r45985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfrender.doc.r69058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfreview.doc.r50100.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfscreen.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfslide.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfsync.doc.r20373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfwin.doc.r68667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfx.doc.r71681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pecha.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perltex.doc.r52162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/permute.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/petiteannonce.doc.r25915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmath-xfp.doc.r59268.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfcc.doc.r60731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfextendedabstract.doc.r60732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phffullpagefigure.doc.r41857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfnote.doc.r60733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfparen.doc.r41859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfqit.doc.r60734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfquotetext.doc.r41869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfsvnwatermark.doc.r41870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfthm.doc.r60735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philex.doc.r36396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phonenumbers.doc.r63774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/photo.doc.r18739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/photobook.doc.r71843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/picture.doc.r54867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piff.doc.r21894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkgloader.doc.r47486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeins.doc.r19848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plantslabels.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plates.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plweb.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmboxdraw.doc.r53046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynom.doc.r44832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynomial.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polytable.doc.r55837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postcards.doc.r21641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poster-mac.doc.r18305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postnotes.doc.r72850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot.doc.r59272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppr-prv.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppt-slides.doc.r72584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/practicalreports.doc.r52312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/precattl.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prelim2e.doc.r57000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preprint.doc.r30447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pressrelease.doc.r35147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prettyref.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prettytok.doc.r66884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preview.doc.r71662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/printlen.doc.r19847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/probsoln.doc.r44783.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/profmaquette.doc.r72757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/program.doc.r44214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/progress.doc.r19519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/progressbar.doc.r33822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/projlib.doc.r72789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proofread.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/properties.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prosper.doc.r33033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/protex.doc.r41633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/protocol.doc.r25562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfragx.doc.r26243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstool.doc.r46393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstring.doc.r42857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxgreeks.doc.r21838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pygmentex.doc.r64131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pynotebook.doc.r70818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/python.doc.r60162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythonimmediate.doc.r69487.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/q-and-a.doc.r69164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qcm.doc.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qstest.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsymbols.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quicktype.doc.r42183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quiz2socrative.doc.r52276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotchap.doc.r56926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quoting.doc.r32818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotmark.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ran_toks.doc.r59515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randexam.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randintlist.doc.r72646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randtext.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rccol.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs-multi.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcsinfo.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/readablecv.doc.r67986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/readarray.doc.r60540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realboxes.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipe.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipebook.doc.r37026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipecard.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rectopma.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refcheck.doc.r29128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refenums.doc.r44131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reflectgraphics.doc.r40612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refman.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refstyle.doc.r69680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regcount.doc.r19979.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regexpatch.doc.r58668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/register.doc.r54485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regstats.doc.r66795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/relenc.doc.r22050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/relsize.doc.r30707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repeatindex.doc.r24305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repltext.doc.r56433.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rescansync.doc.r63856.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resmes.doc.r65375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/responsive.doc.r71800.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/returntogrid.doc.r48485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rgltxdoc.doc.r53858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rjlparshap.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rlepsf.doc.r19082.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rmpage.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robust-externalize.doc.r70653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robustcommand.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robustindex.doc.r49877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbar.doc.r25005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbarpagenumber.doc.r36236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanneg.doc.r20087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romannum.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rorlink.doc.r67461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rotfloat.doc.r18292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rotpages.doc.r18740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roundbox.doc.r29675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rterface.doc.r30084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rtkinenc.doc.r20003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rulerbox.doc.r50984.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rulercompass.doc.r32392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/runcode.doc.r69471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rvwrite.doc.r19614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sanitize-umlaut.doc.r67126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauerj.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/saveenv.doc.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savefnmark.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savetrees.doc.r40525.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scale.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scalebar.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scalerel.doc.r42809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scaletextbullet.doc.r72834.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scanpages.doc.r42633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schedule.doc.r51805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schooldocs.doc.r69659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scontents.doc.r71533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrambledenvs.doc.r60615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrhack.doc.r72608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrlayer-fancyhdr.doc.r63844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrlttr2copy.doc.r56733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrwfile.doc.r66872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sdaps.doc.r65345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sdrt.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/secdot.doc.r20208.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/secnum.doc.r61813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectionbox.doc.r37749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectionbreak.doc.r50339.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectsty.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seealso.doc.r43595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selectp.doc.r20185.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selinput.doc.r53098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantex.doc.r65679.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantic.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantic-markup.doc.r53607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplanner.doc.r56841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semioneside.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semproc.doc.r37568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semtex.doc.r56530.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sepfootnotes.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seqsplit.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesstime.doc.r49750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setspaceenhanced.doc.r72852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sf298.doc.r41653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sffms.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadethm.doc.r53350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadow.doc.r20312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shadowtext.doc.r26522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shapepar.doc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shdoc.doc.r41991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shipunov.doc.r52334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shorttoc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/show2e.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showcharinbox.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showdim.doc.r28918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showexpl.doc.r57414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showlabels.doc.r63940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidecap.doc.r65618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotes.doc.r72264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotesplus.doc.r69176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/silence.doc.r27028.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sillypage.doc.r71889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sim-os-menus.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecd.doc.r29260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecv.doc.r35537.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleinvoice.doc.r45673.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplivre.doc.r70314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sitem.doc.r22136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skb.doc.r22781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skdoc.doc.r56950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeldoc.doc.r57922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeycommand.doc.r24652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skeyval.doc.r30560.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skills.doc.r56734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skrapport.doc.r52412.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/slantsc.doc.r25007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smalltableof.doc.r20333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smart-eqn.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartref.doc.r20311.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartunits.doc.r39592.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snapshot.doc.r56735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snaptodo.doc.r70676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snotez.doc.r61992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soulpos.doc.r60772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spacingtricks.doc.r69048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spark-otf.doc.r62481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sparklines.doc.r42821.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spelatex.doc.r72763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sphack.doc.r20842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitindex.doc.r39766.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spot.doc.r22408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spotcolor.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spreadtab.doc.r68256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spverbatim.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srbook-mem.doc.r45818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srcltx.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sseq.doc.r31585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sslides.doc.r32293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stackengine.doc.r60019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standalone.doc.r64677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standardsectioning.doc.r71479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/starray.doc.r70796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdclsdv.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdpage.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stealcaps.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stex.doc.r68569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stocksize.doc.r72853.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/storebox.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/storecmd.doc.r24431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringstrings.doc.r57097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sttools.doc.r60736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stubs.doc.r70341.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/studenthandouts.doc.r43516.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/styledcmd.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subdepth.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subdocs.doc.r51480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqn.doc.r71864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqnarray.doc.r71865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfigmat.doc.r20308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfigure.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfiles.doc.r56977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfloat.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/substr.doc.r16117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/supertabular.doc.r71854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suppose.doc.r59281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svg.doc.r70626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svgcolor.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-multi.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-prov.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svninfo.doc.r62157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swfigure.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swungdash.doc.r64204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntax.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synthslant.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntrace.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synttree.doc.r16252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabbing.doc.r59715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabfigures.doc.r25202.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tableaux.doc.r42413.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablefootnote.doc.r32804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tableof.doc.r72313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablists.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabls.doc.r17255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablvar.doc.r72007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabstackengine.doc.r46848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabto-ltx.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabu.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularborder.doc.r17885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularcalc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularew.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularray.doc.r69906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabulary.doc.r71463.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagging.doc.r52064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagpair.doc.r42138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagpdf.doc.r72901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/talk.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tamefloats.doc.r27345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tangocolors.doc.r66733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tasks.doc.r61541.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tblr-extras.doc.r71623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tcldoc.doc.r22018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tcolorbox.doc.r72624.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tdclock.doc.r33043.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/technics.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ted.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/telprint.doc.r71914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/templatetools.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal.doc.r22514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termlist.doc.r18923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termsim.doc.r61414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testhyphens.doc.r38928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testidx.doc.r60966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-label.doc.r16372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-locale.doc.r48500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texmate.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texments.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texpower.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texshade.doc.r69371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texsurgery.doc.r59885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textcsc.doc.r67193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textfit.doc.r20591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textmerg.doc.r20677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textpos.doc.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textualicomma.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texvc.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/theoremref.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thinsp.doc.r39669.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threadcol.doc.r28754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeparttable.doc.r17383.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeparttablex.doc.r34206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumb.doc.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumbs.doc.r33134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumby.doc.r16736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ticket.doc.r42280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timeop.doc.r72875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipauni.doc.r65817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlecaps.doc.r63020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlepic.doc.r43497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titleref.doc.r18729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titlesec.doc.r68677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titling.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/to-be-determined.doc.r72527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocbibind.doc.r20085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocdata.doc.r69512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocloft.doc.r53364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocvsec2.doc.r33146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todo.doc.r17746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todonotes.doc.r69319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tokcycle.doc.r60320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tokenizer.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toolbox.doc.r32260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topfloat.doc.r19084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topiclongtable.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totalcount.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totcount.doc.r21178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totpages.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tramlines.doc.r71842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translations.doc.r61896.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/transparent.doc.r64852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/treesvr.doc.r71382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trfsigns.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trimspaces.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trivfloat.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trsym.doc.r18732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/truncate.doc.r18921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tucv.doc.r20680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turnthepage.doc.r72902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tutodoc.doc.r72719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoinone.doc.r17024.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoup.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txgreeks.doc.r21839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/type1cm.doc.r21820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typed-checklist.doc.r63445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typeface.doc.r27046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typoaid.doc.r44238.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typog.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typogrid.doc.r24994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uassign.doc.r38459.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucs.doc.r68759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uebungsblatt.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umoline.doc.r19085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underlin.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underoverlap.doc.r29019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undolabl.doc.r65846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-titlepage.doc.r68917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-math-input.doc.r69591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicodefonttable.doc.r71477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unifront.doc.r67054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unisc.doc.r63178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitconv.doc.r55060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/units.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unravel.doc.r69308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/updatemarks.doc.r72489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upmethodology.doc.r64613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upquote.doc.r26059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uri.doc.r48602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/useclass.doc.r72455.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ushort.doc.r32261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uspace.doc.r63123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utf8add.doc.r61074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwmslide.doc.r27354.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/variablelm.doc.r60014.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varindex.doc.r32262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varsfromjobname.doc.r44154.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varwidth.doc.r24104.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vcell.doc.r59039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vdmlisting.doc.r56905.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbasef.doc.r21922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbatimbox.doc.r67865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbatimcopy.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbdef.doc.r17177.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verbments.doc.r23670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifiche.doc.r69726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifycommand.doc.r72180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/version.doc.r21920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/versions.doc.r21921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/versonotes.doc.r69249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vertbars.doc.r49429.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vgrid.doc.r32457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vhistory.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vmargin.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/volumes.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vpe.doc.r26039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vruler.doc.r21598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vtable.doc.r51126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vwcol.doc.r36254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wallcalendar.doc.r45568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wallpaper.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/warning.doc.r66616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/warpcol.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/was.doc.r64691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/webquiz.doc.r58808.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/whatsnote.doc.r72823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widetable.doc.r53409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widows-and-orphans.doc.r66753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/williams.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/willowtreebook.doc.r60638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/withargs.doc.r52641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordcount.doc.r46165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordlike.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/worksheet.doc.r48423.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapfig.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapfig2.doc.r70838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapstuff.doc.r64058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/writeongrid.doc.r72768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wtref.doc.r69214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xargs.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xassoccnt.doc.r61112.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xbmks.doc.r53448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcntperchap.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-material.doc.r42289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-solarized.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcomment.doc.r72759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcookybooky.doc.r36435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcpdftips.doc.r50449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xdoc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xellipsis.doc.r47546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfakebold.doc.r68929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfor.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xhfill.doc.r22575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xifthen.doc.r38929.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ximera.doc.r71243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xint.doc.r63562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xint-regression.doc.r71443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkcdcolors.doc.r67895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkeymask.doc.r69223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xltabular.doc.r72846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmpincl.doc.r60593.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xnewcommand.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xoptarg.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpatch.doc.r69768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpeek.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xprintlen.doc.r35928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpunctuate.doc.r67918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xreview.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xsavebox.doc.r64049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xsim.doc.r61988.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xstring.doc.r68015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xtab.doc.r23347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xurl.doc.r61553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xwatermark.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xytree.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yafoot.doc.r48568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yagusylo.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yaletter.doc.r42830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ycbook.doc.r46201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ydoc.doc.r64887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yplan.doc.r34398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zebra-goodies.doc.r66630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zed-csp.doc.r17258.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zennote.doc.r65549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ziffer.doc.r32279.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref.doc.r68278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-check.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-clever.doc.r72876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-vario.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zugferd.doc.r72877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zwgetfdate.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zwpagelayout.doc.r63074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/2up.doc.r55076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a0poster.doc.r54071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a4wide.doc.r20943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/a5comb.doc.r17020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abraces.doc.r71955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abspos.doc.r64465.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abstract.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accessibility.doc.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accsupp.doc.r53052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/achemso.doc.r69638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acro.doc.r62925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acronym.doc.r72324.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acroterm.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialangle.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialsymbol.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addfont.doc.r58559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addlines.doc.r49326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjmulticol.doc.r63320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjustbox.doc.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adrconv.doc.r46817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/advdate.doc.r20538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/affilauthor.doc.r68996.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akktex.doc.r26055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/akletter.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alchemist.doc.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alertmessage.doc.r38055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alnumsec.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alphalph.doc.r53087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alterqcm.doc.r59265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altfont.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altsubsup.doc.r62738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsaddr.doc.r64357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anima.doc.r72895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/animate.doc.r72548.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonchap.doc.r17049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/answers.doc.r35032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anyfontsize.doc.r17050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/appendix.doc.r53718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/appendixnumberbeamer.doc.r46317.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apptools.doc.r28400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabicfront.doc.r51474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arcs.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/argumentation.doc.r72754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraycols.doc.r71168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arrayjobx.doc.r18125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraysort.doc.r31576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arydshln.doc.r50084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asciilist.doc.r49060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/askinclude.doc.r54725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/assignment.doc.r20431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/assoccnt.doc.r38497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/association-matrix.doc.r64845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atenddvi.doc.r56922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atendofenv.doc.r62164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile.doc.r42099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aurl.doc.r41853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authoraftertitle.doc.r55889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authorarchive.doc.r65777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/authorindex.doc.r51757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autofancyhdr.doc.r54049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autonum.doc.r36084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autopdf.doc.r32377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autopuncitems.doc.r63045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/avremu.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/awesomebox.doc.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axessibility.doc.r57105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/background.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bankstatement.doc.r38857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bashful.doc.r25597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basicarith.doc.r35460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bchart.doc.r43928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-rl.doc.r69254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer2thesis.doc.r27539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerappendixnote.doc.r55732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beameraudience.doc.r23427.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerauxtheme.doc.r56087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamercolorthemeowl.doc.r40105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerdarkthemes.doc.r55117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerposter.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamersubframe.doc.r23510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-arguelles.doc.r71485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-cuerna.doc.r42161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-detlevcm.doc.r39048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-epyt.doc.r41404.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-focus.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-gotham.doc.r72808.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-light.doc.r49867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-metropolis.doc.r43031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-mirage.doc.r72656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-npbt.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-phnompenh.doc.r39100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-pure-minimalistic.doc.r56934.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-rainbow.doc.r72864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-saintpetersburg.doc.r45877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-simpledarkblue.doc.r60061.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-simpleplus.doc.r64770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-tcolorbox.doc.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-trigon.doc.r65985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-upenn-bc.doc.r29937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemeamurmaple.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemeconcrete.doc.r69528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemelalic.doc.r58777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemenirma.doc.r20765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerthemenord.doc.r56180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bearwear.doc.r54826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beaulivre.doc.r70049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beautybook.doc.r71693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beautynote.doc.r70155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beton.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bewerbung.doc.r61632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bez123.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bhcexam.doc.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bibletext.doc.r45196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigfoot.doc.r38248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigints.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bilingualpages.doc.r59643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biochemistry-colors.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bithesis.doc.r72491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bizcard.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blindtext.doc.r25039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blkarray.doc.r36406.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/block.doc.r17209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blowup.doc.r67640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bnumexpr.doc.r59244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boites.doc.r32235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bold-extra.doc.r17076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/book-of-common-prayer.doc.r62240.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookcover.doc.r72461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookest.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booklet.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookshelf.doc.r72521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boolexpr.doc.r17830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bophook.doc.r17062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxedminipage.doc.r54827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxhandler.doc.r28031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bracketkey.doc.r17129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braket.doc.r17127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breakurl.doc.r29901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bubblesort.doc.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bullcntr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxcalc.doc.r56431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxdpx-beamer.doc.r41813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxdvidriver.doc.r43219.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxenclose.doc.r40213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxnewfont.doc.r44173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxpapersize.doc.r63174.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxpdfver.doc.r71967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxtexlogo.doc.r63231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calcage.doc.r27725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calctab.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculator.doc.r64424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculatoritems.doc.r72824.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calrsfs.doc.r17125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cals.doc.r43003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calxxxx-yyyy.doc.r69266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cancel.doc.r32508.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/canoniclayout.doc.r64889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/capt-of.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/captcont.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/captdef.doc.r17353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/carbohydrates.doc.r39000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cases.doc.r54682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/casyl.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfile.doc.r53084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfilebetweentags.doc.r21476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catechis.doc.r59998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catoptions.doc.r68982.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catppuccinpalette.doc.r72060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cbcoptic.doc.r16666.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccaption.doc.r23443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cclicenses.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd.doc.r34452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd-cover.doc.r17121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdcmd.doc.r60742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdpbundl.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cellprops.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cellspace.doc.r61501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/censor.doc.r67293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/centeredline.doc.r64672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/centerlastline.doc.r56644.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changebar.doc.r71847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changelayout.doc.r16094.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changelog.doc.r72305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changepage.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changes.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chappg.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chapterfolder.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cheatsheet.doc.r45069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checkend.doc.r51475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chet.doc.r45081.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chextras.doc.r27118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/childdoc.doc.r49543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chkfloat.doc.r27473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chletter.doc.r20060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chngcntr.doc.r47577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chronology.doc.r67973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circ.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circledsteps.doc.r67889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circledtext.doc.r72238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classics.doc.r53671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classpack.doc.r55218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clefval.doc.r55985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref-forward.doc.r70649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref-usedon.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clicks.doc.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clipboard.doc.r47747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clistmap.doc.r61811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clock.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrdblpg.doc.r47511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrstrip.doc.r60363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmdstring.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmdtrack.doc.r28910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmsd.doc.r18787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cnltx.doc.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cntformats.doc.r34668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cntperchap.doc.r37572.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codebox.doc.r61771.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codedescribe.doc.r69943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codedoc.doc.r17630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codehigh.doc.r65787.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codepage.doc.r51502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codesection.doc.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collcell.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collectbox.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colophon.doc.r47913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/color-edits.doc.r56707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorblind.doc.r71253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colordoc.doc.r18270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorframed.doc.r64551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorinfo.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloring.doc.r41042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorist.doc.r70100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorspace.doc.r50585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colortab.doc.r22155.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorwav.doc.r67012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorweb.doc.r31490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colourchange.doc.r21741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combelow.doc.r18462.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combine.doc.r19361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comma.doc.r18259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commado.doc.r38875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commalists-tools.doc.r72641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commedit.doc.r50116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/comment.doc.r41927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commonunicode.doc.r62901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/competences.doc.r47573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concepts.doc.r29020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concprog.doc.r18791.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conditext.doc.r55387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/constants.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/continue.doc.r49449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contour.doc.r18950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contracard.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conv-xkv.doc.r43558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking-units.doc.r65241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cool.doc.r67013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolfn.doc.r69007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coollist.doc.r67048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolstr.doc.r67015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolthms.doc.r29062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooltooltips.doc.r60201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coop-writing.doc.r61607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coordsys.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/copyedit.doc.r37928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/copyrightbox.doc.r24829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coseoul.doc.r23862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/count1to.doc.r71526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counterz.doc.r67335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counttexruns.doc.r27576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/courseoutline.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coursepaper.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coverpage.doc.r63509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cprotect.doc.r21209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cprotectinside.doc.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crbox.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/create-theorem.doc.r72830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/creationboites.doc.r68087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crefthe.doc.r70156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossreference.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossreftools.doc.r55879.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crumbs.doc.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csquotes.doc.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/css-colors.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csvmerge.doc.r51857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csvsimple.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cuisine.doc.r34453.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currency.doc.r48990.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currfile.doc.r70650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curriculum-vitae.doc.r68211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currvita.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/customenvs.doc.r72764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cutwin.doc.r60901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cv.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cv4tw.doc.r34577.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cweb-latex.doc.r28878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyber.doc.r46776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cybercic.doc.r37659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/darkmode.doc.r64271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashbox.doc.r23425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashrule.doc.r29579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashrulex.doc.r72642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashundergaps.doc.r58150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dataref.doc.r62942.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datatool.doc.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datax.doc.r61772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dateiliste.doc.r27974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datenumber.doc.r61761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datestamp.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime.doc.r36650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2.doc.r63102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bahasai.doc.r46287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-basque.doc.r47064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-breton.doc.r52647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bulgarian.doc.r47031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-catalan.doc.r47032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-croatian.doc.r36682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-czech.doc.r47033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-danish.doc.r47034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-dutch.doc.r47355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-en-fulltext.doc.r36705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-english.doc.r52479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-esperanto.doc.r47356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-estonian.doc.r47565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-finnish.doc.r47047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-french.doc.r56393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-galician.doc.r47631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-german.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-greek.doc.r47533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-hebrew.doc.r47534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-icelandic.doc.r65213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-irish.doc.r47632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-it-fulltext.doc.r54779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-italian.doc.r37146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-latin.doc.r47748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-lsorbian.doc.r47749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-magyar.doc.r48266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-norsk.doc.r48267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-polish.doc.r48456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-portuges.doc.r48457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-romanian.doc.r56394.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-russian.doc.r49345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-samin.doc.r49346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-scottish.doc.r52101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-serbian.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovak.doc.r52281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovene.doc.r52282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-spanish.doc.r45785.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-swedish.doc.r36700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-turkish.doc.r52331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-ukrainian.doc.r47552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-usorbian.doc.r52375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-welsh.doc.r52553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dblfloatfix.doc.r28983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dbshow.doc.r61634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/debate.doc.r64846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimal.doc.r23374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimalcomma.doc.r69251.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decorule.doc.r55230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/defoldfonts.doc.r68234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimtxt.doc.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/democodetools.doc.r64314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/denisbdoc.doc.r70592.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diabetes-logbook.doc.r54810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagbox.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagnose.doc.r19387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dialogl.doc.r28946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dichokey.doc.r17192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/didactic.doc.r70901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/didec.doc.r70229.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dimnum.doc.r58774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dinbrief.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/directory.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtytalk.doc.r20520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dlfltxb.doc.r17337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dnaseq.doc.r17194.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doclicense.doc.r68441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmfp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmute.doc.r25741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docshots.doc.r69676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doctools.doc.r34474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/documentation.doc.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docutils.doc.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doi.doc.r48634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doibanner.doc.r71919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotarrow.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotlessi.doc.r51476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotseqn.doc.r17195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/download.doc.r52257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dox.doc.r46011.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dpfloat.doc.r17196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dprogress.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drac.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftcopy.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftfigure.doc.r44854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftwatermark.doc.r70393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtk.doc.r71776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxdescribe.doc.r69507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxgallery.doc.r49504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ducksay.doc.r70816.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duckuments.doc.r52271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dvdcoll.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynamicnumber.doc.r38726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynblocks.doc.r35193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ean13isbn.doc.r57514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easy.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easy-todo.doc.r32677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easybook.doc.r72897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfig.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfloats.doc.r72699.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyformat.doc.r44543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easylist.doc.r32661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyreview.doc.r38352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebezier.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecclesiastic.doc.r38172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econlipsum.doc.r58390.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecv.doc.r24928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ed.doc.r25231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edichokey.doc.r56223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmargin.doc.r27599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eemeir.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/efbox.doc.r33236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egplot.doc.r20617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ehhline.doc.r54676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/einfart.doc.r70313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elements.doc.r61792.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipsis.doc.r55418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elmath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elocalloc.doc.r42712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elpres.doc.r71385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elzcards.doc.r51894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emarks.doc.r24504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedall.doc.r51177.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedfile.doc.r65528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embrac.doc.r57814.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emo.doc.r66944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emotion.doc.r69834.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emptypage.doc.r18064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emulateapj.doc.r28469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endfloat.doc.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endheads.doc.r43750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotes.doc.r53319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotes-hy.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engpron.doc.r16558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engrec.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enotez.doc.r61490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ensps-colorscheme.doc.r71431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumext.doc.r72861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumitem.doc.r51423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumitem-zref.doc.r21472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/envbig.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enverb.doc.r72137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/environ.doc.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/envlab.doc.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epcqrcode.doc.r70956.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigraph.doc.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigraph-keys.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epiolmec.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eq-pin2corr.doc.r59477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqell.doc.r22931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqlist.doc.r32257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnalign.doc.r43278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqparbox.doc.r45215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/errata.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erw-l3.doc.r61799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esami.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esdiff.doc.r21385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esieecv.doc.r59638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esindex.doc.r71111.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esint.doc.r52240.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esint-type1.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etaremune.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etextools.doc.r20694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etl.doc.r60998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoc.doc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eukdate.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eulerpx.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euromoney.doc.r72221.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/europasscv.doc.r56829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/europecv.doc.r69661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyhook.doc.r35675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everypage.doc.r56694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam.doc.r67600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-lite.doc.r65754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-n.doc.r64674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-randomizechoices.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examdesign.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examplep.doc.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examz.doc.r67303.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exceltex.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/excludeonly.doc.r17262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercise.doc.r35417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisebank.doc.r50448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisepoints.doc.r49590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercises.doc.r55188.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercisesheets.doc.r71063.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exesheet.doc.r69838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exframe.doc.r72595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exp-testopt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expdlist.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/export.doc.r27206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exsheets.doc.r67300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exsol.doc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extract.doc.r52117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ezedits.doc.r72849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facsimile.doc.r21328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/factura.doc.r61697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fail-fast.doc.r67543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/familytree.doc.r63739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyhandout.doc.r46411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancylabel.doc.r46736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancynum.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancypar.doc.r58895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyqr.doc.r72472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyslides.doc.r36263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytabs.doc.r41549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytooltips.doc.r68931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbox.doc.r69041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcolumn.doc.r67729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetchcls.doc.r45245.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fewerfloatpages.doc.r58058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ffcode.doc.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ffslides.doc.r38895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fgruler.doc.r70917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fifo-stack.doc.r33288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figsize.doc.r18784.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontents.doc.r66740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontentsdef.doc.r52208.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filedate.doc.r29529.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fileinfo.doc.r28421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filemod.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fillwith.doc.r72006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fink.doc.r24329.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/finstrut.doc.r21719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fistrum.doc.r70187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fithesis.doc.r70531.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixcmex.doc.r51825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixfoot.doc.r17131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixme.doc.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmetodonotes.doc.r30168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fjodor.doc.r53207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flabels.doc.r17272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flacards.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flagderiv.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flashcards.doc.r62104.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flashmovie.doc.r25768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flexipage.doc.r66614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flipbook.doc.r25584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flippdf.doc.r56782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatbytocbasic.doc.r67945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatflt.doc.r25540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrow.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrowbytocbasic.doc.r67946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowfram.doc.r35291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmtcount.doc.r72583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fn2end.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnbreak.doc.r66615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fncychap.doc.r20710.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fncylab.doc.r52090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnpara.doc.r25607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnpct.doc.r62248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnumprint.doc.r29173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foilhtml.doc.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foliono.doc.r58877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontaxes.doc.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontscale.doc.r72614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontsetup.doc.r72734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontsize.doc.r60161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonttable.doc.r44799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisc.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisx.doc.r42621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnotebackref.doc.r27034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnoterange.doc.r66149.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnpag.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forarray.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foreign.doc.r27819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forloop.doc.r67017.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formlett.doc.r21480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forms16be.doc.r51305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formular.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fragments.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frame.doc.r18312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/framed.doc.r26789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/framedsyntax.doc.r72199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frankenstein.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frege.doc.r27417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/froufrou.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftcap.doc.r17275.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftnxtra.doc.r29652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullblck.doc.r25434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullminipage.doc.r34545.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullwidth.doc.r24684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/functional.doc.r69908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-calligra.doc.r26018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-sueterlin.doc.r26030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fvextra.doc.r72885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fwlw.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/g-brief.doc.r50415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gatherenum.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gauss.doc.r32934.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gcard.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gcite.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gender.doc.r36464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogy-profiles.doc.r69580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genmpage.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gensymb.doc.r64740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getfiledate.doc.r16189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getitems.doc.r39365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gindex.doc.r52311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ginpenc.doc.r24980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitfile-info.doc.r51928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo.doc.r34049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo2.doc.r38913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitlog.doc.r38932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitstatus.doc.r64662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitver.doc.r63920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/globalvals.doc.r49962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gloss.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-danish.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-dutch.doc.r35685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-english.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-estonian.doc.r49928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-extra.doc.r68409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-finnish.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-french.doc.r42873.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-german.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-irish.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-italian.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-magyar.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-norsk.doc.r67141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-nynorsk.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-polish.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-portuges.doc.r36064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-serbian.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-slovene.doc.r51211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-spanish.doc.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmdoc.doc.r21292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmdoc-enhance.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmiflink.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmutils.doc.r24287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmverb.doc.r24288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grabbox.doc.r65223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradient-text.doc.r65567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grading-scheme.doc.r62505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphbox.doc.r46360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicscache.doc.r65318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicx-psmin.doc.r56931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicxbox.doc.r32630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphpaper.doc.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grayhints.doc.r49052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grfpaste.doc.r17354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grid.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grid-system.doc.r32981.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridpapers.doc.r58723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridset.doc.r72056.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridslides.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gs1.doc.r59620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitlogo.doc.r55741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ha-prosper.doc.r59651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hackthefootline.doc.r46494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/halloweenmath.doc.r52602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handin.doc.r48255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handout.doc.r43962.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handoutwithnotes.doc.r62140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hang.doc.r43280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanging.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hardwrap.doc.r21396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harnon-cv.doc.r26543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harpoon.doc.r21327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/he-she.doc.r41359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hebdomon.doc.r72033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-acronym.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-float.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-text.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-title.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hereapplies.doc.r68638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hhtensor.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hideanswer.doc.r63852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/highlightlatex.doc.r58392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/highlightx.doc.r72619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/histogr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitec.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitreport.doc.r58357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hletter.doc.r30002.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobsub.doc.r52810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/homework.doc.r72441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hpsdiss.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/href-ul.doc.r72741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrefhide.doc.r66189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huawei.doc.r72668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvextern.doc.r70795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvindex.doc.r46051.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvlogos.doc.r72538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvpygmentex.doc.r62405.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvqrurl.doc.r71361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hwemoji.doc.r65001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdestopt.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdoc.doc.r68661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdvips.doc.r53197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyper.doc.r17357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperbar.doc.r48147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypernat.doc.r17358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperxmp.doc.r70694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphenat.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/identkey.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/idxcmds.doc.r54554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/idxlayout.doc.r25821.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iexec.doc.r69420.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifallfalse.doc.r60027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iffont.doc.r38823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifmslide.doc.r20727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifmtarg.doc.r47544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifnextok.doc.r23379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifoddpage.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifthenx.doc.r25819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iitem.doc.r29613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/image-gallery.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imakeidx.doc.r42287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/import.doc.r54683.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/incgraph.doc.r70635.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/indextools.doc.r68555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inline-images.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinedef.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinegraphicx.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinelabel.doc.r63853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputenx.doc.r52986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputtrc.doc.r28019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interactiveworkbook.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interfaces.doc.r21474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intopdf.doc.r63987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inversepath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice.doc.r48359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice-class.doc.r49749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice2.doc.r67327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ipsum.doc.r68861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso10303.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodate.doc.r16613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodoc.doc.r59709.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isonums.doc.r17362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isopt.doc.r45509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isorot.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isosafety.doc.r72227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isotope.doc.r23711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/issuulinks.doc.r25742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iwonamath.doc.r71844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jlabels.doc.r24858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmsdelim.doc.r62630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jobname-suffix.doc.r64797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/joinbox.doc.r72239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jslectureplanner.doc.r70443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jsonparse.doc.r72772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jumplines.doc.r37553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jvlisting.doc.r24638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kalendarium.doc.r48744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kantlipsum.doc.r68983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kerntest.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keycommand.doc.r18042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyfloat.doc.r69399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyindex.doc.r50828.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyparse.doc.r60277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyreader.doc.r28195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keystroke.doc.r17992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyval2e.doc.r23698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyvaltable.doc.r65416.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kix.doc.r21606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knowledge.doc.r70594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-moderncvclassic.doc.r25025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-script-sfs.doc.r26137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv.doc.r57721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv-rg.doc.r49064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/korigamik.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ktv-texdata.doc.r27369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend-dev.doc.r71211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3build.doc.r72567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel-dev.doc.r72756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labbook.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labels.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labels4easylist.doc.r51124.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labelschanged.doc.r69400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambdax.doc.r60278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastbib.doc.r70376.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpackage.doc.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpage.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-amsmath-dev.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-base-dev.doc.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-bin-dev.doc.r71362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-context-ppchtex.doc.r66687.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-firstaid-dev.doc.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-graphics-dev.doc.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab-dev.doc.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-tools-dev.doc.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-uni8.doc.r49729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcolors.doc.r49888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexdemo.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexgit.doc.r54811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layouts.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lazylist.doc.r17691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lccaps.doc.r46432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcd.doc.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcg.doc.r31474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leading.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leaflet.doc.r70652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lebhart.doc.r70049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lectures.doc.r53642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lectureslides.doc.r62292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leftidx.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leftindex.doc.r69660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leipzig.doc.r52450.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lengthconvert.doc.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lettre.doc.r54722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lettrine.doc.r72860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lewis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lhelp.doc.r23638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libgreek.doc.r65004.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limap.doc.r44863.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linegoal.doc.r21523.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linop.doc.r41304.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lipsum.doc.r60561.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lisp-on-tex.doc.r38722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listing.doc.r17373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listingsutf8.doc.r53097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listlbls.doc.r67215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listliketab.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listofsymbols.doc.r16134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litebook.doc.r70777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litesolution.doc.r72036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/litetable.doc.r72539.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lkproof.doc.r20021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lmake.doc.r25552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/locality.doc.r20422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logbox.doc.r24499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logical-markup-utils.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logoetalab.doc.r68916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logpap.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longfbox.doc.r39028.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longfigure.doc.r34302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longnamefilelist.doc.r27889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/loops.doc.r30704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lsc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lscapeenhanced.doc.r70967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstaddons.doc.r72068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstfiracode.doc.r49503.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3graph.doc.r45913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3rawobjects.doc.r66619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltablex.doc.r34923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltabptch.doc.r17533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxdockit.doc.r21869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxguidex.doc.r50992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxkeys.doc.r28332.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxnew.doc.r21586.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxtools.doc.r24897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-check-hyphen.doc.r47527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-physical.doc.r59138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatodonotes.doc.r53825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macrolist.doc.r60139.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macroswap.doc.r31498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magaz.doc.r24694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magicnum.doc.r52983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magicwatermark.doc.r72044.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailing.doc.r71862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailmerge.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebarcode.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebase.doc.r41012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebox.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecell.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecirc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecmds.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecookbook.doc.r49311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makedtx.doc.r46702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeglos.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makelabels.doc.r60255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makerobust.doc.r52811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mandi.doc.r70231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manfnt.doc.r54684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manuscript.doc.r36110.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manyind.doc.r49874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfit.doc.r48281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfix.doc.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginnote.doc.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/markdown.doc.r72765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathalpha.doc.r61089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathastext.doc.r72671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathexam.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfam256.doc.r53519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfont.doc.r68241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathgreeks.doc.r71248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maybemath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcaption.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mceinleger.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcexam.doc.r60481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcite.doc.r18173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mciteplus.doc.r31648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdframed.doc.r31075.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/media4svg.doc.r64686.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/media9.doc.r72299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/medstarbeamer.doc.r38828.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/meetingmins.doc.r31878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memexsupp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memory.doc.r30452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mensa-tex.doc.r45997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menu.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menucard.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menukeys.doc.r64314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogox.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metanorma.doc.r55010.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metastr.doc.r56246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/method.doc.r17485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metre.doc.r18489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfirstuc.doc.r64743.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mftinc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mi-solns.doc.r49651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/midpage.doc.r17484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mindflow.doc.r65236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minibox.doc.r30914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minidocument.doc.r43752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minifp.doc.r32559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minimalist.doc.r70302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minipage-marginpar.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minitoc.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minorrevision.doc.r32165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minutes.doc.r42186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mla-paper.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mleftright.doc.r53021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlist.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mmap.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnotes.doc.r63406.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moderncv.doc.r71837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modernposter.doc.r47269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moderntimeline.doc.r55518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modref.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modroman.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modular.doc.r44142.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moloch.doc.r72715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/monofill.doc.r28140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moodle.doc.r65672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moreenum.doc.r24479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morefloats.doc.r37927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morehype.doc.r38815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moresize.doc.r17513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moreverb.doc.r22126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morewrites.doc.r69679.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/movement-arrows.doc.r67270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/movie15.doc.r26473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mparhack.doc.r59066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpostinl.doc.r49559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msc.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msg.doc.r49578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mslapa.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mtgreek.doc.r17967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multenum.doc.r21775.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiaudience.doc.r60688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibbl.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicap.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicolrule.doc.r56366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multidef.doc.r40637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multienv.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiexpand.doc.r45943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multifootnote.doc.r70745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multilang.doc.r49065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiple-choice.doc.r63722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multirow.doc.r72833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multitoc.doc.r71520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mversion.doc.r29370.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwe.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mycv.doc.r26807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mylatex.doc.r56751.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mylatexformat.doc.r21392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nag.doc.r24741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nameauth.doc.r69758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namespc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncclatex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncctools.doc.r51810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/needspace.doc.r29601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newcommand.doc.r18704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newenviron.doc.r29331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfile.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newlfm.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newspaper.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newunicodechar.doc.r47382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newvbtm.doc.r23996.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newverbs.doc.r64833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nfssext-cfr.doc.r72454.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicefilelist.doc.r65842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/niceframe.doc.r36086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicetext.doc.r38914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nidanfloat.doc.r48295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ninecolors.doc.r62006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nlctdoc.doc.r72810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noconflict.doc.r30140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nodepthtext.doc.r72822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noindentafter.doc.r59195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noitcrul.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nolbreaks.doc.r26786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomencl.doc.r61029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomentbl.doc.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/non-decimal-units.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonfloat.doc.r17598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonumonpart.doc.r22114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nopageno.doc.r18128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/normalcolor.doc.r40125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notebeamer.doc.r72554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notespages.doc.r41906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notestex.doc.r45396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notoccite.doc.r18129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nowidow.doc.r24066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nox.doc.r30991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntheorem.doc.r27609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numberedblock.doc.r33109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numname.doc.r18130.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numprint.doc.r27498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numspell.doc.r70936.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocg-p.doc.r28803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocgx.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocgx2.doc.r72300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocr-latex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/octavo.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldstyle.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onlyamsmath.doc.r42927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opcit.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opencolor.doc.r66363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optidef.doc.r50941.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optional.doc.r18131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/options.doc.r39030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orcidlink.doc.r71633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orientation.doc.r57390.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outline.doc.r18360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outliner.doc.r21095.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outlines.doc.r25192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outlining.doc.r45601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overlays.doc.r57866.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overpic.doc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/padcount.doc.r47621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecolor.doc.r66885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecont.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagegrid.doc.r64470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagelayout.doc.r71937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagenote.doc.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagerange.doc.r16915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pageslts.doc.r39164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/palette.doc.r60119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pangram.doc.r66300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paper.doc.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papercdcase.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papermas.doc.r66835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papertex.doc.r19230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paracol.doc.r72651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parades.doc.r40042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paralist.doc.r43021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paresse.doc.r59228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parnotes.doc.r71505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parsa.doc.r54840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parselines.doc.r21475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-cours.doc.r55859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-cv.doc.r32263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pas-tableur.doc.r72283.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/passopt.doc.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patchcmd.doc.r41379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pauldoc.doc.r16005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pawpict.doc.r21629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbalance.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbox.doc.r24807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbsheet.doc.r24830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdf14.doc.r17583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfannotations.doc.r68958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcol.doc.r64469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcolmk.doc.r52912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcomment.doc.r49047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcprot.doc.r18735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmarginpar.doc.r23492.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfoverlay.doc.r64210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpagediff.doc.r37946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpc.doc.r68610.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpc-movie.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfprivacy.doc.r45985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfrender.doc.r69058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfreview.doc.r50100.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfscreen.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfslide.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfsync.doc.r20373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfwin.doc.r68667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfx.doc.r71681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pecha.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perltex.doc.r52162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/permute.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/petiteannonce.doc.r25915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmath-xfp.doc.r59268.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfcc.doc.r60731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfextendedabstract.doc.r60732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phffullpagefigure.doc.r41857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfnote.doc.r60733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfparen.doc.r41859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfqit.doc.r60734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfquotetext.doc.r41869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfsvnwatermark.doc.r41870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfthm.doc.r60735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philex.doc.r36396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phonenumbers.doc.r63774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/photo.doc.r18739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/photobook.doc.r71843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/picture.doc.r54867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piff.doc.r21894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkgloader.doc.r47486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeins.doc.r19848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plantslabels.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plates.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plweb.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmboxdraw.doc.r53046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynom.doc.r44832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynomial.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polytable.doc.r55837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postcards.doc.r21641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poster-mac.doc.r18305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postnotes.doc.r72850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot.doc.r59272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppr-prv.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppt-slides.doc.r72584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/practicalreports.doc.r52312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/precattl.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prelim2e.doc.r57000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preprint.doc.r30447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pressrelease.doc.r35147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prettyref.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prettytok.doc.r66884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preview.doc.r71662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/printlen.doc.r19847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/probsoln.doc.r44783.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/profmaquette.doc.r72757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/program.doc.r44214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/progress.doc.r19519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/progressbar.doc.r33822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/projlib.doc.r72789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proofread.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/properties.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prosper.doc.r33033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/protex.doc.r41633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/protocol.doc.r25562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfragx.doc.r26243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstool.doc.r46393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstring.doc.r42857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxgreeks.doc.r21838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pygmentex.doc.r64131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pynotebook.doc.r70818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/python.doc.r60162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythonimmediate.doc.r69487.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/q-and-a.doc.r69164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qcm.doc.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qstest.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsymbols.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quicktype.doc.r42183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quiz2socrative.doc.r52276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotchap.doc.r56926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quoting.doc.r32818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotmark.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ran_toks.doc.r59515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randexam.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randintlist.doc.r72646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randtext.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rccol.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs-multi.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcsinfo.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/readablecv.doc.r67986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/readarray.doc.r60540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realboxes.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipe.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipebook.doc.r37026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipecard.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rectopma.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refcheck.doc.r29128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refenums.doc.r44131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reflectgraphics.doc.r40612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refman.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refstyle.doc.r69680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regcount.doc.r19979.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regexpatch.doc.r58668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/register.doc.r54485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regstats.doc.r66795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/relenc.doc.r22050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/relsize.doc.r30707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repeatindex.doc.r24305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repltext.doc.r56433.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rescansync.doc.r63856.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resmes.doc.r65375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/responsive.doc.r71800.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/returntogrid.doc.r48485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rgltxdoc.doc.r53858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rjlparshap.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rlepsf.doc.r19082.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rmpage.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robust-externalize.doc.r70653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robustcommand.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robustindex.doc.r49877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbar.doc.r25005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbarpagenumber.doc.r36236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanneg.doc.r20087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romannum.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rorlink.doc.r67461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rotfloat.doc.r18292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rotpages.doc.r18740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roundbox.doc.r29675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rterface.doc.r30084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rtkinenc.doc.r20003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rulerbox.doc.r50984.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rulercompass.doc.r32392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/runcode.doc.r69471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rvwrite.doc.r19614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sanitize-umlaut.doc.r67126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauerj.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/saveenv.doc.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savefnmark.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savetrees.doc.r40525.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scale.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scalebar.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scalerel.doc.r42809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scaletextbullet.doc.r72834.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scanpages.doc.r42633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schedule.doc.r51805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schooldocs.doc.r69659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scontents.doc.r71533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrambledenvs.doc.r60615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrhack.doc.r72608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrlayer-fancyhdr.doc.r63844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrlttr2copy.doc.r56733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrwfile.doc.r66872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sdaps.doc.r65345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sdrt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/secdot.doc.r20208.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/secnum.doc.r61813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectionbox.doc.r37749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectionbreak.doc.r50339.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectsty.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seealso.doc.r43595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selectp.doc.r20185.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selinput.doc.r53098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantex.doc.r65679.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantic.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantic-markup.doc.r53607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplanner.doc.r56841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semioneside.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semproc.doc.r37568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semtex.doc.r56530.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sepfootnotes.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seqsplit.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesstime.doc.r49750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setspaceenhanced.doc.r72852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sf298.doc.r41653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sffms.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadethm.doc.r53350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadow.doc.r20312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shadowtext.doc.r26522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shapepar.doc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shdoc.doc.r41991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shipunov.doc.r52334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shorttoc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/show2e.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showcharinbox.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showdim.doc.r28918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showexpl.doc.r57414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showlabels.doc.r63940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidecap.doc.r65618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotes.doc.r72264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotesplus.doc.r69176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/silence.doc.r27028.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sillypage.doc.r71889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sim-os-menus.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecd.doc.r29260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecv.doc.r35537.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleinvoice.doc.r45673.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplivre.doc.r70314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sitem.doc.r22136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skb.doc.r22781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skdoc.doc.r56950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeldoc.doc.r57922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeycommand.doc.r24652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skeyval.doc.r30560.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skills.doc.r56734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skrapport.doc.r52412.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/slantsc.doc.r25007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smalltableof.doc.r20333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smart-eqn.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartref.doc.r20311.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartunits.doc.r39592.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snapshot.doc.r56735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snaptodo.doc.r70676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snotez.doc.r61992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soulpos.doc.r60772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spacingtricks.doc.r69048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spark-otf.doc.r62481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sparklines.doc.r42821.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spelatex.doc.r72763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sphack.doc.r20842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitindex.doc.r39766.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spot.doc.r22408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spotcolor.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spreadtab.doc.r68256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spverbatim.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srbook-mem.doc.r45818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srcltx.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sseq.doc.r31585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sslides.doc.r32293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stackengine.doc.r60019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standalone.doc.r64677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standardsectioning.doc.r71479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/starray.doc.r70796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdclsdv.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdpage.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stealcaps.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stex.doc.r68569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stocksize.doc.r72853.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/storebox.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/storecmd.doc.r24431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringstrings.doc.r57097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sttools.doc.r60736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stubs.doc.r70341.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/studenthandouts.doc.r43516.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/styledcmd.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subdepth.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subdocs.doc.r51480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqn.doc.r71864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqnarray.doc.r71865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfigmat.doc.r20308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfigure.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfiles.doc.r56977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfloat.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/substr.doc.r16117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/supertabular.doc.r71854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suppose.doc.r59281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svg.doc.r70626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svgcolor.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-multi.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-prov.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svninfo.doc.r62157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swfigure.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swungdash.doc.r64204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntax.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synthslant.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntrace.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synttree.doc.r16252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabbing.doc.r59715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabfigures.doc.r25202.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tableaux.doc.r42413.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablefootnote.doc.r32804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tableof.doc.r72313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablists.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabls.doc.r17255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablvar.doc.r72007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabstackengine.doc.r46848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabto-ltx.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabu.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularborder.doc.r17885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularcalc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularew.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularray.doc.r69906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabulary.doc.r71463.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagging.doc.r52064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagpair.doc.r42138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagpdf.doc.r72901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/talk.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tamefloats.doc.r27345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tangocolors.doc.r66733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tasks.doc.r61541.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tblr-extras.doc.r71623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tcldoc.doc.r22018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tcolorbox.doc.r72624.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tdclock.doc.r33043.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/technics.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ted.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/telprint.doc.r71914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/templatetools.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal.doc.r22514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termlist.doc.r18923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termsim.doc.r61414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testhyphens.doc.r38928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testidx.doc.r60966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-label.doc.r16372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-locale.doc.r48500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texmate.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texments.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texpower.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texshade.doc.r69371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texsurgery.doc.r59885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textcsc.doc.r67193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textfit.doc.r20591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textmerg.doc.r20677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textpos.doc.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textualicomma.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texvc.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/theoremref.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thinsp.doc.r39669.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threadcol.doc.r28754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeparttable.doc.r17383.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeparttablex.doc.r34206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumb.doc.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumbs.doc.r33134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumby.doc.r16736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ticket.doc.r42280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timeop.doc.r72875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipauni.doc.r65817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlecaps.doc.r63020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlepic.doc.r43497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titleref.doc.r18729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titlesec.doc.r68677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titling.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/to-be-determined.doc.r72527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocbibind.doc.r20085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocdata.doc.r69512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocloft.doc.r53364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocvsec2.doc.r33146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todo.doc.r17746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todonotes.doc.r69319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tokcycle.doc.r60320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tokenizer.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toolbox.doc.r32260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topfloat.doc.r19084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topiclongtable.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totalcount.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totcount.doc.r21178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totpages.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tramlines.doc.r71842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translations.doc.r61896.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/transparent.doc.r64852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/treesvr.doc.r71382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trfsigns.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trimspaces.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trivfloat.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trsym.doc.r18732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/truncate.doc.r18921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tucv.doc.r20680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turnthepage.doc.r72902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tutodoc.doc.r72719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoinone.doc.r17024.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoup.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txgreeks.doc.r21839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/type1cm.doc.r21820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typed-checklist.doc.r63445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typeface.doc.r27046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typoaid.doc.r44238.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typog.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typogrid.doc.r24994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uassign.doc.r38459.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucs.doc.r68759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uebungsblatt.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umoline.doc.r19085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underlin.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underoverlap.doc.r29019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undolabl.doc.r65846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-titlepage.doc.r68917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-math-input.doc.r69591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicodefonttable.doc.r71477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unifront.doc.r67054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unisc.doc.r63178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitconv.doc.r55060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/units.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unravel.doc.r69308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/updatemarks.doc.r72489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upmethodology.doc.r64613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upquote.doc.r26059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uri.doc.r48602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/useclass.doc.r72455.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ushort.doc.r32261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uspace.doc.r63123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utf8add.doc.r61074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwmslide.doc.r27354.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/variablelm.doc.r60014.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varindex.doc.r32262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varsfromjobname.doc.r44154.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varwidth.doc.r24104.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vcell.doc.r59039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vdmlisting.doc.r56905.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbasef.doc.r21922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbatimbox.doc.r67865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbatimcopy.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbdef.doc.r17177.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verbments.doc.r23670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifiche.doc.r69726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifycommand.doc.r72180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/version.doc.r21920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/versions.doc.r21921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/versonotes.doc.r69249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vertbars.doc.r49429.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vgrid.doc.r32457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vhistory.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vmargin.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/volumes.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vpe.doc.r26039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vruler.doc.r21598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vtable.doc.r51126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vwcol.doc.r36254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wallcalendar.doc.r45568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wallpaper.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/warning.doc.r66616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/warpcol.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/was.doc.r64691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/webquiz.doc.r58808.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/whatsnote.doc.r72823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widetable.doc.r53409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widows-and-orphans.doc.r66753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/williams.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/willowtreebook.doc.r60638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/withargs.doc.r52641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordcount.doc.r46165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordlike.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/worksheet.doc.r48423.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapfig.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapfig2.doc.r70838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapstuff.doc.r64058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/writeongrid.doc.r72768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wtref.doc.r69214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xargs.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xassoccnt.doc.r61112.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xbmks.doc.r53448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcntperchap.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-material.doc.r42289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-solarized.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcomment.doc.r72759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcookybooky.doc.r36435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcpdftips.doc.r50449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xdoc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xellipsis.doc.r47546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfakebold.doc.r68929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfor.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xhfill.doc.r22575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xifthen.doc.r38929.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ximera.doc.r71243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xint.doc.r63562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xint-regression.doc.r71443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkcdcolors.doc.r67895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkeymask.doc.r69223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xltabular.doc.r72846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmpincl.doc.r60593.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xnewcommand.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xoptarg.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpatch.doc.r69768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpeek.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xprintlen.doc.r35928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpunctuate.doc.r67918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xreview.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xsavebox.doc.r64049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xsim.doc.r61988.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xstring.doc.r68015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xtab.doc.r23347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xurl.doc.r61553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xwatermark.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xytree.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yafoot.doc.r48568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yagusylo.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yaletter.doc.r42830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ycbook.doc.r46201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ydoc.doc.r64887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yplan.doc.r34398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zebra-goodies.doc.r66630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zed-csp.doc.r17258.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zennote.doc.r65549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ziffer.doc.r32279.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref.doc.r68278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-check.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-clever.doc.r72876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-vario.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zugferd.doc.r72877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zwgetfdate.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zwpagelayout.doc.r63074.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/abspos.source.r64465.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abstract.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accessibility.source.r55777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accsupp.source.r53052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/achemso.source.r69638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acronym.source.r72324.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acroterm.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialangle.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/actuarialsymbol.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addlines.source.r49326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjmulticol.source.r63320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adjustbox.source.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adrconv.source.r46817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alertmessage.source.r38055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alnumsec.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alphalph.source.r53087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altfont.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/altsubsup.source.r62738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amsaddr.source.r64357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anima.source.r72895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/animate.source.r72548.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/answers.source.r35032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/appendix.source.r53718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apptools.source.r28400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arcs.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraycols.source.r71168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arraysort.source.r31576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arydshln.source.r50084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asciilist.source.r49060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/askinclude.source.r54725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atenddvi.source.r56922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/atendofenv.source.r62164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile.source.r42099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autonum.source.r36084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autopdf.source.r32377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/avremu.source.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/axessibility.source.r57105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/background.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/basicarith.source.r35460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerappendixnote.source.r55732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamercolorthemeowl.source.r40105.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamersubframe.source.r23510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-cuerna.source.r42161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-gotham.source.r72808.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-metropolis.source.r43031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-saintpetersburg.source.r45877.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamertheme-trigon.source.r65985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bearwear.source.r54826.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beton.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bewerbung.source.r61632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bez123.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bigfoot.source.r38248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bithesis.source.r72491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bizcard.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blindtext.source.r25039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blowup.source.r67640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bnumexpr.source.r59244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boites.source.r32235.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bookcover.source.r72461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booklet.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boolexpr.source.r17830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bophook.source.r17062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxedminipage.source.r54827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boxhandler.source.r28031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breakurl.source.r29901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bubblesort.source.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bullcntr.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calcage.source.r27725.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculator.source.r64424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cals.source.r43003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/canoniclayout.source.r64889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/capt-of.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/captcont.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfile.source.r53084.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catchfilebetweentags.source.r21476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catechis.source.r59998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catppuccinpalette.source.r72060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccaption.source.r23443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cclicenses.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd.source.r34452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cd-cover.source.r17121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdcmd.source.r60742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cdpbundl.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cellprops.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/centerlastline.source.r56644.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changebar.source.r71847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changepage.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/changes.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chappg.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chapterfolder.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cheatsheet.source.r45069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chextras.source.r27118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/childdoc.source.r49543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chletter.source.r20060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circ.source.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classpack.source.r55218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clefval.source.r55985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleveref-usedon.source.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clicks.source.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clistmap.source.r61811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrdblpg.source.r47511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrstrip.source.r60363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmdtrack.source.r28910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codepage.source.r51502.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codesection.source.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collcell.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collectbox.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colophon.source.r47913.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/color-edits.source.r56707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colordoc.source.r18270.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorwav.source.r67012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorweb.source.r31490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combine.source.r19361.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commado.source.r38875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commedit.source.r50116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/competences.source.r47573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/constants.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/continue.source.r49449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contour.source.r18950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contracard.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conv-xkv.source.r43558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooking-units.source.r65241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cool.source.r67013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coollist.source.r67048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolstr.source.r67015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coolthms.source.r29062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cooltooltips.source.r60201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coop-writing.source.r61607.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coordsys.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/copyedit.source.r37928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/count1to.source.r71526.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counterz.source.r67335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/counttexruns.source.r27576.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coverpage.source.r63509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cprotect.source.r21209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossreference.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crumbs.source.r64602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csvmerge.source.r51857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cuisine.source.r34453.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currency.source.r48990.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currfile.source.r70650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/currvita.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cutwin.source.r60901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cyber.source.r46776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cybercic.source.r37659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/darkmode.source.r64271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashbox.source.r23425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashrule.source.r29579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dashundergaps.source.r58150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datatool.source.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datax.source.r61772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dateiliste.source.r27974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datenumber.source.r61761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datestamp.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime.source.r36650.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2.source.r63102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bahasai.source.r46287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-basque.source.r47064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-breton.source.r52647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-bulgarian.source.r47031.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-catalan.source.r47032.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-croatian.source.r36682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-czech.source.r47033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-danish.source.r47034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-dutch.source.r47355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-en-fulltext.source.r36705.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-english.source.r52479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-esperanto.source.r47356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-estonian.source.r47565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-finnish.source.r47047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-french.source.r56393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-galician.source.r47631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-german.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-greek.source.r47533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-hebrew.source.r47534.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-icelandic.source.r65213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-irish.source.r47632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-it-fulltext.source.r54779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-italian.source.r37146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-latin.source.r47748.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-lsorbian.source.r47749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-magyar.source.r48266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-norsk.source.r48267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-polish.source.r48456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-portuges.source.r48457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-romanian.source.r56394.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-russian.source.r49345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-samin.source.r49346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-scottish.source.r52101.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-serbian.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovak.source.r52281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-slovene.source.r52282.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-spanish.source.r45785.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-swedish.source.r36700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-turkish.source.r52331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-ukrainian.source.r47552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-usorbian.source.r52375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/datetime2-welsh.source.r52553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dbshow.source.r61634.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/debate.source.r64846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimal.source.r23374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decimalcomma.source.r69251.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decorule.source.r55230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/defoldfonts.source.r68234.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimtxt.source.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/denisbdoc.source.r70592.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagbox.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dialogl.source.r28946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/didactic.source.r70901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dimnum.source.r58774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dinbrief.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtytalk.source.r20520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dnaseq.source.r17194.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doclicense.source.r68441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmfp.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docmute.source.r25741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docshots.source.r69676.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doctools.source.r34474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/documentation.source.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doibanner.source.r71919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotarrow.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dotseqn.source.r17195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/download.source.r52257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dox.source.r46011.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dprogress.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drac.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftcopy.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/draftwatermark.source.r70393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dtxdescribe.source.r69507.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ducksay.source.r70816.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duckuments.source.r52271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynamicnumber.source.r38726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easybook.source.r72897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfig.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyfloats.source.r72699.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easyreview.source.r38352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebezier.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecclesiastic.source.r38172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econlipsum.source.r58390.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecv.source.r24928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ed.source.r25231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmargin.source.r27599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eemeir.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/efbox.source.r33236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egplot.source.r20617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipsis.source.r55418.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elmath.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elocalloc.source.r42712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elzcards.source.r51894.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emarks.source.r24504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedall.source.r51177.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/embedfile.source.r65528.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emo.source.r66944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emptypage.source.r18064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endfloat.source.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endheads.source.r43750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endnotes-hy.source.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engpron.source.r16558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engrec.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ensps-colorscheme.source.r71431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumext.source.r72861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enumitem-zref.source.r21472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enverb.source.r72137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/environ.source.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/envlab.source.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epcqrcode.source.r70956.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigraph.source.r54857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epiolmec.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eq-pin2corr.source.r59477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqlist.source.r32257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnalign.source.r43278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqparbox.source.r45215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/errata.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erw-l3.source.r61799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esdiff.source.r21385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esieecv.source.r59638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esint.source.r52240.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etaremune.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etextools.source.r20694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etl.source.r60998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoc.source.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eukdate.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyhook.source.r35675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everypage.source.r56694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exam-n.source.r64674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examdesign.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/examz.source.r67303.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercise.source.r35417.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exercises.source.r55188.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exesheet.source.r69838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exframe.source.r72595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exp-testopt.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expdlist.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/export.source.r27206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exsol.source.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extract.source.r52117.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facsimile.source.r21328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/factura.source.r61697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fail-fast.source.r67543.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/familytree.source.r63739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancylabel.source.r46736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancynum.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancypar.source.r58895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytabs.source.r41549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancytooltips.source.r68931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcolumn.source.r67729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fetchcls.source.r45245.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fewerfloatpages.source.r58058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ffcode.source.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fgruler.source.r70917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fifo-stack.source.r33288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontents.source.r66740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filecontentsdef.source.r52208.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filedate.source.r29529.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fileinfo.source.r28421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fillwith.source.r72006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fink.source.r24329.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/finstrut.source.r21719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fistrum.source.r70187.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fithesis.source.r70531.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixcmex.source.r51825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixme.source.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmetodonotes.source.r30168.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flabels.source.r17272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flagderiv.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flashcards.source.r62104.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flexipage.source.r66614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flippdf.source.r56782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatbytocbasic.source.r67945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatflt.source.r25540.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrow.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/floatrowbytocbasic.source.r67946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowfram.source.r35291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmp.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fmtcount.source.r72583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnbreak.source.r66615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnumprint.source.r29173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foilhtml.source.r61937.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontaxes.source.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontsize.source.r60161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fonttable.source.r44799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisc.source.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footmisx.source.r42621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnoterange.source.r66149.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnpag.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forarray.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/foreign.source.r27819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forloop.source.r67017.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forms16be.source.r51305.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formular.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/framedsyntax.source.r72199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/frankenstein.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/froufrou.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftnxtra.source.r29652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullblck.source.r25434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fullminipage.source.r34545.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-calligra.source.r26018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fundus-sueterlin.source.r26030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fvextra.source.r72885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/g-brief.source.r50415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gatherenum.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gcite.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gender.source.r36464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genmpage.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gensymb.source.r64740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getitems.source.r39365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ginpenc.source.r24980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitfile-info.source.r51928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitstatus.source.r64662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-danish.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-dutch.source.r35685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-english.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-estonian.source.r49928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-extra.source.r68409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-finnish.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-french.source.r42873.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-german.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-irish.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-italian.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-magyar.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-norsk.source.r67141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-nynorsk.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-polish.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-portuges.source.r36064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-serbian.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-slovene.source.r51211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glossaries-spanish.source.r35665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmdoc-enhance.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grabbox.source.r65223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grading-scheme.source.r62505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphbox.source.r46360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicscache.source.r65318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicx-psmin.source.r56931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicxbox.source.r32630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphpaper.source.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grayhints.source.r49052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grid.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridpapers.source.r58723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gridset.source.r72056.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gs1.source.r59620.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitlogo.source.r55741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ha-prosper.source.r59651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/halloweenmath.source.r52602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/handoutwithnotes.source.r62140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hanging.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hardwrap.source.r21396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-acronym.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-float.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-math.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-text.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-title.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hhtensor.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/histogr.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitreport.source.r58357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hpsdiss.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/href-ul.source.r72741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hrefhide.source.r66189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huawei.source.r72668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hypdoc.source.r68661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyper.source.r17357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperbar.source.r48147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyperxmp.source.r70694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyphenat.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/idxlayout.source.r25821.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iexec.source.r69420.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifallfalse.source.r60027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iffont.source.r38823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifmtarg.source.r47544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifnextok.source.r23379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifoddpage.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iitem.source.r29613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imakeidx.source.r42287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/indextools.source.r68555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inlinedef.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputenx.source.r52986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputtrc.source.r28019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interfaces.source.r21474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/intopdf.source.r63987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inversepath.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/invoice2.source.r67327.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iso10303.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodate.source.r16613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isodoc.source.r59709.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isorot.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isotope.source.r23711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/issuulinks.source.r25742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iwonamath.source.r71844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmsdelim.source.r62630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jvlisting.source.r24638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kalendarium.source.r48744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kantlipsum.source.r68983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kerntest.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keycommand.source.r18042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyfloat.source.r69399.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyindex.source.r50828.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyparse.source.r60277.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keyvaltable.source.r65416.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knowledge.source.r70594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv.source.r57721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/komacv-rg.source.r49064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ktv-texdata.source.r27369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3backend-dev.source.r71211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3build.source.r72567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3kernel-dev.source.r72756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labbook.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labels.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/labelschanged.source.r69400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambdax.source.r60278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpackage.source.r34481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lastpage.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-amsmath-dev.source.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-base-dev.source.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-firstaid-dev.source.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-graphics-dev.source.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-lab-dev.source.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-tools-dev.source.r72738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexcolors.source.r49888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexdemo.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexgit.source.r54811.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/layouts.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lccaps.source.r46432.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcd.source.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lcg.source.r31474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leading.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leaflet.source.r70652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leftidx.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leipzig.source.r52450.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lengthconvert.source.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lettrine.source.r72860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lhelp.source.r23638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/libgreek.source.r65004.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limap.source.r44863.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linegoal.source.r21523.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lipsum.source.r60561.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listingsutf8.source.r53097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listlbls.source.r67215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listliketab.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listofsymbols.source.r16134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lmake.source.r25552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/locality.source.r20422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logbox.source.r24499.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logpap.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longfigure.source.r34302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longnamefilelist.source.r27889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lscapeenhanced.source.r70967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstaddons.source.r72068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3rawobjects.source.r66619.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ltxnew.source.r21586.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatodonotes.source.r53825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macrolist.source.r60139.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/macroswap.source.r31498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/magicnum.source.r52983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailing.source.r71862.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mailmerge.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebase.source.r41012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makebox.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecell.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makecmds.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makedtx.source.r46702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makelabels.source.r60255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mandi.source.r70231.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manfnt.source.r54684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/manuscript.source.r36110.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfit.source.r48281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginfix.source.r55064.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/marginnote.source.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/markdown.source.r72765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathastext.source.r72671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathexam.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfont.source.r68241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathgreeks.source.r71248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcaption.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcite.source.r18173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdframed.source.r31075.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/media9.source.r72299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/meetingmins.source.r31878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memory.source.r30452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menu.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menucard.source.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/menukeys.source.r64314.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogox.source.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metastr.source.r56246.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/method.source.r17485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metre.source.r18489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfirstuc.source.r64743.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mftinc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mi-solns.source.r49651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mindflow.source.r65236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minibox.source.r30914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minidocument.source.r43752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minifp.source.r32559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minipage-marginpar.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minutes.source.r42186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mleftright.source.r53021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlist.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnotes.source.r63406.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moderntimeline.source.r55518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modref.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modroman.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moloch.source.r72715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/monofill.source.r28140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moodle.source.r65672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morefloats.source.r37927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morehype.source.r38815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moresize.source.r17513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moreverb.source.r22126.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/morewrites.source.r69679.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mparhack.source.r59066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpostinl.source.r49559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msg.source.r49578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mtgreek.source.r17967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiaudience.source.r60688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multibbl.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicap.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multicolrule.source.r56366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multidef.source.r40637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multienv.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiexpand.source.r45943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multilang.source.r49065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multirow.source.r72833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multitoc.source.r71520.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mversion.source.r29370.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mwe.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mycv.source.r26807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mylatexformat.source.r21392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nag.source.r24741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nameauth.source.r69758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namespc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ncctools.source.r51810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/needspace.source.r29601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfile.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newlfm.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newspaper.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newunicodechar.source.r47382.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newvbtm.source.r23996.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newverbs.source.r64833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nfssext-cfr.source.r72454.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicefilelist.source.r65842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/niceframe.source.r36086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicetext.source.r38914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nidanfloat.source.r48295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noindentafter.source.r59195.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/noitcrul.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomencl.source.r61029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nomentbl.source.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonfloat.source.r17598.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nonumonpart.source.r22114.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/normalcolor.source.r40125.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notes.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/notespages.source.r41906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nowidow.source.r24066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntheorem.source.r27609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numprint.source.r27498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ocgx.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/octavo.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oldstyle.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onlyamsmath.source.r42927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opcit.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/orcidlink.source.r71633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outlining.source.r45601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overpic.source.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/padcount.source.r47621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecolor.source.r66885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagecont.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagegrid.source.r64470.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pagenote.source.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pageslts.source.r39164.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/palette.source.r60119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pangram.source.r66300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paper.source.r34521.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papercdcase.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papermas.source.r66835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papertex.source.r19230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paracol.source.r72651.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paralist.source.r43021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/paresse.source.r59228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parselines.source.r21475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patch.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/patchcmd.source.r41379.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pauldoc.source.r16005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pawpict.source.r21629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbalance.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbox.source.r24807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pbsheet.source.r24830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdf14.source.r17583.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcol.source.r64469.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcprot.source.r18735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfoverlay.source.r64210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpc-movie.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfprivacy.source.r45985.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfrender.source.r69058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfx.source.r71681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perltex.source.r52162.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/permute.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmath-xfp.source.r59268.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfcc.source.r60731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfextendedabstract.source.r60732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phffullpagefigure.source.r41857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfnote.source.r60733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfparen.source.r41859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfqit.source.r60734.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfquotetext.source.r41869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfsvnwatermark.source.r41870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/phfthm.source.r60735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/photo.source.r18739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/picture.source.r54867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plweb.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmboxdraw.source.r53046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynom.source.r44832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polynomial.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polytable.source.r55837.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postnotes.source.r72850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot.source.r59272.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppr-prv.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ppt-slides.source.r72584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prelim2e.source.r57000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preprint.source.r30447.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pressrelease.source.r35147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prettyref.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/preview.source.r71662.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/probsoln.source.r44783.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/projlib.source.r72789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proofread.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/protocol.source.r25562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfragx.source.r26243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxgreeks.source.r21838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qcm.source.r63833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qstest.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsymbols.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotchap.source.r56926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quoting.source.r32818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quotmark.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ran_toks.source.r59515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rccol.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs-multi.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcsinfo.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realboxes.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recipecard.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rectopma.source.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reflectgraphics.source.r40612.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refman.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/refstyle.source.r69680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regcount.source.r19979.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regexpatch.source.r58668.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/register.source.r54485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regstats.source.r66795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/relenc.source.r22050.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repltext.source.r56433.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resmes.source.r65375.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rgltxdoc.source.r53858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rjlparshap.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robustcommand.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbar.source.r25005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romanbarpagenumber.source.r36236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/romannum.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rorlink.source.r67461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rotfloat.source.r18292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rtkinenc.source.r20003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rulercompass.source.r32392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sauerj.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savefnmark.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/savetrees.source.r40525.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scale.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scalebar.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schedule.source.r51805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schooldocs.source.r69659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scontents.source.r71533.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrambledenvs.source.r60615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrhack.source.r72608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrlayer-fancyhdr.source.r63844.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrwfile.source.r66872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sdaps.source.r65345.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/secnum.source.r61813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sectsty.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seealso.source.r43595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selinput.source.r53098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semantic.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplanner.source.r56841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semioneside.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semproc.source.r37568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seqsplit.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesstime.source.r49750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setspaceenhanced.source.r72852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sf298.source.r41653.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sffms.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shdoc.source.r41991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shorttoc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/show2e.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showcharinbox.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showexpl.source.r57414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showlabels.source.r63940.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidecap.source.r65618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotes.source.r72264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sidenotesplus.source.r69176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/silence.source.r27028.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sillypage.source.r71889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecd.source.r29260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplecv.source.r35537.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sitem.source.r22136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skb.source.r22781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skdoc.source.r56950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skrapport.source.r52412.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/slantsc.source.r25007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smart-eqn.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/snapshot.source.r56735.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spacingtricks.source.r69048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spelatex.source.r72763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splitindex.source.r39766.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spot.source.r22408.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spverbatim.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srcltx.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sseq.source.r31585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stack.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standalone.source.r64677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/standardsectioning.source.r71479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdclsdv.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stdpage.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stealcaps.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stex.source.r68569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/storebox.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stringstrings.source.r57097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sttools.source.r60736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/styledcmd.source.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subdepth.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqn.source.r71864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subeqnarray.source.r71865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfigure.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfiles.source.r56977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfloat.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/supertabular.source.r71854.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svg.source.r70626.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-multi.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svn-prov.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/svninfo.source.r62157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swfigure.source.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synthslant.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntrace.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synttree.source.r16252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabbing.source.r59715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabfigures.source.r25202.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablefootnote.source.r32804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tableof.source.r72313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablists.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablvar.source.r72007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabu.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularborder.source.r17885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabularew.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabulary.source.r71463.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tagpdf.source.r72901.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/talk.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tangocolors.source.r66733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tcldoc.source.r22018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ted.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/telprint.source.r71914.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/templatetools.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termcal.source.r22514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termlist.source.r18923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termsim.source.r61414.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testhyphens.source.r38928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/testidx.source.r60966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-label.source.r16372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-locale.source.r48500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texmate.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texments.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texpower.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texshade.source.r69371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textfit.source.r20591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textmerg.source.r20677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textpos.source.r63967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textualicomma.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texvc.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threadcol.source.r28754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumb.source.r16549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumbs.source.r33134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipauni.source.r65817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/titling.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/to-be-determined.source.r72527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocbibind.source.r20085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocdata.source.r69512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocloft.source.r53364.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tocvsec2.source.r33146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todo.source.r17746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/todonotes.source.r69319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toolbox.source.r32260.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totalcount.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totcount.source.r21178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/totpages.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/transparent.source.r64852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trfsigns.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trimspaces.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trivfloat.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trsym.source.r18732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tucv.source.r20680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twoup.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/txgreeks.source.r21839.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/type1cm.source.r21820.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typed-checklist.source.r63445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typeface.source.r27046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typog.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typogrid.source.r24994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucs.source.r68759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umoline.source.r19085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underlin.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undolabl.source.r65846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uni-titlepage.source.r68917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicodefonttable.source.r71477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unisc.source.r63178.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/units.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unravel.source.r69308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upquote.source.r26059.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uri.source.r48602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/useclass.source.r72455.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ushort.source.r32261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varindex.source.r32262.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifiche.source.r69726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/verifycommand.source.r72180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/versonotes.source.r69249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vgrid.source.r32457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vmargin.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/volumes.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vwcol.source.r36254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/warpcol.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/was.source.r64691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widetable.source.r53409.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/widows-and-orphans.source.r66753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordlike.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapfig2.source.r70838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wrapstuff.source.r64058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xargs.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xbmks.source.r53448.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-material.source.r42289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor-solarized.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcookybooky.source.r36435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcpdftips.source.r50449.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xdoc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xellipsis.source.r47546.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfor.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ximera.source.r71243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xint.source.r63562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmpincl.source.r60593.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpatch.source.r69768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpeek.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpunctuate.source.r67918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xsavebox.source.r64049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xtab.source.r23347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yafoot.source.r48568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yagusylo.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yaletter.source.r42830.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ydoc.source.r64887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zebra-goodies.source.r66630.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref.source.r68278.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-check.source.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-clever.source.r72876.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zref-vario.source.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zugferd.source.r72877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abspos.source.r64465.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abstract.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accessibility.source.r55777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accsupp.source.r53052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/achemso.source.r69638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acronym.source.r72324.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acroterm.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialangle.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/actuarialsymbol.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addlines.source.r49326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjmulticol.source.r63320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adjustbox.source.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adrconv.source.r46817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alertmessage.source.r38055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alnumsec.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alphalph.source.r53087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altfont.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/altsubsup.source.r62738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amsaddr.source.r64357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anima.source.r72895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/animate.source.r72548.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/answers.source.r35032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/appendix.source.r53718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apptools.source.r28400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arcs.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraycols.source.r71168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arraysort.source.r31576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arydshln.source.r50084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asciilist.source.r49060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/askinclude.source.r54725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atenddvi.source.r56922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/atendofenv.source.r62164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile.source.r42099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autonum.source.r36084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autopdf.source.r32377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/avremu.source.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/axessibility.source.r57105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/background.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/basicarith.source.r35460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerappendixnote.source.r55732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamercolorthemeowl.source.r40105.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamersubframe.source.r23510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-cuerna.source.r42161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-gotham.source.r72808.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-metropolis.source.r43031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-saintpetersburg.source.r45877.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamertheme-trigon.source.r65985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bearwear.source.r54826.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beton.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bewerbung.source.r61632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bez123.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bigfoot.source.r38248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bithesis.source.r72491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bizcard.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blindtext.source.r25039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blowup.source.r67640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bnumexpr.source.r59244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boites.source.r32235.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bookcover.source.r72461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booklet.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boolexpr.source.r17830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bophook.source.r17062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxedminipage.source.r54827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boxhandler.source.r28031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breakurl.source.r29901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bubblesort.source.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bullcntr.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calcage.source.r27725.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculator.source.r64424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cals.source.r43003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/canoniclayout.source.r64889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/capt-of.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/captcont.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfile.source.r53084.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catchfilebetweentags.source.r21476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catechis.source.r59998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catppuccinpalette.source.r72060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccaption.source.r23443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cclicenses.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd.source.r34452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cd-cover.source.r17121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdcmd.source.r60742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cdpbundl.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cellprops.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/centerlastline.source.r56644.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changebar.source.r71847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changepage.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/changes.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chappg.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chapterfolder.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cheatsheet.source.r45069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chextras.source.r27118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/childdoc.source.r49543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chletter.source.r20060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circ.source.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classpack.source.r55218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clefval.source.r55985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleveref-usedon.source.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clicks.source.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clistmap.source.r61811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrdblpg.source.r47511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrstrip.source.r60363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmdtrack.source.r28910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codepage.source.r51502.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codesection.source.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collcell.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collectbox.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colophon.source.r47913.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/color-edits.source.r56707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colordoc.source.r18270.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorwav.source.r67012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorweb.source.r31490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combine.source.r19361.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commado.source.r38875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commedit.source.r50116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/competences.source.r47573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/constants.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/continue.source.r49449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contour.source.r18950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contracard.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conv-xkv.source.r43558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooking-units.source.r65241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cool.source.r67013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coollist.source.r67048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolstr.source.r67015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coolthms.source.r29062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cooltooltips.source.r60201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coop-writing.source.r61607.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coordsys.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/copyedit.source.r37928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/count1to.source.r71526.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counterz.source.r67335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/counttexruns.source.r27576.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coverpage.source.r63509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cprotect.source.r21209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossreference.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crumbs.source.r64602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csvmerge.source.r51857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cuisine.source.r34453.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currency.source.r48990.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currfile.source.r70650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/currvita.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cutwin.source.r60901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cyber.source.r46776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cybercic.source.r37659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/darkmode.source.r64271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashbox.source.r23425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashrule.source.r29579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dashundergaps.source.r58150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datatool.source.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datax.source.r61772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dateiliste.source.r27974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datenumber.source.r61761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datestamp.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime.source.r36650.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2.source.r63102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bahasai.source.r46287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-basque.source.r47064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-breton.source.r52647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-bulgarian.source.r47031.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-catalan.source.r47032.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-croatian.source.r36682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-czech.source.r47033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-danish.source.r47034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-dutch.source.r47355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-en-fulltext.source.r36705.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-english.source.r52479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-esperanto.source.r47356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-estonian.source.r47565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-finnish.source.r47047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-french.source.r56393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-galician.source.r47631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-german.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-greek.source.r47533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-hebrew.source.r47534.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-icelandic.source.r65213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-irish.source.r47632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-it-fulltext.source.r54779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-italian.source.r37146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-latin.source.r47748.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-lsorbian.source.r47749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-magyar.source.r48266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-norsk.source.r48267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-polish.source.r48456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-portuges.source.r48457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-romanian.source.r56394.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-russian.source.r49345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-samin.source.r49346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-scottish.source.r52101.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-serbian.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovak.source.r52281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-slovene.source.r52282.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-spanish.source.r45785.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-swedish.source.r36700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-turkish.source.r52331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-ukrainian.source.r47552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-usorbian.source.r52375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/datetime2-welsh.source.r52553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dbshow.source.r61634.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/debate.source.r64846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimal.source.r23374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decimalcomma.source.r69251.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decorule.source.r55230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/defoldfonts.source.r68234.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimtxt.source.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/denisbdoc.source.r70592.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagbox.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dialogl.source.r28946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/didactic.source.r70901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dimnum.source.r58774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dinbrief.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtytalk.source.r20520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dnaseq.source.r17194.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doclicense.source.r68441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmfp.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docmute.source.r25741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docshots.source.r69676.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doctools.source.r34474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/documentation.source.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doibanner.source.r71919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotarrow.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dotseqn.source.r17195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/download.source.r52257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dox.source.r46011.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dprogress.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drac.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftcopy.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/draftwatermark.source.r70393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dtxdescribe.source.r69507.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ducksay.source.r70816.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duckuments.source.r52271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynamicnumber.source.r38726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easybook.source.r72897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfig.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyfloats.source.r72699.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easyreview.source.r38352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebezier.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecclesiastic.source.r38172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econlipsum.source.r58390.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecv.source.r24928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ed.source.r25231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmargin.source.r27599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eemeir.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/efbox.source.r33236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egplot.source.r20617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipsis.source.r55418.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elmath.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elocalloc.source.r42712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elzcards.source.r51894.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emarks.source.r24504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedall.source.r51177.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/embedfile.source.r65528.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emo.source.r66944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emptypage.source.r18064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endfloat.source.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endheads.source.r43750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endnotes-hy.source.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engpron.source.r16558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engrec.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ensps-colorscheme.source.r71431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumext.source.r72861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enumitem-zref.source.r21472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enverb.source.r72137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/environ.source.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/envlab.source.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epcqrcode.source.r70956.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigraph.source.r54857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epiolmec.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eq-pin2corr.source.r59477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqlist.source.r32257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnalign.source.r43278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqparbox.source.r45215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/errata.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erw-l3.source.r61799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esdiff.source.r21385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esieecv.source.r59638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esint.source.r52240.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etaremune.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etextools.source.r20694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etl.source.r60998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoc.source.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eukdate.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyhook.source.r35675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everypage.source.r56694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exam-n.source.r64674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examdesign.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/examz.source.r67303.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercise.source.r35417.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exercises.source.r55188.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exesheet.source.r69838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exframe.source.r72595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exp-testopt.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expdlist.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/export.source.r27206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exsol.source.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extract.source.r52117.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facsimile.source.r21328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/factura.source.r61697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fail-fast.source.r67543.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/familytree.source.r63739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancylabel.source.r46736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancynum.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancypar.source.r58895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytabs.source.r41549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancytooltips.source.r68931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcolumn.source.r67729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fetchcls.source.r45245.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fewerfloatpages.source.r58058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ffcode.source.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fgruler.source.r70917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fifo-stack.source.r33288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontents.source.r66740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filecontentsdef.source.r52208.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filedate.source.r29529.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fileinfo.source.r28421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fillwith.source.r72006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fink.source.r24329.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/finstrut.source.r21719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fistrum.source.r70187.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fithesis.source.r70531.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixcmex.source.r51825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixme.source.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmetodonotes.source.r30168.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flabels.source.r17272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flagderiv.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flashcards.source.r62104.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flexipage.source.r66614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flippdf.source.r56782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatbytocbasic.source.r67945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatflt.source.r25540.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrow.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/floatrowbytocbasic.source.r67946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowfram.source.r35291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmp.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fmtcount.source.r72583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnbreak.source.r66615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnumprint.source.r29173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foilhtml.source.r61937.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontaxes.source.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontsize.source.r60161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fonttable.source.r44799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisc.source.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footmisx.source.r42621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnoterange.source.r66149.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnpag.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forarray.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/foreign.source.r27819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forloop.source.r67017.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forms16be.source.r51305.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formular.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/framedsyntax.source.r72199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/frankenstein.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/froufrou.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftnxtra.source.r29652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullblck.source.r25434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fullminipage.source.r34545.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-calligra.source.r26018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fundus-sueterlin.source.r26030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fvextra.source.r72885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/g-brief.source.r50415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gatherenum.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gcite.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gender.source.r36464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genmpage.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gensymb.source.r64740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getitems.source.r39365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ginpenc.source.r24980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitfile-info.source.r51928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitstatus.source.r64662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-danish.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-dutch.source.r35685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-english.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-estonian.source.r49928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-extra.source.r68409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-finnish.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-french.source.r42873.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-german.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-irish.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-italian.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-magyar.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-norsk.source.r67141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-nynorsk.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-polish.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-portuges.source.r36064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-serbian.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-slovene.source.r51211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glossaries-spanish.source.r35665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmdoc-enhance.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grabbox.source.r65223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grading-scheme.source.r62505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphbox.source.r46360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicscache.source.r65318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicx-psmin.source.r56931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicxbox.source.r32630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphpaper.source.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grayhints.source.r49052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grid.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridpapers.source.r58723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gridset.source.r72056.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gs1.source.r59620.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitlogo.source.r55741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ha-prosper.source.r59651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/halloweenmath.source.r52602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/handoutwithnotes.source.r62140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hanging.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hardwrap.source.r21396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-acronym.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-float.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-math.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-text.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-title.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hhtensor.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/histogr.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitreport.source.r58357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hpsdiss.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/href-ul.source.r72741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hrefhide.source.r66189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huawei.source.r72668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hypdoc.source.r68661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyper.source.r17357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperbar.source.r48147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyperxmp.source.r70694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyphenat.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/idxlayout.source.r25821.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iexec.source.r69420.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifallfalse.source.r60027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iffont.source.r38823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifmtarg.source.r47544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifnextok.source.r23379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifoddpage.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iitem.source.r29613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imakeidx.source.r42287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/indextools.source.r68555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inlinedef.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputenx.source.r52986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputtrc.source.r28019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interfaces.source.r21474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/intopdf.source.r63987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inversepath.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/invoice2.source.r67327.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iso10303.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodate.source.r16613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isodoc.source.r59709.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isorot.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isotope.source.r23711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/issuulinks.source.r25742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iwonamath.source.r71844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmsdelim.source.r62630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jvlisting.source.r24638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kalendarium.source.r48744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kantlipsum.source.r68983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kerntest.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keycommand.source.r18042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyfloat.source.r69399.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyindex.source.r50828.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyparse.source.r60277.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keyvaltable.source.r65416.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knowledge.source.r70594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv.source.r57721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/komacv-rg.source.r49064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ktv-texdata.source.r27369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3backend-dev.source.r71211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3build.source.r72567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3kernel-dev.source.r72756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labbook.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labels.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/labelschanged.source.r69400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambdax.source.r60278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpackage.source.r34481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lastpage.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-amsmath-dev.source.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-base-dev.source.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-firstaid-dev.source.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-graphics-dev.source.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-lab-dev.source.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-tools-dev.source.r72738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexcolors.source.r49888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexdemo.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexgit.source.r54811.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/layouts.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lccaps.source.r46432.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcd.source.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lcg.source.r31474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leading.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leaflet.source.r70652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leftidx.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leipzig.source.r52450.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lengthconvert.source.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lettrine.source.r72860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lhelp.source.r23638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/libgreek.source.r65004.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limap.source.r44863.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linegoal.source.r21523.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lipsum.source.r60561.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listingsutf8.source.r53097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listlbls.source.r67215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listliketab.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listofsymbols.source.r16134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lmake.source.r25552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/locality.source.r20422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logbox.source.r24499.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logpap.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longfigure.source.r34302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longnamefilelist.source.r27889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lscapeenhanced.source.r70967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstaddons.source.r72068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3rawobjects.source.r66619.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ltxnew.source.r21586.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatodonotes.source.r53825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macrolist.source.r60139.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/macroswap.source.r31498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/magicnum.source.r52983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailing.source.r71862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mailmerge.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebase.source.r41012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makebox.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecell.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makecmds.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makedtx.source.r46702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makelabels.source.r60255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mandi.source.r70231.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manfnt.source.r54684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/manuscript.source.r36110.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfit.source.r48281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginfix.source.r55064.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/marginnote.source.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/markdown.source.r72765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathastext.source.r72671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathexam.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfont.source.r68241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathgreeks.source.r71248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcaption.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcite.source.r18173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdframed.source.r31075.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/media9.source.r72299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/meetingmins.source.r31878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memory.source.r30452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menu.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menucard.source.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/menukeys.source.r64314.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogox.source.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metastr.source.r56246.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/method.source.r17485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metre.source.r18489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfirstuc.source.r64743.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mftinc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mi-solns.source.r49651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mindflow.source.r65236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minibox.source.r30914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minidocument.source.r43752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minifp.source.r32559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minipage-marginpar.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minutes.source.r42186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mleftright.source.r53021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlist.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnotes.source.r63406.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moderntimeline.source.r55518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modref.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modroman.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moloch.source.r72715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/monofill.source.r28140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moodle.source.r65672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morefloats.source.r37927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morehype.source.r38815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moresize.source.r17513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moreverb.source.r22126.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/morewrites.source.r69679.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mparhack.source.r59066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpostinl.source.r49559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msg.source.r49578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mtgreek.source.r17967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiaudience.source.r60688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multibbl.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicap.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multicolrule.source.r56366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multidef.source.r40637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multienv.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiexpand.source.r45943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multilang.source.r49065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multirow.source.r72833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multitoc.source.r71520.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mversion.source.r29370.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mwe.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mycv.source.r26807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mylatexformat.source.r21392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nag.source.r24741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nameauth.source.r69758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namespc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ncctools.source.r51810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/needspace.source.r29601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfile.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newlfm.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newspaper.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newunicodechar.source.r47382.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newvbtm.source.r23996.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newverbs.source.r64833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nfssext-cfr.source.r72454.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicefilelist.source.r65842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/niceframe.source.r36086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicetext.source.r38914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nidanfloat.source.r48295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noindentafter.source.r59195.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/noitcrul.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomencl.source.r61029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nomentbl.source.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonfloat.source.r17598.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nonumonpart.source.r22114.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/normalcolor.source.r40125.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notes.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/notespages.source.r41906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nowidow.source.r24066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntheorem.source.r27609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numprint.source.r27498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ocgx.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/octavo.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oldstyle.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onlyamsmath.source.r42927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opcit.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/orcidlink.source.r71633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outlining.source.r45601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overpic.source.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/padcount.source.r47621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecolor.source.r66885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagecont.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagegrid.source.r64470.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pagenote.source.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pageslts.source.r39164.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/palette.source.r60119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pangram.source.r66300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paper.source.r34521.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papercdcase.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papermas.source.r66835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papertex.source.r19230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paracol.source.r72651.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paralist.source.r43021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/paresse.source.r59228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parselines.source.r21475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patch.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/patchcmd.source.r41379.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pauldoc.source.r16005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pawpict.source.r21629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbalance.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbox.source.r24807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pbsheet.source.r24830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdf14.source.r17583.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcol.source.r64469.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcprot.source.r18735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfoverlay.source.r64210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpc-movie.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfprivacy.source.r45985.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfrender.source.r69058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfx.source.r71681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perltex.source.r52162.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/permute.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmath-xfp.source.r59268.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfcc.source.r60731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfextendedabstract.source.r60732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phffullpagefigure.source.r41857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfnote.source.r60733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfparen.source.r41859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfqit.source.r60734.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfquotetext.source.r41869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfsvnwatermark.source.r41870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/phfthm.source.r60735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/photo.source.r18739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/picture.source.r54867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plweb.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmboxdraw.source.r53046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynom.source.r44832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polynomial.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polytable.source.r55837.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postnotes.source.r72850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot.source.r59272.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppr-prv.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ppt-slides.source.r72584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prelim2e.source.r57000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preprint.source.r30447.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pressrelease.source.r35147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prettyref.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/preview.source.r71662.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/probsoln.source.r44783.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/projlib.source.r72789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proofread.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/protocol.source.r25562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfragx.source.r26243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxgreeks.source.r21838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qcm.source.r63833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qstest.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsymbols.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotchap.source.r56926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quoting.source.r32818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quotmark.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ran_toks.source.r59515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rccol.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs-multi.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcsinfo.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realboxes.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recipecard.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rectopma.source.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reflectgraphics.source.r40612.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refman.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/refstyle.source.r69680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regcount.source.r19979.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regexpatch.source.r58668.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/register.source.r54485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regstats.source.r66795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/relenc.source.r22050.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repltext.source.r56433.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resmes.source.r65375.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rgltxdoc.source.r53858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rjlparshap.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robustcommand.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbar.source.r25005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romanbarpagenumber.source.r36236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/romannum.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rorlink.source.r67461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rotfloat.source.r18292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rtkinenc.source.r20003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rulercompass.source.r32392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sauerj.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savefnmark.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/savetrees.source.r40525.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scale.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scalebar.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schedule.source.r51805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schooldocs.source.r69659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scontents.source.r71533.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrambledenvs.source.r60615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrhack.source.r72608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrlayer-fancyhdr.source.r63844.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrwfile.source.r66872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sdaps.source.r65345.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/secnum.source.r61813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sectsty.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seealso.source.r43595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selinput.source.r53098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semantic.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplanner.source.r56841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semioneside.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semproc.source.r37568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seqsplit.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesstime.source.r49750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setspaceenhanced.source.r72852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sf298.source.r41653.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sffms.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shdoc.source.r41991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shorttoc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/show2e.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showcharinbox.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showexpl.source.r57414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showlabels.source.r63940.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidecap.source.r65618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotes.source.r72264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sidenotesplus.source.r69176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/silence.source.r27028.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sillypage.source.r71889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecd.source.r29260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplecv.source.r35537.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sitem.source.r22136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skb.source.r22781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skdoc.source.r56950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skrapport.source.r52412.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/slantsc.source.r25007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smart-eqn.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/snapshot.source.r56735.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spacingtricks.source.r69048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spelatex.source.r72763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splitindex.source.r39766.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spot.source.r22408.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spverbatim.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srcltx.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sseq.source.r31585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stack.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standalone.source.r64677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/standardsectioning.source.r71479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdclsdv.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stdpage.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stealcaps.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stex.source.r68569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/storebox.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stringstrings.source.r57097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sttools.source.r60736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/styledcmd.source.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subdepth.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqn.source.r71864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subeqnarray.source.r71865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfigure.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfiles.source.r56977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfloat.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/supertabular.source.r71854.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svg.source.r70626.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-multi.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svn-prov.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/svninfo.source.r62157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swfigure.source.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synthslant.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntrace.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synttree.source.r16252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabbing.source.r59715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabfigures.source.r25202.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablefootnote.source.r32804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tableof.source.r72313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablists.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablvar.source.r72007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabu.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularborder.source.r17885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabularew.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabulary.source.r71463.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tagpdf.source.r72901.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/talk.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tangocolors.source.r66733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tcldoc.source.r22018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ted.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/telprint.source.r71914.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/templatetools.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termcal.source.r22514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termlist.source.r18923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termsim.source.r61414.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testhyphens.source.r38928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/testidx.source.r60966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-label.source.r16372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-locale.source.r48500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texmate.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texments.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texpower.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texshade.source.r69371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textfit.source.r20591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textmerg.source.r20677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textpos.source.r63967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textualicomma.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texvc.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threadcol.source.r28754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumb.source.r16549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumbs.source.r33134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipauni.source.r65817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/titling.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/to-be-determined.source.r72527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocbibind.source.r20085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocdata.source.r69512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocloft.source.r53364.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tocvsec2.source.r33146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todo.source.r17746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/todonotes.source.r69319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toolbox.source.r32260.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totalcount.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totcount.source.r21178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/totpages.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/transparent.source.r64852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trfsigns.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trimspaces.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trivfloat.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trsym.source.r18732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tucv.source.r20680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twoup.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/txgreeks.source.r21839.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/type1cm.source.r21820.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typed-checklist.source.r63445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typeface.source.r27046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typog.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typogrid.source.r24994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucs.source.r68759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umoline.source.r19085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underlin.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undolabl.source.r65846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uni-titlepage.source.r68917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicodefonttable.source.r71477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unisc.source.r63178.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/units.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unravel.source.r69308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upquote.source.r26059.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uri.source.r48602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/useclass.source.r72455.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ushort.source.r32261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varindex.source.r32262.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifiche.source.r69726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/verifycommand.source.r72180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/versonotes.source.r69249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vgrid.source.r32457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vmargin.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/volumes.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vwcol.source.r36254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/warpcol.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/was.source.r64691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widetable.source.r53409.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/widows-and-orphans.source.r66753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordlike.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapfig2.source.r70838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wrapstuff.source.r64058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xargs.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xbmks.source.r53448.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-material.source.r42289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor-solarized.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcookybooky.source.r36435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcpdftips.source.r50449.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xdoc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xellipsis.source.r47546.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfor.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ximera.source.r71243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xint.source.r63562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmpincl.source.r60593.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpatch.source.r69768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpeek.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpunctuate.source.r67918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xsavebox.source.r64049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xtab.source.r23347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yafoot.source.r48568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yagusylo.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yaletter.source.r42830.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ydoc.source.r64887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zebra-goodies.source.r66630.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref.source.r68278.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-check.source.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-clever.source.r72876.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zref-vario.source.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zugferd.source.r72877.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 optfeature 538bce96e5589935b57e178e8635f301 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=131f72d11c43de02a6f6d17aa18b6de4 +_md5_=02dee1f3ef3b6d6255bf1b55e69ae31c diff --git a/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2024_p71527 b/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2024_p71527 index 0f7dbd447921..1d4c9ebb453c 100644 --- a/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2024_p71527 +++ b/metadata/md5-cache/dev-texlive/texlive-latexrecommended-2024_p71527 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC0-1.0 GPL-1+ LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT TeX-other-free public-domain PDEPEND=>=dev-tex/latex-beamer-3.71 RDEPEND=>=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-latexrecommended.r71527.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anysize.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile2.r69505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booktabs.r53402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breqn.r60881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/caption.r68425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cite.r36428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmap.r57640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crop.r55424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctable.r38672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eso-pic.r67001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoolbox.r56554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euenc.r19795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euler.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everysel.r57489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyshi.r57001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extsizes.r17263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancybox.r18304.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyref.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyvrb.r69536.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filehook.r64822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/float.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontspec.r71237.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnotehyper.r60374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fp.r49719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grffile.r52756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hologo.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/index.r24099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/infwarerr.r53023.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jknapltx.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/koma-script.r72643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3experimental.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexbug.r72762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lineno.r67171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lwarp.r70067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathspec.r42773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathtools.r72487.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdwtools.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoir.r69600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogo.r18611.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/microtype.r70805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfloat.r68434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntgclass.r65522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parskip.r58358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcolfoot.r65512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdflscape.r64851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmanagement-testphase.r72677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpages.r72691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyglossia.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfrag.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ragged2e.r67441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmath.r17997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/section.r20180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seminar.r59801.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sepnum.r20186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setspace.r65206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfig.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textcase.r67755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumbpdf.r62518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translator.r59412.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typehtml.r17134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucharcat.r38907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underscore.r18261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-math.r67919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfrac.r71430.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkeyval.r63616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xltxtra.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xunicode.r30466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-latexrecommended.r71527.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anysize.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile2.r69505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booktabs.r53402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breqn.r60881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/caption.r68425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cite.r36428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmap.r57640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crop.r55424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctable.r38672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eso-pic.r67001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoolbox.r56554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euenc.r19795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euler.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everysel.r57489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyshi.r57001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extsizes.r17263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancybox.r18304.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyref.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyvrb.r69536.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filehook.r64822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/float.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontspec.r71237.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnotehyper.r60374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fp.r49719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grffile.r52756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hologo.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/index.r24099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/infwarerr.r53023.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jknapltx.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/koma-script.r72643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3experimental.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexbug.r72762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lineno.r67171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lwarp.r70067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathspec.r42773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathtools.r72487.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdwtools.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoir.r69600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogo.r18611.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/microtype.r70805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfloat.r68434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntgclass.r65522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parskip.r58358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcolfoot.r65512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdflscape.r64851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmanagement-testphase.r72677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpages.r72691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyglossia.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfrag.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ragged2e.r67441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmath.r17997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/section.r20180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seminar.r59801.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sepnum.r20186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setspace.r65206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfig.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textcase.r67755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumbpdf.r62518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translator.r59412.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typehtml.r17134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucharcat.r38907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underscore.r18261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-math.r67919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfrac.r71430.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkeyval.r63616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xltxtra.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xunicode.r30466.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/anysize.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile2.doc.r69505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booktabs.doc.r53402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breqn.doc.r60881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/caption.doc.r68425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cite.doc.r36428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmap.doc.r57640.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crop.doc.r55424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctable.doc.r38672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eso-pic.doc.r67001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoolbox.doc.r56554.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euenc.doc.r19795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euler.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everysel.doc.r57489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyshi.doc.r57001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extsizes.doc.r17263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancybox.doc.r18304.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyref.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyvrb.doc.r69536.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filehook.doc.r64822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/float.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontspec.doc.r71237.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnotehyper.doc.r60374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fp.doc.r49719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grffile.doc.r52756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hologo.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/index.doc.r24099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/infwarerr.doc.r53023.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jknapltx.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3experimental.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexbug.doc.r72762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lineno.doc.r67171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings.doc.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lwarp.doc.r70067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathspec.doc.r42773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathtools.doc.r72487.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdwtools.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoir.doc.r69600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogo.doc.r18611.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/microtype.doc.r70805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfloat.doc.r68434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntgclass.doc.r65522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parskip.doc.r58358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcolfoot.doc.r65512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdflscape.doc.r64851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmanagement-testphase.doc.r72677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpages.doc.r72691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyglossia.doc.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfrag.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ragged2e.doc.r67441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sansmath.doc.r17997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/section.doc.r20180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seminar.doc.r59801.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sepnum.doc.r20186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setspace.doc.r65206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfig.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textcase.doc.r67755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thumbpdf.doc.r62518.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/translator.doc.r59412.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typehtml.doc.r17134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucharcat.doc.r38907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/underscore.doc.r18261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-math.doc.r67919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfrac.doc.r71430.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkeyval.doc.r63616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xltxtra.doc.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xunicode.doc.r30466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anysize.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile2.doc.r69505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booktabs.doc.r53402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breqn.doc.r60881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/caption.doc.r68425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cite.doc.r36428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmap.doc.r57640.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crop.doc.r55424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctable.doc.r38672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eso-pic.doc.r67001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoolbox.doc.r56554.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euenc.doc.r19795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euler.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everysel.doc.r57489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyshi.doc.r57001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extsizes.doc.r17263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancybox.doc.r18304.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyref.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyvrb.doc.r69536.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filehook.doc.r64822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/float.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontspec.doc.r71237.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnotehyper.doc.r60374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fp.doc.r49719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grffile.doc.r52756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hologo.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/index.doc.r24099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/infwarerr.doc.r53023.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jknapltx.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3experimental.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexbug.doc.r72762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lineno.doc.r67171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings.doc.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lwarp.doc.r70067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathspec.doc.r42773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathtools.doc.r72487.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdwtools.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoir.doc.r69600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogo.doc.r18611.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/microtype.doc.r70805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfloat.doc.r68434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntgclass.doc.r65522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parskip.doc.r58358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcolfoot.doc.r65512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdflscape.doc.r64851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmanagement-testphase.doc.r72677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpages.doc.r72691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyglossia.doc.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfrag.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ragged2e.doc.r67441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sansmath.doc.r17997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/section.doc.r20180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seminar.doc.r59801.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sepnum.doc.r20186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setspace.doc.r65206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfig.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textcase.doc.r67755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thumbpdf.doc.r62518.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/translator.doc.r59412.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typehtml.doc.r17134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucharcat.doc.r38907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/underscore.doc.r18261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-math.doc.r67919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfrac.doc.r71430.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkeyval.doc.r63616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xltxtra.doc.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xunicode.doc.r30466.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/attachfile2.source.r69505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/booktabs.source.r53402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/breqn.source.r60881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/caption.source.r68425.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crop.source.r55424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctable.source.r38672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eso-pic.source.r67001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euenc.source.r19795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euler.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everysel.source.r57489.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/everyshi.source.r57001.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fancyref.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/filehook.source.r64822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/float.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontspec.source.r71237.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/footnotehyper.source.r60374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grffile.source.r52756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hologo.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/index.source.r24099.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/infwarerr.source.r53023.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/l3experimental.source.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexbug.source.r72762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listings.source.r72368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lwarp.source.r70067.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathtools.source.r72487.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mdwtools.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoir.source.r69600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metalogo.source.r18611.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/microtype.source.r70805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newfloat.source.r68434.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ntgclass.source.r65522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/parskip.source.r58358.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfcolfoot.source.r65512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdflscape.source.r64851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmanagement-testphase.source.r72677.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfpages.source.r72691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psfrag.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ragged2e.source.r67441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rcs.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subfig.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textcase.source.r67755.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typehtml.source.r17134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucharcat.source.r38907.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-math.source.r67919.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xcolor.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xfrac.source.r71430.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xkeyval.source.r63616.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xltxtra.source.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/attachfile2.source.r69505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/booktabs.source.r53402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/breqn.source.r60881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/caption.source.r68425.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crop.source.r55424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctable.source.r38672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eso-pic.source.r67001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euenc.source.r19795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euler.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everysel.source.r57489.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/everyshi.source.r57001.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fancyref.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/filehook.source.r64822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/float.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontspec.source.r71237.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/footnotehyper.source.r60374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grffile.source.r52756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hologo.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/index.source.r24099.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/infwarerr.source.r53023.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/l3experimental.source.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexbug.source.r72762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listings.source.r72368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lwarp.source.r70067.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathtools.source.r72487.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mdwtools.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoir.source.r69600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metalogo.source.r18611.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/microtype.source.r70805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newfloat.source.r68434.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ntgclass.source.r65522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/parskip.source.r58358.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfcolfoot.source.r65512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdflscape.source.r64851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmanagement-testphase.source.r72677.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfpages.source.r72691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psfrag.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ragged2e.source.r67441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rcs.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subfig.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textcase.source.r67755.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typehtml.source.r17134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucharcat.source.r38907.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-math.source.r67919.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xcolor.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xfrac.source.r71430.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xkeyval.source.r63616.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xltxtra.source.r56594.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=4ee2397adf782eb8139edeaafdd0ce4d +_md5_=2340da9dfb8125b7b96cb1a1ab9d7a6d diff --git a/metadata/md5-cache/dev-texlive/texlive-luatex-2024_p72049 b/metadata/md5-cache/dev-texlive/texlive-luatex-2024_p72049 index ed5bf2d2d63c..a2c8eb881a94 100644 --- a/metadata/md5-cache/dev-texlive/texlive-luatex-2024_p72049 +++ b/metadata/md5-cache/dev-texlive/texlive-luatex-2024_p72049 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=prefix texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD CC-BY-SA-3.0 CC-BY-SA-4.0 EUPL-1.2 FDL-1.1+ GPL-2 GPL-3 GPL-3+ LPPL-1.3 LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-luatex.r72049.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addliga.r50912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addtoluatexpath.r70655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auto-pst-pdf-lua.r66637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barracuda.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bezierplot.r72750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blopentype.r69080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checkcites.r70397.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chickenize.r57325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chinese-jfm.r57758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cloze.r55763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combofont.r51348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cstypo.r41986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctablestack.r38514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekdosis.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emoji.r59961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emojicite.r55131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enigma.r29802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo-lua.r72284.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ideavault.r71622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/innerscript.r72066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interpreter.r27232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kanaparser.r48052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ligtype.r67601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linebreaker.r66639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longmath.r71709.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lparse.r65693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3luabridge.r71704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-placeholders.r70850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-tinyyaml.r66776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-typo.r70978.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-uca.r71218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-ul.r70203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-uni-algos.r62204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-visual-debug.r65464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-widow-control.r70601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaaddplot.r72350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacas.r67247.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacensor.r71922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacode.r25193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacolor.r67987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacomplex.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luagcd.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahttp.r67348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahyphenrules.r56200.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaimageembed.r50788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaindex.r25882.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luainputenc.r20491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luakeys.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-math.r61464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-truncate.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualibs.r67994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualinalg.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamathalign.r63226.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamaths.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamml.r72714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamodulartables.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamplib.r72835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaoptions.r64870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaotfload.r70232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luapackageloader.r54779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaplot.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaprogtable.r56113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaquotes.r65652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luarandom.r68847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaset.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatex85.r41456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexbase.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexko.r68243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatextra.r20747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatruthtable.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luavlna.r71156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaxml.r72858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lutabulartools.r67714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-math.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-mp.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-pdf.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-xmp.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpax.r68762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nodetree.r72318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/odsfile.r72514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optex.r71642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfarticle.r51127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfextra.r65184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/penlight.r72301.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/penlightplus.r72426.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piton.r72889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeat.r45145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plantuml.r72315.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pyluatex.r69372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scikgtex.r66764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selnolig.r68747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplannerlua.r71322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showhyphenation.r67602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showkerning.r67603.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spacekern.r67604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spelling.r30715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stricttex.r56320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sympycalc.r67087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tango.r71825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texfindpkg.r67027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/truthtable.r68300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tsvtemplate.r65333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typewriter.r46641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uninormalize.r57257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yamlvars.r72052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-luatex.r72049.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addliga.r50912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addtoluatexpath.r70655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auto-pst-pdf-lua.r66637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barracuda.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bezierplot.r72750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blopentype.r69080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checkcites.r70397.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chickenize.r57325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chinese-jfm.r57758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cloze.r55763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combofont.r51348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cstypo.r41986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctablestack.r38514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekdosis.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emoji.r59961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emojicite.r55131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enigma.r29802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo-lua.r72284.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ideavault.r71622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/innerscript.r72066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interpreter.r27232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kanaparser.r48052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ligtype.r67601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linebreaker.r66639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longmath.r71709.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lparse.r65693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3luabridge.r71704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-placeholders.r70850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-tinyyaml.r66776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-typo.r70978.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-uca.r71218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-ul.r70203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-uni-algos.r62204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-visual-debug.r65464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-widow-control.r70601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaaddplot.r72350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacas.r67247.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacensor.r71922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacode.r25193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacolor.r67987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacomplex.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luagcd.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahttp.r67348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahyphenrules.r56200.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaimageembed.r50788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaindex.r25882.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luainputenc.r20491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luakeys.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-math.r61464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-truncate.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualibs.r67994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualinalg.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamathalign.r63226.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamaths.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamml.r72714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamodulartables.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamplib.r72835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaoptions.r64870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaotfload.r70232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luapackageloader.r54779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaplot.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaprogtable.r56113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaquotes.r65652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luarandom.r68847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaset.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatex85.r41456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexbase.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexko.r68243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatextra.r20747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatruthtable.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luavlna.r71156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaxml.r72858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lutabulartools.r67714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-math.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-mp.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-pdf.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-xmp.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpax.r68762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nodetree.r72318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/odsfile.r72514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optex.r71642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfarticle.r51127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfextra.r65184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/penlight.r72301.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/penlightplus.r72426.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piton.r72889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeat.r45145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plantuml.r72315.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pyluatex.r69372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scikgtex.r66764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selnolig.r68747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplannerlua.r71322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showhyphenation.r67602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showkerning.r67603.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spacekern.r67604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spelling.r30715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stricttex.r56320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sympycalc.r67087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tango.r71825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texfindpkg.r67027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/truthtable.r68300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tsvtemplate.r65333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typewriter.r46641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uninormalize.r57257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yamlvars.r72052.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/addliga.doc.r50912.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/addtoluatexpath.doc.r70655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auto-pst-pdf-lua.doc.r66637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barracuda.doc.r63708.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bezierplot.doc.r72750.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blopentype.doc.r69080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/checkcites.doc.r70397.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chickenize.doc.r57325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chinese-jfm.doc.r57758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cloze.doc.r55763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combofont.doc.r51348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cstypo.doc.r41986.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctablestack.doc.r38514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekdosis.doc.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emoji.doc.r59961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emojicite.doc.r55131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/enigma.doc.r29802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gitinfo-lua.doc.r72284.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ideavault.doc.r71622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/innerscript.doc.r72066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interpreter.doc.r27232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kanaparser.doc.r48052.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ligtype.doc.r67601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linebreaker.doc.r66639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longmath.doc.r71709.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lparse.doc.r65693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3luabridge.doc.r71704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-placeholders.doc.r70850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-tinyyaml.doc.r66776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-typo.doc.r70978.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-uca.doc.r71218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-ul.doc.r70203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-uni-algos.doc.r62204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-visual-debug.doc.r65464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-widow-control.doc.r70601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaaddplot.doc.r72350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacas.doc.r67247.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacensor.doc.r71922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacode.doc.r25193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacolor.doc.r67987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacomplex.doc.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luagcd.doc.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahttp.doc.r67348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luahyphenrules.doc.r56200.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaimageembed.doc.r50788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaindex.doc.r25882.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luainputenc.doc.r20491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luakeys.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-math.doc.r61464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-truncate.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualibs.doc.r67994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualinalg.doc.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamathalign.doc.r63226.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamaths.doc.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamml.doc.r72714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamodulartables.doc.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamplib.doc.r72835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaoptions.doc.r64870.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaotfload.doc.r70232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luapackageloader.doc.r54779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaplot.doc.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaprogtable.doc.r56113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaquotes.doc.r65652.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luarandom.doc.r68847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaset.doc.r68883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatex85.doc.r41456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexbase.doc.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexko.doc.r68243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatextra.doc.r20747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatruthtable.doc.r68893.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luavlna.doc.r71156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaxml.doc.r72858.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lutabulartools.doc.r67714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-math.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-mp.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-pdf.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-xmp.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpax.doc.r68762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nodetree.doc.r72318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/odsfile.doc.r72514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/optex.doc.r71642.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfarticle.doc.r51127.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfextra.doc.r65184.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/penlight.doc.r72301.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/penlightplus.doc.r72426.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piton.doc.r72889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeat.doc.r45145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plantuml.doc.r72315.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pyluatex.doc.r69372.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scikgtex.doc.r66764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/selnolig.doc.r68747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplannerlua.doc.r71322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showhyphenation.doc.r67602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/showkerning.doc.r67603.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spacekern.doc.r67604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spelling.doc.r30715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stricttex.doc.r56320.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sympycalc.doc.r67087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tango.doc.r71825.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texfindpkg.doc.r67027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/truthtable.doc.r68300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tsvtemplate.doc.r65333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/typewriter.doc.r46641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uninormalize.doc.r57257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yamlvars.doc.r72052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addliga.doc.r50912.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/addtoluatexpath.doc.r70655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auto-pst-pdf-lua.doc.r66637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barracuda.doc.r63708.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bezierplot.doc.r72750.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blopentype.doc.r69080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/checkcites.doc.r70397.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chickenize.doc.r57325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chinese-jfm.doc.r57758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cloze.doc.r55763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combofont.doc.r51348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cstypo.doc.r41986.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctablestack.doc.r38514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekdosis.doc.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emoji.doc.r59961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emojicite.doc.r55131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/enigma.doc.r29802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gitinfo-lua.doc.r72284.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ideavault.doc.r71622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/innerscript.doc.r72066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interpreter.doc.r27232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kanaparser.doc.r48052.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ligtype.doc.r67601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linebreaker.doc.r66639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longmath.doc.r71709.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lparse.doc.r65693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3luabridge.doc.r71704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-placeholders.doc.r70850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-tinyyaml.doc.r66776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-typo.doc.r70978.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-uca.doc.r71218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-ul.doc.r70203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-uni-algos.doc.r62204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-visual-debug.doc.r65464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-widow-control.doc.r70601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaaddplot.doc.r72350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacas.doc.r67247.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacensor.doc.r71922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacode.doc.r25193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacolor.doc.r67987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacomplex.doc.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luagcd.doc.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahttp.doc.r67348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luahyphenrules.doc.r56200.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaimageembed.doc.r50788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaindex.doc.r25882.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luainputenc.doc.r20491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luakeys.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-math.doc.r61464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-truncate.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualibs.doc.r67994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualinalg.doc.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamathalign.doc.r63226.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamaths.doc.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamml.doc.r72714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamodulartables.doc.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamplib.doc.r72835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaoptions.doc.r64870.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaotfload.doc.r70232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luapackageloader.doc.r54779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaplot.doc.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaprogtable.doc.r56113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaquotes.doc.r65652.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luarandom.doc.r68847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaset.doc.r68883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatex85.doc.r41456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexbase.doc.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexko.doc.r68243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatextra.doc.r20747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatruthtable.doc.r68893.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luavlna.doc.r71156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaxml.doc.r72858.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lutabulartools.doc.r67714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-math.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-mp.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-pdf.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-xmp.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpax.doc.r68762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nodetree.doc.r72318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/odsfile.doc.r72514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/optex.doc.r71642.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfarticle.doc.r51127.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfextra.doc.r65184.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/penlight.doc.r72301.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/penlightplus.doc.r72426.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piton.doc.r72889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeat.doc.r45145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plantuml.doc.r72315.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pyluatex.doc.r69372.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scikgtex.doc.r66764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/selnolig.doc.r68747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplannerlua.doc.r71322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showhyphenation.doc.r67602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/showkerning.doc.r67603.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spacekern.doc.r67604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spelling.doc.r30715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stricttex.doc.r56320.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sympycalc.doc.r67087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tango.doc.r71825.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texfindpkg.doc.r67027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/truthtable.doc.r68300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tsvtemplate.doc.r65333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/typewriter.doc.r46641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uninormalize.doc.r57257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yamlvars.doc.r72052.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/chickenize.source.r57325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cloze.source.r55763.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ctablestack.source.r38514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekdosis.source.r69568.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/innerscript.source.r72066.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lt3luabridge.source.r71704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-typo.source.r70978.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-uca.source.r71218.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-ul.source.r70203.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lua-widow-control.source.r70601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaaddplot.source.r72350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacode.source.r25193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luacolor.source.r67987.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaindex.source.r25882.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luainputenc.source.r20491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-math.source.r61464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualatex-truncate.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lualibs.source.r67994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamathalign.source.r63226.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamml.source.r72714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamplib.source.r72835.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luaotfload.source.r70232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatex85.source.r41456.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatexbase.source.r52663.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luatextra.source.r20747.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newpax.source.r68762.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nodetree.source.r72318.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piton.source.r72889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeat.source.r45145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/semesterplannerlua.source.r71322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texfindpkg.source.r67027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chickenize.source.r57325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cloze.source.r55763.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ctablestack.source.r38514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekdosis.source.r69568.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/innerscript.source.r72066.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lt3luabridge.source.r71704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-typo.source.r70978.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-uca.source.r71218.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-ul.source.r70203.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lua-widow-control.source.r70601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaaddplot.source.r72350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacode.source.r25193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luacolor.source.r67987.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaindex.source.r25882.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luainputenc.source.r20491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-math.source.r61464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualatex-truncate.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lualibs.source.r67994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamathalign.source.r63226.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamml.source.r72714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamplib.source.r72835.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luaotfload.source.r70232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatex85.source.r41456.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatexbase.source.r52663.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luatextra.source.r20747.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newpax.source.r68762.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nodetree.source.r72318.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piton.source.r72889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeat.source.r45145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/semesterplannerlua.source.r71322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texfindpkg.source.r67027.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 prefix c3c4c93ebda319c0fa7ed6f942ba1010 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=d8845a0bfd905509b62061f3bd15cd5a +_md5_=025b532a2053da15c7df45422d6f0ad8 diff --git a/metadata/md5-cache/dev-texlive/texlive-mathscience-2024_p72655 b/metadata/md5-cache/dev-texlive/texlive-mathscience-2024_p72655 index 5884f2bc246c..fe03db522c33 100644 --- a/metadata/md5-cache/dev-texlive/texlive-mathscience-2024_p72655 +++ b/metadata/md5-cache/dev-texlive/texlive-mathscience-2024_p72655 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 BSD BSD-2 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 GPL-1+ GPL-2 GPL-3 GPL-3+ ISC LGPL-2+ LGPL-2.1 LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-fontsrecommended-2024 >=dev-texlive/texlive-latex-2024 !<dev-texlive/texlive-latexextra-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-mathscience.r72655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/12many.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accents.r51497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aiplans.r72202.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alg.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algobox.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithm2e.r44846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithmicx.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithms.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algpseudocodex.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algxpar.r72657.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aligned-overset.r47290.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscdx.r51532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amstex.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/annotate-equations.r67044.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apxproof.r64715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autobreak.r43337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/backnaur.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/begriff.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binomexp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biocon.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitpattern.r39073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bodeplot.r71000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bohr.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boldtensors.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bosisio.r16989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bpchem.r45120.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bropd.r35383.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bussproofs.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bussproofs-extra.r51299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bytefield.r68366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculation.r35973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cartonaugh.r59938.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascade.r65757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/causets.r66359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccfonts.r61431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccool.r60600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemarrow.r17146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemcompounds.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemcono.r17119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemexec.r21632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemformula.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemformula-ru.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemgreek.r53437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemmacros.r62655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemnum.r57490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemobabel.r64778.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemplants.r60606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemschemex.r46723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemsec.r46972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemstyle.r31096.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrscode.r51136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrscode3e.r51137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codeanatomy.r65648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloredtheorem.r72298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commutative-diagrams.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/complexity.r45322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/computational-complexity.r44847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath.r17219.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concrete.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conteq.r37868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cora-macs.r72655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/correctmathalign.r44131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cryptocode.r60249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cs-techrep.r72666.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csassignments.r63992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csthm.r72152.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cvss.r65169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decision-table.r60673.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delim.r23974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimseasy.r39589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimset.r71829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/derivative.r69746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diffcoeff.r68838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/digiconfigs.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dijkstra.r64580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/domaincoloring.r72176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawmatrix.r44471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawstack.r28582.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dyntree.r67016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easing.r59975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebproof.r57544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econometrics.r39396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eltex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emf.r42023.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endiagram.r34486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engtlc.r28571.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eolang.r72724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqexpl.r63629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnarray.r20641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnnumwarn.r45511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euclideangeometry.r67608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extarrows.r54400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extpfeil.r16243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/faktor.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fascicules.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fitch.r69160.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixdif.r66606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmath.r64648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnspe.r45360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formal-grammar.r61955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fouridx.r32214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/freealign.r69267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/functan.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/galois.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gastex.r69842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gene-logic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ghsystem.r53822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glosmathtools.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gotoh.r44764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grundgesetze.r58997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gu.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/helmholtz-ellis-ji-notation.r55213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-graphic.r67641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-reference.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepnames.r35722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepparticles.r35723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepthesis.r46054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepunits.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibrackets.r67736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/includernw.r47557.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interval.r50265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ionumbers.r33457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isomath.r27654.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isphysicalmath.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jkmath.r47109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jupynotex.r72373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaugh.r21338.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaugh-map.r61614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaughmap.r36989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keytheorems.r72832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvmap.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letterswitharrows.r72723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lie-hasse.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linearregression.r71466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logicproof.r33254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longdivision.r68609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lpform.r36918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lplfitch.r31077.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstbayes.r48160.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luanumint.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcommand.r59512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcomp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfixs.r72887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathlig.r54244.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpartir.r39864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpunctspace.r46754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathsemantics.r63241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matlab-prettifier.r34323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matrix-skeleton.r65013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mattens.r62326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mecaso.r60346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/medmath.r69510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/membranecomputing.r64627.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memorygraphs.r49631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/messagepassing.r69123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mgltex.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mhchem.r69639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mhequ.r64978.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miller.r18789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mismath.r71549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moremath.r72072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiobjective.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/naive-ebnf.r72843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namedtensor.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/natded.r32693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nchairx.r60196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicematrix.r72899.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nuc.r22256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nucleardata.r47307.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numbersets.r72558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica.r68021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica-plus.r68019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica-tables.r68193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/objectz.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/odesandpdes.r69485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oplotsymbl.r44951.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ot-tableau.r67813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oubraces.r21833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overarrows.r71774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pascaltriangle.r61774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perfectcut.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pfdicons.r60089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physconst.r58727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physics.r28590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physics2.r69369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physunits.r58728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pinoutikz.r55966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pm-isomath.r60368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmdraw.r72486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polexpr.r63337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prftree.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/principia.r66625.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proba.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proof-at-the-end.r69602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prooftrees.r72665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pseudo.r66638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pseudocode.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythonhighlight.r70698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsharp.r49722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quickreaction.r66867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quiver.r67779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rank-2-roots.r68161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rbt-mathnotes.r61193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rec-thy.r70806.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reptheorem.r72495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resolsysteme.r71707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rest-api.r57068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revquantum.r43505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ribbonproofs.r31137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rigidnotation.r71264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rmathbr.r57173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sankey.r61874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sasnrdisplay.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sciposter.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sclang-prettifier.r35087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratchx.r44906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesamanuel.r36613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfg.r20209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shuffle.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplebnf.r68959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpler-wick.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simples-matrices.r63802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplewick.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sistyle.r59682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunits.r59702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunitx.r72900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skmath.r52411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spalign.r42225.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spbmark.r72720.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stanli.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statex.r20306.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statex2.r23961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistics.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistik.r20334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statmath.r46925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/steinmetz.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stmaryrd.r22027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/string-diagrams.r67363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/structmech.r66724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/struktex.r47931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/substances.r40989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subsupscripts.r16080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subtext.r51273.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/susy.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syllogism.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sympytexpackage.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synproof.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/t-angles.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablor.r31855.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/temporal-logic.r72575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tensind.r51481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tensor.r67667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ewd.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textgreek.r44192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textopo.r23796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thermodynamics.r71522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmbox.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmlist.r70780.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmtools.r67018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tiscreen.r62602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turnstile.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulqda.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitsdef.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venn.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/witharrows.r72594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xymtex.r32182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yhmath.r54377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/youngtab.r56500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yquant.r68997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ytableau.r59580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zx-calculus.r70647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-mathscience.r72655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/12many.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accents.r51497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aiplans.r72202.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alg.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algobox.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithm2e.r44846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithmicx.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithms.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algpseudocodex.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algxpar.r72657.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aligned-overset.r47290.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscdx.r51532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amstex.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annotate-equations.r67044.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apxproof.r64715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autobreak.r43337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/backnaur.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/begriff.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binomexp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biocon.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitpattern.r39073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bodeplot.r71000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bohr.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boldtensors.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bosisio.r16989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bpchem.r45120.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bropd.r35383.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bussproofs.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bussproofs-extra.r51299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bytefield.r68366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculation.r35973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cartonaugh.r59938.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascade.r65757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/causets.r66359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccfonts.r61431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccool.r60600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemarrow.r17146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemcompounds.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemcono.r17119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemexec.r21632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemformula.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemformula-ru.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemgreek.r53437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemmacros.r62655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemnum.r57490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemobabel.r64778.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemplants.r60606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemschemex.r46723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemsec.r46972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemstyle.r31096.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrscode.r51136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrscode3e.r51137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codeanatomy.r65648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloredtheorem.r72298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commutative-diagrams.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/complexity.r45322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/computational-complexity.r44847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath.r17219.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concrete.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conteq.r37868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cora-macs.r72655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/correctmathalign.r44131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cryptocode.r60249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cs-techrep.r72666.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csassignments.r63992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csthm.r72152.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cvss.r65169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decision-table.r60673.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delim.r23974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimseasy.r39589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimset.r71829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/derivative.r69746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diffcoeff.r68838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/digiconfigs.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dijkstra.r64580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/domaincoloring.r72176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawmatrix.r44471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawstack.r28582.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dyntree.r67016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easing.r59975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebproof.r57544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econometrics.r39396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eltex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emf.r42023.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endiagram.r34486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engtlc.r28571.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eolang.r72724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqexpl.r63629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnarray.r20641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnnumwarn.r45511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euclideangeometry.r67608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extarrows.r54400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extpfeil.r16243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/faktor.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fascicules.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fitch.r69160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixdif.r66606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmath.r64648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnspe.r45360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formal-grammar.r61955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fouridx.r32214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/freealign.r69267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/functan.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/galois.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gastex.r69842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gene-logic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ghsystem.r53822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glosmathtools.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gotoh.r44764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grundgesetze.r58997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gu.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/helmholtz-ellis-ji-notation.r55213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-graphic.r67641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-reference.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepnames.r35722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepparticles.r35723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepthesis.r46054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepunits.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibrackets.r67736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/includernw.r47557.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interval.r50265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ionumbers.r33457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isomath.r27654.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isphysicalmath.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jkmath.r47109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jupynotex.r72373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaugh.r21338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaugh-map.r61614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaughmap.r36989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keytheorems.r72832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvmap.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letterswitharrows.r72723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lie-hasse.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linearregression.r71466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logicproof.r33254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longdivision.r68609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lpform.r36918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lplfitch.r31077.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstbayes.r48160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luanumint.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcommand.r59512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcomp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfixs.r72887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathlig.r54244.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpartir.r39864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpunctspace.r46754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathsemantics.r63241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matlab-prettifier.r34323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matrix-skeleton.r65013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mattens.r62326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mecaso.r60346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/medmath.r69510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/membranecomputing.r64627.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memorygraphs.r49631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/messagepassing.r69123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mgltex.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mhchem.r69639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mhequ.r64978.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miller.r18789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mismath.r71549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moremath.r72072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiobjective.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/naive-ebnf.r72843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namedtensor.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/natded.r32693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nchairx.r60196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicematrix.r72899.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nuc.r22256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nucleardata.r47307.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numbersets.r72558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica.r68021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica-plus.r68019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica-tables.r68193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/objectz.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/odesandpdes.r69485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oplotsymbl.r44951.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ot-tableau.r67813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oubraces.r21833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overarrows.r71774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pascaltriangle.r61774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perfectcut.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pfdicons.r60089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physconst.r58727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physics.r28590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physics2.r69369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physunits.r58728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pinoutikz.r55966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pm-isomath.r60368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmdraw.r72486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polexpr.r63337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prftree.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/principia.r66625.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proba.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proof-at-the-end.r69602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prooftrees.r72665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pseudo.r66638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pseudocode.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythonhighlight.r70698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsharp.r49722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quickreaction.r66867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quiver.r67779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rank-2-roots.r68161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rbt-mathnotes.r61193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rec-thy.r70806.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reptheorem.r72495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resolsysteme.r71707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rest-api.r57068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revquantum.r43505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ribbonproofs.r31137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rigidnotation.r71264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rmathbr.r57173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sankey.r61874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sasnrdisplay.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sciposter.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sclang-prettifier.r35087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratchx.r44906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesamanuel.r36613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfg.r20209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shuffle.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplebnf.r68959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpler-wick.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simples-matrices.r63802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplewick.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sistyle.r59682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunits.r59702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunitx.r72900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skmath.r52411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spalign.r42225.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spbmark.r72720.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stanli.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statex.r20306.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statex2.r23961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistics.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistik.r20334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statmath.r46925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/steinmetz.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stmaryrd.r22027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/string-diagrams.r67363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/structmech.r66724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/struktex.r47931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/substances.r40989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subsupscripts.r16080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subtext.r51273.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/susy.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syllogism.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sympytexpackage.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synproof.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/t-angles.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablor.r31855.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/temporal-logic.r72575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tensind.r51481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tensor.r67667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ewd.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textgreek.r44192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textopo.r23796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thermodynamics.r71522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmbox.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmlist.r70780.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmtools.r67018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tiscreen.r62602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turnstile.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulqda.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitsdef.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venn.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/witharrows.r72594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xymtex.r32182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yhmath.r54377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/youngtab.r56500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yquant.r68997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ytableau.r59580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zx-calculus.r70647.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/12many.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/accents.doc.r51497.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aiplans.doc.r72202.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alg.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algobox.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithm2e.doc.r44846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithmicx.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithms.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algpseudocodex.doc.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algxpar.doc.r72657.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aligned-overset.doc.r47290.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscdx.doc.r51532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amstex.doc.r70015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/annotate-equations.doc.r67044.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apxproof.doc.r64715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autobreak.doc.r43337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/backnaur.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/begriff.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binomexp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/biocon.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitpattern.doc.r39073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bodeplot.doc.r71000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bohr.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/boldtensors.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bosisio.doc.r16989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bpchem.doc.r45120.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bropd.doc.r35383.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bussproofs.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bussproofs-extra.doc.r51299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bytefield.doc.r68366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculation.doc.r35973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cartonaugh.doc.r59938.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascade.doc.r65757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/causets.doc.r66359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccfonts.doc.r61431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccool.doc.r60600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemarrow.doc.r17146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemcompounds.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemcono.doc.r17119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemexec.doc.r21632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemformula.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemformula-ru.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemgreek.doc.r53437.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemmacros.doc.r62655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemnum.doc.r57490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemobabel.doc.r64778.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemplants.doc.r60606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemschemex.doc.r46723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemsec.doc.r46972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemstyle.doc.r31096.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrscode.doc.r51136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/clrscode3e.doc.r51137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codeanatomy.doc.r65648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloredtheorem.doc.r72298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/commutative-diagrams.doc.r71053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/complexity.doc.r45322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/computational-complexity.doc.r44847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath.doc.r17219.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concrete.doc.r57963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conteq.doc.r37868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cora-macs.doc.r72655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/correctmathalign.doc.r44131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cryptocode.doc.r60249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cs-techrep.doc.r72666.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csassignments.doc.r63992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csthm.doc.r72152.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cvss.doc.r65169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decision-table.doc.r60673.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delim.doc.r23974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimseasy.doc.r39589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimset.doc.r71829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/derivative.doc.r69746.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diffcoeff.doc.r68838.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/digiconfigs.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dijkstra.doc.r64580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/domaincoloring.doc.r72176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawmatrix.doc.r44471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawstack.doc.r28582.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dyntree.doc.r67016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easing.doc.r59975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebproof.doc.r57544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/econometrics.doc.r39396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eltex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emf.doc.r42023.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endiagram.doc.r34486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/engtlc.doc.r28571.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eolang.doc.r72724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqexpl.doc.r63629.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnarray.doc.r20641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnnumwarn.doc.r45511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euclideangeometry.doc.r67608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extarrows.doc.r54400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extpfeil.doc.r16243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/faktor.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fascicules.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fitch.doc.r69160.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixdif.doc.r66606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmath.doc.r64648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fnspe.doc.r45360.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formal-grammar.doc.r61955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fouridx.doc.r32214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/freealign.doc.r69267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/functan.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/galois.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gastex.doc.r69842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gene-logic.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ghsystem.doc.r53822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/glosmathtools.doc.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gotoh.doc.r44764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grundgesetze.doc.r58997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gu.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/helmholtz-ellis-ji-notation.doc.r55213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-graphic.doc.r67641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-reference.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepnames.doc.r35722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepparticles.doc.r35723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepthesis.doc.r46054.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hepunits.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibrackets.doc.r67736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/includernw.doc.r47557.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interval.doc.r50265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ionumbers.doc.r33457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isomath.doc.r27654.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isphysicalmath.doc.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jkmath.doc.r47109.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jupynotex.doc.r72373.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaugh.doc.r21338.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaugh-map.doc.r61614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaughmap.doc.r36989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/keytheorems.doc.r72832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvmap.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letterswitharrows.doc.r72723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lie-hasse.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linearregression.doc.r71466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logicproof.doc.r33254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/longdivision.doc.r68609.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lpform.doc.r36918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lplfitch.doc.r31077.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstbayes.doc.r48160.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luanumint.doc.r68918.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcommand.doc.r59512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcomp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfixs.doc.r72887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpartir.doc.r39864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpunctspace.doc.r46754.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathsemantics.doc.r63241.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matlab-prettifier.doc.r34323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matrix-skeleton.doc.r65013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mattens.doc.r62326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mecaso.doc.r60346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/medmath.doc.r69510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/membranecomputing.doc.r64627.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memorygraphs.doc.r49631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/messagepassing.doc.r69123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mgltex.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mhchem.doc.r69639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mhequ.doc.r64978.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miller.doc.r18789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mismath.doc.r71549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moremath.doc.r72072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiobjective.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/naive-ebnf.doc.r72843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namedtensor.doc.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/natded.doc.r32693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nchairx.doc.r60196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicematrix.doc.r72899.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nuc.doc.r22256.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nucleardata.doc.r47307.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numbersets.doc.r72558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica.doc.r68021.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica-plus.doc.r68019.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numerica-tables.doc.r68193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/objectz.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/odesandpdes.doc.r69485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oplotsymbl.doc.r44951.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ot-tableau.doc.r67813.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oubraces.doc.r21833.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overarrows.doc.r71774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pascaltriangle.doc.r61774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/perfectcut.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pfdicons.doc.r60089.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physconst.doc.r58727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physics.doc.r28590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physics2.doc.r69369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physunits.doc.r58728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pinoutikz.doc.r55966.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pm-isomath.doc.r60368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmdraw.doc.r72486.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polexpr.doc.r63337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prftree.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/principia.doc.r66625.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proba.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proof-at-the-end.doc.r69602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prooftrees.doc.r72665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pseudo.doc.r66638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pseudocode.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pythonhighlight.doc.r70698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsharp.doc.r49722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quickreaction.doc.r66867.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quiver.doc.r67779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rank-2-roots.doc.r68161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rbt-mathnotes.doc.r61193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rec-thy.doc.r70806.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reptheorem.doc.r72495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resolsysteme.doc.r71707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rest-api.doc.r57068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revquantum.doc.r43505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ribbonproofs.doc.r31137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rigidnotation.doc.r71264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rmathbr.doc.r57173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sankey.doc.r61874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sasnrdisplay.doc.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sciposter.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sclang-prettifier.doc.r35087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratchx.doc.r44906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesamanuel.doc.r36613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfg.doc.r20209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shuffle.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplebnf.doc.r68959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpler-wick.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simples-matrices.doc.r63802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplewick.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sistyle.doc.r59682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunits.doc.r59702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunitx.doc.r72900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skmath.doc.r52411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spalign.doc.r42225.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spbmark.doc.r72720.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stanli.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statex.doc.r20306.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statex2.doc.r23961.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistics.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistik.doc.r20334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statmath.doc.r46925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/steinmetz.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stmaryrd.doc.r22027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/string-diagrams.doc.r67363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/structmech.doc.r66724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/struktex.doc.r47931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/substances.doc.r40989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subsupscripts.doc.r16080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/subtext.doc.r51273.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/susy.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syllogism.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sympytexpackage.doc.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/synproof.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/t-angles.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tablor.doc.r31855.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/temporal-logic.doc.r72575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tensind.doc.r51481.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tensor.doc.r67667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ewd.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textgreek.doc.r44192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textopo.doc.r23796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thermodynamics.doc.r71522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmbox.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmlist.doc.r70780.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmtools.doc.r67018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tiscreen.doc.r62602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turnstile.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulqda.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitsdef.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venn.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/witharrows.doc.r72594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xymtex.doc.r32182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yhmath.doc.r54377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/youngtab.doc.r56500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yquant.doc.r68997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ytableau.doc.r59580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zx-calculus.doc.r70647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/12many.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/accents.doc.r51497.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aiplans.doc.r72202.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alg.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algobox.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithm2e.doc.r44846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithmicx.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithms.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algpseudocodex.doc.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algxpar.doc.r72657.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aligned-overset.doc.r47290.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscdx.doc.r51532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amstex.doc.r70015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/annotate-equations.doc.r67044.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apxproof.doc.r64715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autobreak.doc.r43337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/backnaur.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/begriff.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binomexp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/biocon.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitpattern.doc.r39073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bodeplot.doc.r71000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bohr.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/boldtensors.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bosisio.doc.r16989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bpchem.doc.r45120.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bropd.doc.r35383.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bussproofs.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bussproofs-extra.doc.r51299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bytefield.doc.r68366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculation.doc.r35973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cartonaugh.doc.r59938.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascade.doc.r65757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/causets.doc.r66359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccfonts.doc.r61431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccool.doc.r60600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemarrow.doc.r17146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemcompounds.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemcono.doc.r17119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemexec.doc.r21632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemformula.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemformula-ru.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemgreek.doc.r53437.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemmacros.doc.r62655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemnum.doc.r57490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemobabel.doc.r64778.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemplants.doc.r60606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemschemex.doc.r46723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemsec.doc.r46972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemstyle.doc.r31096.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrscode.doc.r51136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/clrscode3e.doc.r51137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codeanatomy.doc.r65648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloredtheorem.doc.r72298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/commutative-diagrams.doc.r71053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/complexity.doc.r45322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/computational-complexity.doc.r44847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath.doc.r17219.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concrete.doc.r57963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conteq.doc.r37868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cora-macs.doc.r72655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/correctmathalign.doc.r44131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cryptocode.doc.r60249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cs-techrep.doc.r72666.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csassignments.doc.r63992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csthm.doc.r72152.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cvss.doc.r65169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decision-table.doc.r60673.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delim.doc.r23974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimseasy.doc.r39589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimset.doc.r71829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/derivative.doc.r69746.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diffcoeff.doc.r68838.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/digiconfigs.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dijkstra.doc.r64580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/domaincoloring.doc.r72176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawmatrix.doc.r44471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawstack.doc.r28582.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dyntree.doc.r67016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easing.doc.r59975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebproof.doc.r57544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/econometrics.doc.r39396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eltex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emf.doc.r42023.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endiagram.doc.r34486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/engtlc.doc.r28571.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eolang.doc.r72724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqexpl.doc.r63629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnarray.doc.r20641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnnumwarn.doc.r45511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euclideangeometry.doc.r67608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extarrows.doc.r54400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extpfeil.doc.r16243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/faktor.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fascicules.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fitch.doc.r69160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixdif.doc.r66606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmath.doc.r64648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fnspe.doc.r45360.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formal-grammar.doc.r61955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fouridx.doc.r32214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/freealign.doc.r69267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/functan.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/galois.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gastex.doc.r69842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gene-logic.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ghsystem.doc.r53822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/glosmathtools.doc.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gotoh.doc.r44764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grundgesetze.doc.r58997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gu.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/helmholtz-ellis-ji-notation.doc.r55213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-graphic.doc.r67641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-reference.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepnames.doc.r35722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepparticles.doc.r35723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepthesis.doc.r46054.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hepunits.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibrackets.doc.r67736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/includernw.doc.r47557.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interval.doc.r50265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ionumbers.doc.r33457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isomath.doc.r27654.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isphysicalmath.doc.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jkmath.doc.r47109.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jupynotex.doc.r72373.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaugh.doc.r21338.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaugh-map.doc.r61614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaughmap.doc.r36989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/keytheorems.doc.r72832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvmap.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letterswitharrows.doc.r72723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lie-hasse.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linearregression.doc.r71466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logicproof.doc.r33254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/longdivision.doc.r68609.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lpform.doc.r36918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lplfitch.doc.r31077.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstbayes.doc.r48160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luanumint.doc.r68918.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcommand.doc.r59512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcomp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfixs.doc.r72887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpartir.doc.r39864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpunctspace.doc.r46754.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathsemantics.doc.r63241.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matlab-prettifier.doc.r34323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matrix-skeleton.doc.r65013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mattens.doc.r62326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mecaso.doc.r60346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/medmath.doc.r69510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/membranecomputing.doc.r64627.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memorygraphs.doc.r49631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/messagepassing.doc.r69123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mgltex.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mhchem.doc.r69639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mhequ.doc.r64978.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miller.doc.r18789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mismath.doc.r71549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moremath.doc.r72072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiobjective.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/naive-ebnf.doc.r72843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namedtensor.doc.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/natded.doc.r32693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nchairx.doc.r60196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicematrix.doc.r72899.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nuc.doc.r22256.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nucleardata.doc.r47307.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numbersets.doc.r72558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica.doc.r68021.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica-plus.doc.r68019.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numerica-tables.doc.r68193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/objectz.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/odesandpdes.doc.r69485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oplotsymbl.doc.r44951.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ot-tableau.doc.r67813.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oubraces.doc.r21833.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overarrows.doc.r71774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pascaltriangle.doc.r61774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/perfectcut.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pfdicons.doc.r60089.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physconst.doc.r58727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physics.doc.r28590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physics2.doc.r69369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physunits.doc.r58728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pinoutikz.doc.r55966.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pm-isomath.doc.r60368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmdraw.doc.r72486.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polexpr.doc.r63337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prftree.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/principia.doc.r66625.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proba.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proof-at-the-end.doc.r69602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prooftrees.doc.r72665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pseudo.doc.r66638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pseudocode.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pythonhighlight.doc.r70698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsharp.doc.r49722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quickreaction.doc.r66867.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quiver.doc.r67779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rank-2-roots.doc.r68161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rbt-mathnotes.doc.r61193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rec-thy.doc.r70806.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reptheorem.doc.r72495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resolsysteme.doc.r71707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rest-api.doc.r57068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revquantum.doc.r43505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ribbonproofs.doc.r31137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rigidnotation.doc.r71264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rmathbr.doc.r57173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sankey.doc.r61874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sasnrdisplay.doc.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sciposter.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sclang-prettifier.doc.r35087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratchx.doc.r44906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesamanuel.doc.r36613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfg.doc.r20209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shuffle.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplebnf.doc.r68959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpler-wick.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simples-matrices.doc.r63802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplewick.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sistyle.doc.r59682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunits.doc.r59702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunitx.doc.r72900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skmath.doc.r52411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spalign.doc.r42225.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spbmark.doc.r72720.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stanli.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statex.doc.r20306.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statex2.doc.r23961.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistics.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistik.doc.r20334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statmath.doc.r46925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/steinmetz.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stmaryrd.doc.r22027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/string-diagrams.doc.r67363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/structmech.doc.r66724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/struktex.doc.r47931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/substances.doc.r40989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subsupscripts.doc.r16080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/subtext.doc.r51273.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/susy.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syllogism.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sympytexpackage.doc.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/synproof.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/t-angles.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tablor.doc.r31855.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/temporal-logic.doc.r72575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tensind.doc.r51481.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tensor.doc.r67667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ewd.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textgreek.doc.r44192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textopo.doc.r23796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thermodynamics.doc.r71522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmbox.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmlist.doc.r70780.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmtools.doc.r67018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tiscreen.doc.r62602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turnstile.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulqda.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitsdef.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venn.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/witharrows.doc.r72594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xymtex.doc.r32182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yhmath.doc.r54377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/youngtab.doc.r56500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yquant.doc.r68997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ytableau.doc.r59580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zx-calculus.doc.r70647.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/12many.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/alg.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algobox.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/algorithms.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aligned-overset.source.r47290.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amscdx.source.r51532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apxproof.source.r64715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autobreak.source.r43337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/backnaur.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binomexp.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitpattern.source.r39073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bodeplot.source.r71000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bosisio.source.r16989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bpchem.source.r45120.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bropd.source.r35383.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bussproofs-extra.source.r51299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bytefield.source.r68366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calculation.source.r35973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cartonaugh.source.r59938.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascade.source.r65757.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccfonts.source.r61431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ccool.source.r60600.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemarrow.source.r17146.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemcompounds.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemobabel.source.r64778.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemschemex.source.r46723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemsec.source.r46972.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemstyle.source.r31096.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/codeanatomy.source.r65648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/computational-complexity.source.r44847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/concmath.source.r17219.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/conteq.source.r37868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cryptocode.source.r60249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cs-techrep.source.r72666.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csassignments.source.r63992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/csthm.source.r72152.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cvss.source.r65169.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/decision-table.source.r60673.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delim.source.r23974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/delimset.source.r71829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drawmatrix.source.r44471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dyntree.source.r67016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/easing.source.r59975.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebproof.source.r57544.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eolang.source.r72724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eqnarray.source.r20641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euclideangeometry.source.r67608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/extpfeil.source.r16243.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/faktor.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fascicules.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixdif.source.r66606.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixmath.source.r64648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/formal-grammar.source.r61955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fouridx.source.r32214.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/functan.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/galois.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gotoh.source.r44764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grundgesetze.source.r58997.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/helmholtz-ellis-ji-notation.source.r55213.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-graphic.source.r67641.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-reference.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ibrackets.source.r67736.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ionumbers.source.r33457.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/isphysicalmath.source.r69343.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaugh-map.source.r61614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/karnaughmap.source.r36989.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kvmap.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letterswitharrows.source.r72723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/linearregression.source.r71466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/logicproof.source.r33254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lplfitch.source.r31077.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lstbayes.source.r48160.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcommand.source.r59512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathcomp.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathfixs.source.r72887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathpartir.source.r39864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matlab-prettifier.source.r34323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mattens.source.r62326.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/messagepassing.source.r69123.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mgltex.source.r63255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miller.source.r18789.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mismath.source.r71549.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/moremath.source.r72072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multiobjective.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/naive-ebnf.source.r72843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nchairx.source.r60196.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nicematrix.source.r72899.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nucleardata.source.r47307.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/objectz.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/odesandpdes.source.r69485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/overarrows.source.r71774.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physconst.source.r58727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physics2.source.r69369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/physunits.source.r58728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pm-isomath.source.r60368.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proba.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proof-at-the-end.source.r69602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qsharp.source.r49722.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reptheorem.source.r72495.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rest-api.source.r57068.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revquantum.source.r43505.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rigidnotation.source.r71264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rmathbr.source.r57173.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sankey.source.r61874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sclang-prettifier.source.r35087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sesamanuel.source.r36613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shuffle.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simples-matrices.source.r63802.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplewick.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sistyle.source.r59682.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunits.source.r59702.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/siunitx.source.r72900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/skmath.source.r52411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spalign.source.r42225.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistics.source.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statistik.source.r20334.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/statmath.source.r46925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/steinmetz.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stmaryrd.source.r22027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/string-diagrams.source.r67363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/struktex.source.r47931.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sympytexpackage.source.r57090.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/temporal-logic.source.r72575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tensor.source.r67667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textgreek.source.r44192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textopo.source.r23796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thermodynamics.source.r71522.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmbox.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thmtools.source.r67018.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turnstile.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulqda.source.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitsdef.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/witharrows.source.r72594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xymtex.source.r32182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yhmath.source.r54377.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/youngtab.source.r56500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ytableau.source.r59580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/12many.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/alg.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algobox.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/algorithms.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aligned-overset.source.r47290.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amscdx.source.r51532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apxproof.source.r64715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autobreak.source.r43337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/backnaur.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binomexp.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitpattern.source.r39073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bodeplot.source.r71000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bosisio.source.r16989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bpchem.source.r45120.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bropd.source.r35383.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bussproofs-extra.source.r51299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bytefield.source.r68366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calculation.source.r35973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cartonaugh.source.r59938.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascade.source.r65757.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccfonts.source.r61431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ccool.source.r60600.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemarrow.source.r17146.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemcompounds.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemobabel.source.r64778.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemschemex.source.r46723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemsec.source.r46972.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemstyle.source.r31096.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/codeanatomy.source.r65648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/computational-complexity.source.r44847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/concmath.source.r17219.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/conteq.source.r37868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cryptocode.source.r60249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cs-techrep.source.r72666.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csassignments.source.r63992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/csthm.source.r72152.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cvss.source.r65169.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/decision-table.source.r60673.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delim.source.r23974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/delimset.source.r71829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drawmatrix.source.r44471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dyntree.source.r67016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/easing.source.r59975.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebproof.source.r57544.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eolang.source.r72724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eqnarray.source.r20641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euclideangeometry.source.r67608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/extpfeil.source.r16243.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/faktor.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fascicules.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixdif.source.r66606.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixmath.source.r64648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/formal-grammar.source.r61955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fouridx.source.r32214.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/functan.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/galois.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gotoh.source.r44764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grundgesetze.source.r58997.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/helmholtz-ellis-ji-notation.source.r55213.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-graphic.source.r67641.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-reference.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ibrackets.source.r67736.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ionumbers.source.r33457.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/isphysicalmath.source.r69343.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaugh-map.source.r61614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/karnaughmap.source.r36989.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kvmap.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letterswitharrows.source.r72723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/linearregression.source.r71466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/logicproof.source.r33254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lplfitch.source.r31077.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lstbayes.source.r48160.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcommand.source.r59512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathcomp.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathfixs.source.r72887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathpartir.source.r39864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matlab-prettifier.source.r34323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mattens.source.r62326.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/messagepassing.source.r69123.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mgltex.source.r63255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miller.source.r18789.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mismath.source.r71549.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/moremath.source.r72072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multiobjective.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/naive-ebnf.source.r72843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nchairx.source.r60196.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nicematrix.source.r72899.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nucleardata.source.r47307.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/objectz.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/odesandpdes.source.r69485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/overarrows.source.r71774.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physconst.source.r58727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physics2.source.r69369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/physunits.source.r58728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pm-isomath.source.r60368.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proba.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proof-at-the-end.source.r69602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qsharp.source.r49722.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reptheorem.source.r72495.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rest-api.source.r57068.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revquantum.source.r43505.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rigidnotation.source.r71264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rmathbr.source.r57173.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sankey.source.r61874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sclang-prettifier.source.r35087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sesamanuel.source.r36613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shuffle.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simples-matrices.source.r63802.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplewick.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sistyle.source.r59682.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunits.source.r59702.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/siunitx.source.r72900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/skmath.source.r52411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spalign.source.r42225.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistics.source.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statistik.source.r20334.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/statmath.source.r46925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/steinmetz.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stmaryrd.source.r22027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/string-diagrams.source.r67363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/struktex.source.r47931.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sympytexpackage.source.r57090.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/temporal-logic.source.r72575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tensor.source.r67667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textgreek.source.r44192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textopo.source.r23796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thermodynamics.source.r71522.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmbox.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thmtools.source.r67018.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turnstile.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulqda.source.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitsdef.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/witharrows.source.r72594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xymtex.source.r32182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yhmath.source.r54377.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/youngtab.source.r56500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ytableau.source.r59580.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=8bcb17ff311daeb2131dc57e91e15a7f +_md5_=2401698521483ab0e11e15b2b514d170 diff --git a/metadata/md5-cache/dev-texlive/texlive-metapost-2024_p72550 b/metadata/md5-cache/dev-texlive/texlive-metapost-2024_p72550 index 368f9a68246d..e0d0f8d3b673 100644 --- a/metadata/md5-cache/dev-texlive/texlive-metapost-2024_p72550 +++ b/metadata/md5-cache/dev-texlive/texlive-metapost-2024_p72550 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC-BY-SA-4.0 EUPL-1.2 GPL-1+ GPL-2+ GPL-3+ LGPL-2+ LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-metapost.r72550.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/automata.r19717.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbcard.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blockdraw_mp.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bpolynomial.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmarrows.r24378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drv.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviincl.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emp.r23483.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsincl.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expressg.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exteps.r19859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/featpost.r35346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmf.r17259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmp-auto.r30223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fiziko.r61944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garrigues.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmp.r21691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hatching.r23818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hershey-mp.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huffman.r67071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexmp.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metago.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metaobj.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metaplot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metapost.r70041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metapost-colorbrewer.r48753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metauml.r49923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic.r28444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic4ode.r17745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-hatching.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mp-geom2d.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mp3d.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mparrows.r39729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpattern.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpchess.r72664.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpcolornames.r23252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpgraphics.r29776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpkiviat.r71319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mptrees.r70887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piechartmp.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repere.r66998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roex.r45818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roundrect.r39796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shapes.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/slideshow.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splines.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suanpan.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textpath.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeddice.r20675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-metapost.r72550.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/automata.r19717.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbcard.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blockdraw_mp.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bpolynomial.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmarrows.r24378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drv.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviincl.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emp.r23483.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsincl.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expressg.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exteps.r19859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/featpost.r35346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmf.r17259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmp-auto.r30223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fiziko.r61944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garrigues.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmp.r21691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hatching.r23818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hershey-mp.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huffman.r67071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexmp.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metago.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metaobj.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metaplot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metapost.r70041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metapost-colorbrewer.r48753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metauml.r49923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic.r28444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic4ode.r17745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-hatching.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mp-geom2d.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mp3d.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mparrows.r39729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpattern.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpchess.r72664.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpcolornames.r23252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpgraphics.r29776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpkiviat.r71319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mptrees.r70887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piechartmp.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repere.r66998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roex.r45818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roundrect.r39796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shapes.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/slideshow.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splines.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suanpan.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textpath.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeddice.r20675.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/automata.doc.r19717.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bbcard.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blockdraw_mp.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bpolynomial.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmarrows.doc.r24378.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drv.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dviincl.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emp.doc.r23483.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsincl.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expressg.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/exteps.doc.r19859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/featpost.doc.r35346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmf.doc.r17259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmp-auto.doc.r30223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fiziko.doc.r61944.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/garrigues.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmp.doc.r21691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hatching.doc.r23818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hershey-mp.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/huffman.doc.r67071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latexmp.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcf2graph.doc.r72872.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metago.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metaobj.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metaplot.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metapost.doc.r70041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metapost-colorbrewer.doc.r48753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metauml.doc.r49923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic.doc.r28444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic4ode.doc.r17745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/minim-hatching.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mp-geom2d.doc.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mp3d.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mparrows.doc.r39729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpattern.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpchess.doc.r72664.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpcolornames.doc.r23252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpgraphics.doc.r29776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpkiviat.doc.r71319.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mptrees.doc.r70887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piechartmp.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/repere.doc.r66998.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roundrect.doc.r39796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shapes.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/slideshow.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splines.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suanpan.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/textpath.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/threeddice.doc.r20675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/automata.doc.r19717.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bbcard.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blockdraw_mp.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bpolynomial.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmarrows.doc.r24378.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drv.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dviincl.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emp.doc.r23483.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsincl.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expressg.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/exteps.doc.r19859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/featpost.doc.r35346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmf.doc.r17259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmp-auto.doc.r30223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fiziko.doc.r61944.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/garrigues.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmp.doc.r21691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hatching.doc.r23818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hershey-mp.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/huffman.doc.r67071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latexmp.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcf2graph.doc.r72872.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metago.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metaobj.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metaplot.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metapost.doc.r70041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metapost-colorbrewer.doc.r48753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metauml.doc.r49923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic.doc.r28444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic4ode.doc.r17745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/minim-hatching.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mp-geom2d.doc.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mp3d.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mparrows.doc.r39729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpattern.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpchess.doc.r72664.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpcolornames.doc.r23252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpgraphics.doc.r29776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpkiviat.doc.r71319.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mptrees.doc.r70887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piechartmp.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/repere.doc.r66998.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roundrect.doc.r39796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shapes.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/slideshow.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splines.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suanpan.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/textpath.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/threeddice.doc.r20675.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/emp.source.r23483.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expressg.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmf.source.r17259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/feynmp-auto.source.r30223.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gmp.source.r21691.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic.source.r28444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mfpic4ode.source.r17745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpcolornames.source.r23252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mpgraphics.source.r29776.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roex.source.r45818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/roundrect.source.r39796.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shapes.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/splines.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emp.source.r23483.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expressg.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmf.source.r17259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/feynmp-auto.source.r30223.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gmp.source.r21691.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic.source.r28444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mfpic4ode.source.r17745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpcolornames.source.r23252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mpgraphics.source.r29776.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roex.source.r45818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/roundrect.source.r39796.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shapes.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/splines.source.r15878.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=0875dc542a9fca1a2f308dbf3a4254bd +_md5_=1553f7a5977f77db114343014f37b8d5 diff --git a/metadata/md5-cache/dev-texlive/texlive-music-2024_p69613 b/metadata/md5-cache/dev-texlive/texlive-music-2024_p69613 index 6e0ba94036eb..e69156b253a5 100644 --- a/metadata/md5-cache/dev-texlive/texlive-music-2024_p69613 +++ b/metadata/md5-cache/dev-texlive/texlive-music-2024_p69613 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD CC-BY-SA-4.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 LGPL-2.1 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT RDEPEND=>=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-music.r69613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abc.r41157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bagpipe.r34393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chordbars.r70392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chordbox.r51000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ddphonism.r52009.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figbas.r28943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gchords.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gregoriotex.r58331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtrcrd.r32484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitar.r32258.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitarchordschemes.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitartabs.r48102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harmony.r72045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leadsheets.r61504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lilyglyphs.r56473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lyluatex.r66880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musical.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musicography.r68220.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixguit.r21649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtex.r70804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtex-fonts.r65517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtnt.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/octave.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piano.r21574.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmxchords.r39249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recorder-fingering.r68595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songbook.r18136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songproj.r66704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songs.r51494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undar-digitacion.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpiano.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-music.r69613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abc.r41157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bagpipe.r34393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chordbars.r70392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chordbox.r51000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ddphonism.r52009.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figbas.r28943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gchords.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gregoriotex.r58331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtrcrd.r32484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitar.r32258.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitarchordschemes.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitartabs.r48102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harmony.r72045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leadsheets.r61504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lilyglyphs.r56473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lyluatex.r66880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musical.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musicography.r68220.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixguit.r21649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtex.r70804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtex-fonts.r65517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtnt.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/octave.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piano.r21574.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmxchords.r39249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recorder-fingering.r68595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songbook.r18136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songproj.r66704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songs.r51494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undar-digitacion.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpiano.r61719.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/abc.doc.r41157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bagpipe.doc.r34393.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chordbars.doc.r70392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chordbox.doc.r51000.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ddphonism.doc.r52009.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figbas.doc.r28943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gchords.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gregoriotex.doc.r58331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtrcrd.doc.r32484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitar.doc.r32258.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitarchordschemes.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitartabs.doc.r48102.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harmony.doc.r72045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex4musicians.doc.r49759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/leadsheets.doc.r61504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lilyglyphs.doc.r56473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lyluatex.doc.r66880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musical.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musicography.doc.r68220.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixguit.doc.r21649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtex.doc.r70804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtex-fonts.doc.r65517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtnt.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/octave.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/piano.doc.r21574.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmxchords.doc.r39249.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/recorder-fingering.doc.r68595.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songbook.doc.r18136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songproj.doc.r66704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songs.doc.r51494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undar-digitacion.doc.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpiano.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abc.doc.r41157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bagpipe.doc.r34393.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chordbars.doc.r70392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chordbox.doc.r51000.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ddphonism.doc.r52009.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figbas.doc.r28943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gchords.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gregoriotex.doc.r58331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtrcrd.doc.r32484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitar.doc.r32258.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitarchordschemes.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitartabs.doc.r48102.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harmony.doc.r72045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex4musicians.doc.r49759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/leadsheets.doc.r61504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lilyglyphs.doc.r56473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lyluatex.doc.r66880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musical.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musicography.doc.r68220.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixguit.doc.r21649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtex.doc.r70804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtex-fonts.doc.r65517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtnt.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/octave.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/piano.doc.r21574.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmxchords.doc.r39249.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/recorder-fingering.doc.r68595.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songbook.doc.r18136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songproj.doc.r66704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songs.doc.r51494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undar-digitacion.doc.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpiano.doc.r61719.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/abc.source.r41157.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gregoriotex.source.r58331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/guitar.source.r32258.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lilyglyphs.source.r56473.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musixtex.source.r70804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songbook.source.r18136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songproj.source.r66704.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/songs.source.r51494.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/undar-digitacion.source.r69742.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpiano.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abc.source.r41157.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gregoriotex.source.r58331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/guitar.source.r32258.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lilyglyphs.source.r56473.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musixtex.source.r70804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songbook.source.r18136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songproj.source.r66704.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/songs.source.r51494.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/undar-digitacion.source.r69742.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpiano.source.r61719.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=b7f39c71a902ced9dba84bcd97fb6333 +_md5_=646620363f56173abf523e377b0e2dd2 diff --git a/metadata/md5-cache/dev-texlive/texlive-pictures-2024_p72555 b/metadata/md5-cache/dev-texlive/texlive-pictures-2024_p72555 index fd2f03bada56..f9ec987f05a3 100644 --- a/metadata/md5-cache/dev-texlive/texlive-pictures-2024_p72555 +++ b/metadata/md5-cache/dev-texlive/texlive-pictures-2024_p72555 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 BSD-2 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-1.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ ISC LPPL-1.0 LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/epspdf-0.6.5.1 >=dev-tex/pgf-3.1.10 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-pictures.r72555.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adigraph.r70422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aobs-tikz.r70952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/askmaps.r56730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asyfig.r17512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asypictureb.r33490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autoarea.r59552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bardiag.r22013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerswitch.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binarytree.r41777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blochsphere.r38388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bloques.r22490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blox.r57949.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bodegraph.r68785.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bondgraph.r21670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bondgraphs.r36605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braids.r69398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxeepic.r30559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/byo-twemojis.r58917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/byrne.r61943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cachepic.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/callouts.r44899.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/celtic.r39797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemfig.r69227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circuit-macros.r71389.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circuitikz.r71968.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circularglyphs.r68476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coffeestains.r59703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloredbelts.r72782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combinedgraphics.r27198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve.r20745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve2e.r72842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curves.r45255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dcpic.r30206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagmac2.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ditaa.r48932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dot2texi.r26237.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dottex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dpcircling.r54994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dratex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drs.r19232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duotenzor.r18728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynkin-diagrams.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecgdraw.r41617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eepic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egpeirce.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipse.r39025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endofproofwd.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epspdfconversion.r18703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esk.r18115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euflag.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fadingimage.r71190.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fast-diagram.r29264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fenetrecas.r68779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fig4latex.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figchild.r62945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figput.r63957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fitbox.r50088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowchart.r36572.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forest.r57398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogytree.r66513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getmap.r50589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gincltex.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnuplottex.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradientframe.r21387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grafcet.r22509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graph35.r66772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicxpsd.r57341.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphviz.r31517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtrlib-largetrees.r49062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harveyballs.r32003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/here.r16135.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hf-tikz.r34733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobby.r68137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvfloat.r72452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/istgame.r62946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kblocks.r57617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kinematikz.r61392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knitting.r50782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knittingpattern.r17205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ladder.r44394.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lapdf.r23806.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-make.r60874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/liftarm.r71309.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lpic.r20843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lroundrect.r39804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamesh.r63875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luasseq.r65511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maker.r44823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeshape.r28973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathspic.r31957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoize.r70841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mercatormap.r71976.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/milsymb.r66697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miniplot.r17483.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkpic.r33700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modiagram.r56886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/neuralnetwork.r31500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nl-interval.r58328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nndraw.r59674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numericplots.r31729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outilsgeomtikz.r72145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papiergurvan.r68239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pb-diagram.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/petri-nets.r39165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-blur.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-interference.r61562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-periodictable.r72236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-pie.r63603.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-soroban.r32269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-spectra.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-umlcd.r63386.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-umlsd.r55342.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfgantt.r71565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfkeysearch.r69385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfkeyx.r26093.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmolbio.r71551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmorepages.r54770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfopts.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfornament.r72029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfplots.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfplotsthemebeamer.r71954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/picinpar.r65097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pict2e.r56504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictex.r59551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictex2.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictochrono.r69855.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pinlabel.r24769.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pixelart.r66012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pixelarttikz.r72726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmgraph.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyhedra.r68770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyomino.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postage.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postit.r67344.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prerex.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/productbox.r20886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptolemaicastronomy.r50810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/puyotikz.r57254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxpgfmark.r30212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxpic.r67955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qcircuit.r48400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrcode.r36065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quantikz.r67206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randbild.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomwalk.r49513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realhats.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reotex.r34924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robotarm.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rviewport.r23739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sa-tikz.r32815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sacsymb.r65768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schemabloc.r68445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratch.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratch3.r61921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scsnowman.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setdeck.r40613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/signchart.r39707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplenodes.r62888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleoptics.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartdiagram.r42781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spath3.r71396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spectralsequences.r65667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/strands.r59906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sunpath.r72604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swimgraf.r25446.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntaxdi.r56685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/table-fct.r41849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdraw.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ticollege.r36306.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-3dplot.r25087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-among-us.r60880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bagua.r64103.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bayesnet.r38295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bbox.r57444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-cd.r59133.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-decofonts.r72545.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-dependency.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-dimline.r35805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-ext.r66737.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-feynhand.r51915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-feynman.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-imagelabels.r51490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-inet.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-kalender.r52890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-karnaugh.r62040.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-ladder.r62992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-lake-fig.r55288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-layers.r46660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-mirror-lens.r65500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-nef.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-network.r51884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-nfold.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-opm.r32769.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-optics.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-osci.r68636.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-page.r42039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-palattice.r43442.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-planets.r55002.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-qtree.r26108.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-relay.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-sfc.r49424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-swigs.r59889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-timing.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-trackschematic.r63480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-truchet.r50020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz2d-fr.r67239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz3d-fr.r72297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzbricks.r71933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzcodeblocks.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzdotncross.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzducks.r71098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzfill.r67847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzinclude.r28715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzlings.r63628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzmark.r64819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzmarmots.r71076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzorbital.r36439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpackets.r55827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpagenodes.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpeople.r67840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpfeile.r25777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpingus.r68310.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzposter.r32732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzquads.r72580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzquests.r69388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzscale.r30637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzsymbols.r61300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikztosvg.r60289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzviolinplots.r66659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tile-graphic.r55325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tilings.r67292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timing-diagrams.r31491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipfr.r38646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-base.r69460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-berge.r57485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-bernoulli.r68780.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-doc.r68665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-elements.r71827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-euclide.r71131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-fct.r61949.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-graph.r57484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-grapheur.r72701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-orm.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-tab.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkzexample.r63908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tonevalue.r60058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tqft.r71401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tsemlines.r23440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tufte-latex.r37649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twemojis.r62930.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tzplot.r64537.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utfsym.r63076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vectorlogos.r70819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venndiagram.r47952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wheelchart.r71928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordcloud.r68209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/worldflags.r68827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xistercian.r61366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpicture.r28770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xypic.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-pictures.r72555.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adigraph.r70422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aobs-tikz.r70952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/askmaps.r56730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asyfig.r17512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asypictureb.r33490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autoarea.r59552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bardiag.r22013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerswitch.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binarytree.r41777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blochsphere.r38388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bloques.r22490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blox.r57949.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bodegraph.r68785.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bondgraph.r21670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bondgraphs.r36605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braids.r69398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxeepic.r30559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/byo-twemojis.r58917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/byrne.r61943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cachepic.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/callouts.r44899.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/celtic.r39797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemfig.r69227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circuit-macros.r71389.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circuitikz.r71968.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circularglyphs.r68476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coffeestains.r59703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloredbelts.r72782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combinedgraphics.r27198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve.r20745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve2e.r72842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curves.r45255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dcpic.r30206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagmac2.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ditaa.r48932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dot2texi.r26237.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dottex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dpcircling.r54994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dratex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drs.r19232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duotenzor.r18728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynkin-diagrams.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecgdraw.r41617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eepic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egpeirce.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipse.r39025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endofproofwd.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epspdfconversion.r18703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esk.r18115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euflag.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fadingimage.r71190.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fast-diagram.r29264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fenetrecas.r68779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fig4latex.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figchild.r62945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figput.r63957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fitbox.r50088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowchart.r36572.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forest.r57398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogytree.r66513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getmap.r50589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gincltex.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnuplottex.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradientframe.r21387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grafcet.r22509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graph35.r66772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicxpsd.r57341.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphviz.r31517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtrlib-largetrees.r49062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harveyballs.r32003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/here.r16135.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hf-tikz.r34733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobby.r68137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvfloat.r72452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/istgame.r62946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kblocks.r57617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kinematikz.r61392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knitting.r50782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knittingpattern.r17205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ladder.r44394.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lapdf.r23806.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-make.r60874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/liftarm.r71309.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lpic.r20843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lroundrect.r39804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamesh.r63875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luasseq.r65511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maker.r44823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeshape.r28973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathspic.r31957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoize.r70841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mercatormap.r71976.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/milsymb.r66697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miniplot.r17483.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkpic.r33700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modiagram.r56886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/neuralnetwork.r31500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nl-interval.r58328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nndraw.r59674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numericplots.r31729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outilsgeomtikz.r72145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papiergurvan.r68239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pb-diagram.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/petri-nets.r39165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-blur.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-interference.r61562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-periodictable.r72236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-pie.r63603.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-soroban.r32269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-spectra.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-umlcd.r63386.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-umlsd.r55342.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfgantt.r71565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfkeysearch.r69385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfkeyx.r26093.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmolbio.r71551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmorepages.r54770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfopts.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfornament.r72029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfplots.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfplotsthemebeamer.r71954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/picinpar.r65097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pict2e.r56504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictex.r59551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictex2.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictochrono.r69855.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pinlabel.r24769.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pixelart.r66012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pixelarttikz.r72726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmgraph.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyhedra.r68770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyomino.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postage.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postit.r67344.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prerex.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/productbox.r20886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptolemaicastronomy.r50810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/puyotikz.r57254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxpgfmark.r30212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxpic.r67955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qcircuit.r48400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrcode.r36065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quantikz.r67206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randbild.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomwalk.r49513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realhats.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reotex.r34924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robotarm.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rviewport.r23739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sa-tikz.r32815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sacsymb.r65768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schemabloc.r68445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratch.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratch3.r61921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scsnowman.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setdeck.r40613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/signchart.r39707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplenodes.r62888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleoptics.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartdiagram.r42781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spath3.r71396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spectralsequences.r65667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/strands.r59906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sunpath.r72604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swimgraf.r25446.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntaxdi.r56685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/table-fct.r41849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdraw.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ticollege.r36306.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-3dplot.r25087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-among-us.r60880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bagua.r64103.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bayesnet.r38295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bbox.r57444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-cd.r59133.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-decofonts.r72545.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-dependency.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-dimline.r35805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-ext.r66737.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-feynhand.r51915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-feynman.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-imagelabels.r51490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-inet.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-kalender.r52890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-karnaugh.r62040.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-ladder.r62992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-lake-fig.r55288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-layers.r46660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-mirror-lens.r65500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-nef.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-network.r51884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-nfold.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-opm.r32769.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-optics.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-osci.r68636.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-page.r42039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-palattice.r43442.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-planets.r55002.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-qtree.r26108.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-relay.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-sfc.r49424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-swigs.r59889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-timing.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-trackschematic.r63480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-truchet.r50020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz2d-fr.r67239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz3d-fr.r72297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzbricks.r71933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzcodeblocks.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzdotncross.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzducks.r71098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzfill.r67847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzinclude.r28715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzlings.r63628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzmark.r64819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzmarmots.r71076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzorbital.r36439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpackets.r55827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpagenodes.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpeople.r67840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpfeile.r25777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpingus.r68310.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzposter.r32732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzquads.r72580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzquests.r69388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzscale.r30637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzsymbols.r61300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikztosvg.r60289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzviolinplots.r66659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tile-graphic.r55325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tilings.r67292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timing-diagrams.r31491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipfr.r38646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-base.r69460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-berge.r57485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-bernoulli.r68780.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-doc.r68665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-elements.r71827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-euclide.r71131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-fct.r61949.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-graph.r57484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-grapheur.r72701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-orm.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-tab.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkzexample.r63908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tonevalue.r60058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tqft.r71401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tsemlines.r23440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tufte-latex.r37649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twemojis.r62930.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tzplot.r64537.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utfsym.r63076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vectorlogos.r70819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venndiagram.r47952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wheelchart.r71928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordcloud.r68209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/worldflags.r68827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xistercian.r61366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpicture.r28770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xypic.r61719.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/adigraph.doc.r70422.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aobs-tikz.doc.r70952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/askmaps.doc.r56730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asyfig.doc.r17512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asypictureb.doc.r33490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autoarea.doc.r59552.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bardiag.doc.r22013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerswitch.doc.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binarytree.doc.r41777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blochsphere.doc.r38388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bloques.doc.r22490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blox.doc.r57949.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bodegraph.doc.r68785.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bondgraph.doc.r21670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bondgraphs.doc.r36605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braids.doc.r69398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bxeepic.doc.r30559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/byo-twemojis.doc.r58917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/byrne.doc.r61943.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cachepic.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/callouts.doc.r44899.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/celtic.doc.r39797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chemfig.doc.r69227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circuit-macros.doc.r71389.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circuitikz.doc.r71968.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/circularglyphs.doc.r68476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coffeestains.doc.r59703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/coloredbelts.doc.r72782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combinedgraphics.doc.r27198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve.doc.r20745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve2e.doc.r72842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curves.doc.r45255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dcpic.doc.r30206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/diagmac2.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ditaa.doc.r48932.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/doc-pictex.doc.r24927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dot2texi.doc.r26237.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dottex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dpcircling.doc.r54994.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dratex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/drs.doc.r19232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/duotenzor.doc.r18728.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dynkin-diagrams.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecgdraw.doc.r41617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eepic.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/egpeirce.doc.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipse.doc.r39025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/endofproofwd.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epspdfconversion.doc.r18703.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esk.doc.r18115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euflag.doc.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fadingimage.doc.r71190.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fast-diagram.doc.r29264.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fenetrecas.doc.r68779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fig4latex.doc.r26313.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figchild.doc.r62945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figput.doc.r63957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fitbox.doc.r50088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowchart.doc.r36572.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forest.doc.r57398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/genealogytree.doc.r66513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getmap.doc.r50589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gincltex.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnuplottex.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradientframe.doc.r21387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grafcet.doc.r22509.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graph35.doc.r66772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphicxpsd.doc.r57341.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphviz.doc.r31517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtrlib-largetrees.doc.r49062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/harveyballs.doc.r32003.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/here.doc.r16135.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hf-tikz.doc.r34733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobby.doc.r68137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hvfloat.doc.r72452.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/istgame.doc.r62946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kblocks.doc.r57617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kinematikz.doc.r61392.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knitting.doc.r50782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/knittingpattern.doc.r17205.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ladder.doc.r44394.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lapdf.doc.r23806.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-make.doc.r60874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/liftarm.doc.r71309.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lpic.doc.r20843.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lroundrect.doc.r39804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luamesh.doc.r63875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luasseq.doc.r65511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/maker.doc.r44823.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeshape.doc.r28973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathspic.doc.r31957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoize.doc.r70841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mercatormap.doc.r71976.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/milsymb.doc.r66697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/miniplot.doc.r17483.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkpic.doc.r33700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modiagram.doc.r56886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/neuralnetwork.doc.r31500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nl-interval.doc.r58328.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nndraw.doc.r59674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/numericplots.doc.r31729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outilsgeomtikz.doc.r72145.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/papiergurvan.doc.r68239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pb-diagram.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/petri-nets.doc.r39165.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-blur.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-interference.doc.r61562.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-periodictable.doc.r72236.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-pie.doc.r63603.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-soroban.doc.r32269.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-spectra.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-umlcd.doc.r63386.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-umlsd.doc.r55342.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfgantt.doc.r71565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfkeysearch.doc.r69385.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfkeyx.doc.r26093.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmolbio.doc.r71551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmorepages.doc.r54770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfopts.doc.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfornament.doc.r72029.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfplots.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfplotsthemebeamer.doc.r71954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/picinpar.doc.r65097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pict2e.doc.r56504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictex.doc.r59551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pictochrono.doc.r69855.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pinlabel.doc.r24769.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pixelart.doc.r66012.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pixelarttikz.doc.r72726.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pmgraph.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyhedra.doc.r68770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/polyomino.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postage.doc.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postit.doc.r67344.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prerex.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/productbox.doc.r20886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptolemaicastronomy.doc.r50810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/puyotikz.doc.r57254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxpgfmark.doc.r30212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxpic.doc.r67955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qcircuit.doc.r48400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrcode.doc.r36065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quantikz.doc.r67206.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randbild.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomwalk.doc.r49513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realhats.doc.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/reotex.doc.r34924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robotarm.doc.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rviewport.doc.r23739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sa-tikz.doc.r32815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sacsymb.doc.r65768.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schemabloc.doc.r68445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratch.doc.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scratch3.doc.r61921.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scsnowman.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/setdeck.doc.r40613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/signchart.doc.r39707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplenodes.doc.r62888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simpleoptics.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartdiagram.doc.r42781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spath3.doc.r71396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spectralsequences.doc.r65667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/strands.doc.r59906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sunpath.doc.r72604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swimgraf.doc.r25446.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/syntaxdi.doc.r56685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/table-fct.doc.r41849.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdraw.doc.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ticollege.doc.r36306.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-3dplot.doc.r25087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-among-us.doc.r60880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bagua.doc.r64103.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bayesnet.doc.r38295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-bbox.doc.r57444.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-cd.doc.r59133.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-decofonts.doc.r72545.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-dependency.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-dimline.doc.r35805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-ext.doc.r66737.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-feynhand.doc.r51915.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-feynman.doc.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-imagelabels.doc.r51490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-inet.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-kalender.doc.r52890.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-karnaugh.doc.r62040.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-ladder.doc.r62992.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-lake-fig.doc.r55288.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-layers.doc.r46660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-mirror-lens.doc.r65500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-nef.doc.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-network.doc.r51884.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-nfold.doc.r67718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-opm.doc.r32769.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-optics.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-osci.doc.r68636.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-page.doc.r42039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-palattice.doc.r43442.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-planets.doc.r55002.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-qtree.doc.r26108.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-relay.doc.r64072.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-sfc.doc.r49424.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-swigs.doc.r59889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-timing.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-trackschematic.doc.r63480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-truchet.doc.r50020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz2d-fr.doc.r67239.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz3d-fr.doc.r72297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzbricks.doc.r71933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzcodeblocks.doc.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzdotncross.doc.r72638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzducks.doc.r71098.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzfill.doc.r67847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzinclude.doc.r28715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzlings.doc.r63628.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzmark.doc.r64819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzmarmots.doc.r71076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzorbital.doc.r36439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpackets.doc.r55827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpagenodes.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpeople.doc.r67840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpfeile.doc.r25777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpingus.doc.r68310.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzposter.doc.r32732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzquads.doc.r72580.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzquests.doc.r69388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzscale.doc.r30637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzsymbols.doc.r61300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikztosvg.doc.r60289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzviolinplots.doc.r66659.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tile-graphic.doc.r55325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tilings.doc.r67292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timing-diagrams.doc.r31491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tipfr.doc.r38646.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-base.doc.r69460.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-berge.doc.r57485.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-bernoulli.doc.r68780.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-doc.doc.r68665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-elements.doc.r71827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-euclide.doc.r71131.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-fct.doc.r61949.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-graph.doc.r57484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-grapheur.doc.r72701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-orm.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkz-tab.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tkzexample.doc.r63908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tonevalue.doc.r60058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tqft.doc.r71401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tufte-latex.doc.r37649.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twemojis.doc.r62930.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tzplot.doc.r64537.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utfsym.doc.r63076.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vectorlogos.doc.r70819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venndiagram.doc.r47952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/visualpstricks.doc.r39799.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wheelchart.doc.r71928.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wordcloud.doc.r68209.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/worldflags.doc.r68827.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xistercian.doc.r61366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpicture.doc.r28770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xypic.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adigraph.doc.r70422.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aobs-tikz.doc.r70952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/askmaps.doc.r56730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asyfig.doc.r17512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asypictureb.doc.r33490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autoarea.doc.r59552.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bardiag.doc.r22013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerswitch.doc.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binarytree.doc.r41777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blochsphere.doc.r38388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bloques.doc.r22490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blox.doc.r57949.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bodegraph.doc.r68785.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bondgraph.doc.r21670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bondgraphs.doc.r36605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braids.doc.r69398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bxeepic.doc.r30559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/byo-twemojis.doc.r58917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/byrne.doc.r61943.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cachepic.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/callouts.doc.r44899.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/celtic.doc.r39797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chemfig.doc.r69227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circuit-macros.doc.r71389.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circuitikz.doc.r71968.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/circularglyphs.doc.r68476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coffeestains.doc.r59703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/coloredbelts.doc.r72782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combinedgraphics.doc.r27198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve.doc.r20745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve2e.doc.r72842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curves.doc.r45255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dcpic.doc.r30206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/diagmac2.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ditaa.doc.r48932.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/doc-pictex.doc.r24927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dot2texi.doc.r26237.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dottex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dpcircling.doc.r54994.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dratex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/drs.doc.r19232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/duotenzor.doc.r18728.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dynkin-diagrams.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecgdraw.doc.r41617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eepic.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/egpeirce.doc.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipse.doc.r39025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/endofproofwd.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epspdfconversion.doc.r18703.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esk.doc.r18115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euflag.doc.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fadingimage.doc.r71190.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fast-diagram.doc.r29264.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fenetrecas.doc.r68779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fig4latex.doc.r26313.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figchild.doc.r62945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figput.doc.r63957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fitbox.doc.r50088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowchart.doc.r36572.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forest.doc.r57398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/genealogytree.doc.r66513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getmap.doc.r50589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gincltex.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnuplottex.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradientframe.doc.r21387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grafcet.doc.r22509.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graph35.doc.r66772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphicxpsd.doc.r57341.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphviz.doc.r31517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtrlib-largetrees.doc.r49062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/harveyballs.doc.r32003.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/here.doc.r16135.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hf-tikz.doc.r34733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobby.doc.r68137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hvfloat.doc.r72452.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/istgame.doc.r62946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kblocks.doc.r57617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kinematikz.doc.r61392.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knitting.doc.r50782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/knittingpattern.doc.r17205.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ladder.doc.r44394.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lapdf.doc.r23806.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-make.doc.r60874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/liftarm.doc.r71309.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lpic.doc.r20843.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lroundrect.doc.r39804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luamesh.doc.r63875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luasseq.doc.r65511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/maker.doc.r44823.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeshape.doc.r28973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathspic.doc.r31957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoize.doc.r70841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mercatormap.doc.r71976.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/milsymb.doc.r66697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/miniplot.doc.r17483.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkpic.doc.r33700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modiagram.doc.r56886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/neuralnetwork.doc.r31500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nl-interval.doc.r58328.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nndraw.doc.r59674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/numericplots.doc.r31729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outilsgeomtikz.doc.r72145.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/papiergurvan.doc.r68239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pb-diagram.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/petri-nets.doc.r39165.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-blur.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-interference.doc.r61562.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-periodictable.doc.r72236.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-pie.doc.r63603.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-soroban.doc.r32269.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-spectra.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-umlcd.doc.r63386.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-umlsd.doc.r55342.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfgantt.doc.r71565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfkeysearch.doc.r69385.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfkeyx.doc.r26093.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmolbio.doc.r71551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmorepages.doc.r54770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfopts.doc.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfornament.doc.r72029.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfplots.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfplotsthemebeamer.doc.r71954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/picinpar.doc.r65097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pict2e.doc.r56504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictex.doc.r59551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pictochrono.doc.r69855.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pinlabel.doc.r24769.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pixelart.doc.r66012.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pixelarttikz.doc.r72726.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pmgraph.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyhedra.doc.r68770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/polyomino.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postage.doc.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postit.doc.r67344.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prerex.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/productbox.doc.r20886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptolemaicastronomy.doc.r50810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/puyotikz.doc.r57254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxpgfmark.doc.r30212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxpic.doc.r67955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qcircuit.doc.r48400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrcode.doc.r36065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quantikz.doc.r67206.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randbild.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomwalk.doc.r49513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realhats.doc.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/reotex.doc.r34924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robotarm.doc.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rviewport.doc.r23739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sa-tikz.doc.r32815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sacsymb.doc.r65768.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schemabloc.doc.r68445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratch.doc.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scratch3.doc.r61921.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scsnowman.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/setdeck.doc.r40613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/signchart.doc.r39707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplenodes.doc.r62888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simpleoptics.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartdiagram.doc.r42781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spath3.doc.r71396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spectralsequences.doc.r65667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/strands.doc.r59906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sunpath.doc.r72604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swimgraf.doc.r25446.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/syntaxdi.doc.r56685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/table-fct.doc.r41849.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdraw.doc.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ticollege.doc.r36306.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-3dplot.doc.r25087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-among-us.doc.r60880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bagua.doc.r64103.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bayesnet.doc.r38295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-bbox.doc.r57444.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-cd.doc.r59133.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-decofonts.doc.r72545.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-dependency.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-dimline.doc.r35805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-ext.doc.r66737.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-feynhand.doc.r51915.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-feynman.doc.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-imagelabels.doc.r51490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-inet.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-kalender.doc.r52890.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-karnaugh.doc.r62040.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-ladder.doc.r62992.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-lake-fig.doc.r55288.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-layers.doc.r46660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-mirror-lens.doc.r65500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-nef.doc.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-network.doc.r51884.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-nfold.doc.r67718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-opm.doc.r32769.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-optics.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-osci.doc.r68636.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-page.doc.r42039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-palattice.doc.r43442.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-planets.doc.r55002.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-qtree.doc.r26108.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-relay.doc.r64072.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-sfc.doc.r49424.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-swigs.doc.r59889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-timing.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-trackschematic.doc.r63480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-truchet.doc.r50020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz2d-fr.doc.r67239.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz3d-fr.doc.r72297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzbricks.doc.r71933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzcodeblocks.doc.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzdotncross.doc.r72638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzducks.doc.r71098.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzfill.doc.r67847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzinclude.doc.r28715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzlings.doc.r63628.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzmark.doc.r64819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzmarmots.doc.r71076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzorbital.doc.r36439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpackets.doc.r55827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpagenodes.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpeople.doc.r67840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpfeile.doc.r25777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpingus.doc.r68310.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzposter.doc.r32732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzquads.doc.r72580.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzquests.doc.r69388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzscale.doc.r30637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzsymbols.doc.r61300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikztosvg.doc.r60289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzviolinplots.doc.r66659.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tile-graphic.doc.r55325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tilings.doc.r67292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timing-diagrams.doc.r31491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tipfr.doc.r38646.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-base.doc.r69460.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-berge.doc.r57485.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-bernoulli.doc.r68780.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-doc.doc.r68665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-elements.doc.r71827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-euclide.doc.r71131.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-fct.doc.r61949.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-graph.doc.r57484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-grapheur.doc.r72701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-orm.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkz-tab.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tkzexample.doc.r63908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tonevalue.doc.r60058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tqft.doc.r71401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tufte-latex.doc.r37649.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twemojis.doc.r62930.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tzplot.doc.r64537.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utfsym.doc.r63076.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vectorlogos.doc.r70819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venndiagram.doc.r47952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/visualpstricks.doc.r39799.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wheelchart.doc.r71928.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wordcloud.doc.r68209.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/worldflags.doc.r68827.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xistercian.doc.r61366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpicture.doc.r28770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xypic.doc.r61719.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aobs-tikz.source.r70952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asyfig.source.r17512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asypictureb.source.r33490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamerswitch.source.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/binarytree.source.r41777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blochsphere.source.r38388.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/blox.source.r57949.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bondgraphs.source.r36605.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/braids.source.r69398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/byo-twemojis.source.r58917.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/celtic.source.r39797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/combinedgraphics.source.r27198.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve.source.r20745.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curve2e.source.r72842.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/curves.source.r45255.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dottex.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecgdraw.source.r41617.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ellipse.source.r39025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/esk.source.r18115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/euflag.source.r55265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fitbox.source.r50088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/flowchart.source.r36572.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/forest.source.r57398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gincltex.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gnuplottex.source.r54758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradientframe.source.r21387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graph35.source.r66772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphviz.source.r31517.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtrlib-largetrees.source.r49062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hf-tikz.source.r34733.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobby.source.r68137.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/latex-make.source.r60874.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lroundrect.source.r39804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luasseq.source.r65511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeshape.source.r28973.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/memoize.source.r70841.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nndraw.source.r59674.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgf-blur.source.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfgantt.source.r71565.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfmolbio.source.r71551.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfopts.source.r56615.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pgfplots.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pict2e.source.r56504.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/postage.source.r55920.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/productbox.source.r20886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptolemaicastronomy.source.r50810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pxpic.source.r67955.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrcode.source.r36065.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randbild.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomwalk.source.r49513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realhats.source.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/robotarm.source.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rviewport.source.r23739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/signchart.source.r39707.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smartdiagram.source.r42781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spath3.source.r71396.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/strands.source.r59906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sunpath.source.r72604.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-imagelabels.source.r51490.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-page.source.r42039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-timing.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikz-truchet.source.r50020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzinclude.source.r28715.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzmark.source.r64819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpagenodes.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzpfeile.source.r25777.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzposter.source.r32732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzscale.source.r30637.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tikzsymbols.source.r61300.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tile-graphic.source.r55325.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tilings.source.r67292.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tqft.source.r71401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/twemojis.source.r62930.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/venndiagram.source.r47952.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xistercian.source.r61366.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xpicture.source.r28770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aobs-tikz.source.r70952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asyfig.source.r17512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asypictureb.source.r33490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamerswitch.source.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/binarytree.source.r41777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blochsphere.source.r38388.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/blox.source.r57949.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bondgraphs.source.r36605.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/braids.source.r69398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/byo-twemojis.source.r58917.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/celtic.source.r39797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/combinedgraphics.source.r27198.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve.source.r20745.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curve2e.source.r72842.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/curves.source.r45255.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dottex.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecgdraw.source.r41617.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ellipse.source.r39025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/esk.source.r18115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/euflag.source.r55265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fitbox.source.r50088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/flowchart.source.r36572.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/forest.source.r57398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gincltex.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gnuplottex.source.r54758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradientframe.source.r21387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graph35.source.r66772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphviz.source.r31517.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtrlib-largetrees.source.r49062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hf-tikz.source.r34733.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobby.source.r68137.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/latex-make.source.r60874.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lroundrect.source.r39804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luasseq.source.r65511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeshape.source.r28973.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/memoize.source.r70841.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nndraw.source.r59674.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgf-blur.source.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfgantt.source.r71565.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfmolbio.source.r71551.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfopts.source.r56615.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pgfplots.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pict2e.source.r56504.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/postage.source.r55920.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/productbox.source.r20886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptolemaicastronomy.source.r50810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pxpic.source.r67955.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrcode.source.r36065.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randbild.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomwalk.source.r49513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realhats.source.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/robotarm.source.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rviewport.source.r23739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/signchart.source.r39707.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smartdiagram.source.r42781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spath3.source.r71396.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/strands.source.r59906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sunpath.source.r72604.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-imagelabels.source.r51490.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-page.source.r42039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-timing.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikz-truchet.source.r50020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzinclude.source.r28715.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzmark.source.r64819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpagenodes.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzpfeile.source.r25777.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzposter.source.r32732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzscale.source.r30637.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tikzsymbols.source.r61300.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tile-graphic.source.r55325.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tilings.source.r67292.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tqft.source.r71401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/twemojis.source.r62930.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/venndiagram.source.r47952.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xistercian.source.r61366.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xpicture.source.r28770.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=8b589a0f750275e432fa922688a66db2 +_md5_=0a8d2c9a5e9531244d6c27a83bafc6bf diff --git a/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2024_p72878 b/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2024_p72878 index 5fa45df3fb6c..0e10dda51763 100644 --- a/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2024_p72878 +++ b/metadata/md5-cache/dev-texlive/texlive-plaingeneric-2024_p72878 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-3 GPL-3+ LPPL-1.0 LPPL-1.3 LPPL-1.3c MIT TeX TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-basic-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-plaingeneric.r72878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abbr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abstyles.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/advice.r70688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apnum.r47510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autoaligne.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barr.r38479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitelist.r25779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/borceux.r21047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/c-pascal.r18337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calcfrac.r68684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catcodes.r38859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chronosys.r26700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collargs.r70689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/colorsep.r13293.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/compare.r54265.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossrefenum.r70954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cweb-old.r49271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dinat.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtree.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docbytex.r34294.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dowith.r38860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/eijkhout.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/encxvlna.r34087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epigram.r20513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsf.r21461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsf-dvipdfmx.r35575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoolbox-generic.r68513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex-acro.r68046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expkv-bundle.r65623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fenixpar.r24730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figflow.r21462.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixpdfmag.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fltpoint.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fntproof.r20638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/font-change.r40403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontch.r17859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontname.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gates.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getoptk.r23567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfnotation.r37156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gobble.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-pln.r71575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtl.r69297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hlist.r44983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyplain.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifis-macros.r71220.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputnormalization.r59850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/insbox.r34299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/js-misc.r16211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kastrup.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambda-lists.r31402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langcode.r27764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lecturer.r23916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/letterspacing.r54266.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librarian.r19880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listofitems.r70579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/localloc.r56496.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathdots.r34301.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metatex.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/midnight.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkpattern.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlawriter.r67558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modulus.r47599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multido.r18302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namedef.r55881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/navigator.r41413.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newsletr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nth.r54252.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ofs.r16991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/olsak-misc.r65631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/outerhbox.r54254.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/path.r22045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdf-trans.r32809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmsym.r66618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pitex.r24731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/placeins-plain.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plainpkg.r27765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plipsum.r30353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plnfss.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plstmary.r31088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poormanlog.r63400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/present.r50048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pwebmac.r72015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/random.r54723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomlist.r45281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resumemac.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ruler.r54251.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schemata.r58020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shade.r22212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplekv.r68439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soul.r67365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/swrule.r54267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/systeme.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabto-generic.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termmenu.r37700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ps.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texapi.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdate.r49362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdimens.r61070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texinfo.r69809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timetable.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tracklang.r65263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/treetex.r28176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trigonometry.r43006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tuple.r72878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulem.r53365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upca.r22511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varisize.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xintsession.r60926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xlop.r56910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yax.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zztex.r55862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-plaingeneric.r72878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abbr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abstyles.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/advice.r70688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apnum.r47510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autoaligne.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barr.r38479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitelist.r25779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/borceux.r21047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/c-pascal.r18337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calcfrac.r68684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catcodes.r38859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chronosys.r26700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collargs.r70689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/colorsep.r13293.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/compare.r54265.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossrefenum.r70954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cweb-old.r49271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dinat.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtree.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docbytex.r34294.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dowith.r38860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/eijkhout.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/encxvlna.r34087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epigram.r20513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsf.r21461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsf-dvipdfmx.r35575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoolbox-generic.r68513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex-acro.r68046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expkv-bundle.r65623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fenixpar.r24730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figflow.r21462.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixpdfmag.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fltpoint.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fntproof.r20638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/font-change.r40403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontch.r17859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontname.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gates.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getoptk.r23567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfnotation.r37156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gobble.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-pln.r71575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtl.r69297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hlist.r44983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyplain.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifis-macros.r71220.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputnormalization.r59850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/insbox.r34299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/js-misc.r16211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kastrup.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambda-lists.r31402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langcode.r27764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lecturer.r23916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/letterspacing.r54266.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librarian.r19880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listofitems.r70579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/localloc.r56496.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathdots.r34301.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metatex.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/midnight.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkpattern.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlawriter.r67558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modulus.r47599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multido.r18302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namedef.r55881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/navigator.r41413.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newsletr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nth.r54252.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ofs.r16991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/olsak-misc.r65631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/outerhbox.r54254.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/path.r22045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdf-trans.r32809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmsym.r66618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pitex.r24731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/placeins-plain.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plainpkg.r27765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plipsum.r30353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plnfss.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plstmary.r31088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poormanlog.r63400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/present.r50048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pwebmac.r72015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/random.r54723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomlist.r45281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resumemac.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ruler.r54251.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schemata.r58020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shade.r22212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplekv.r68439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soul.r67365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/swrule.r54267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/systeme.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabto-generic.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termmenu.r37700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ps.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texapi.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdate.r49362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdimens.r61070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texinfo.r69809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timetable.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tracklang.r65263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/treetex.r28176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trigonometry.r43006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tuple.r72878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulem.r53365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upca.r22511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varisize.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xintsession.r60926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xlop.r56910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yax.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zztex.r55862.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/abbr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abstyles.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/advice.doc.r70688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apnum.doc.r47510.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/autoaligne.doc.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/barr.doc.r38479.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitelist.doc.r25779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/borceux.doc.r21047.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/c-pascal.doc.r18337.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/calcfrac.doc.r68684.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catcodes.doc.r38859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chronosys.doc.r26700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collargs.doc.r70689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/crossrefenum.doc.r70954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dinat.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtree.doc.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/docbytex.doc.r34294.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dowith.doc.r38860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/encxvlna.doc.r34087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsf.doc.r21461.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/epsf-dvipdfmx.doc.r35575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etoolbox-generic.doc.r68513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex-acro.doc.r68046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expkv-bundle.doc.r65623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fenixpar.doc.r24730.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/figflow.doc.r21462.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fltpoint.doc.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fntproof.doc.r20638.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/font-change.doc.r40403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontch.doc.r17859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontname.doc.r64477.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gates.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/getoptk.doc.r23567.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfnotation.doc.r37156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gobble.doc.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/graphics-pln.doc.r71575.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtl.doc.r69297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hlist.doc.r44983.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hyplain.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ifis-macros.doc.r71220.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputnormalization.doc.r59850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/insbox.doc.r34299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/js-misc.doc.r16211.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kastrup.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lambda-lists.doc.r31402.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langcode.doc.r27764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lecturer.doc.r23916.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/librarian.doc.r19880.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/listofitems.doc.r70579.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/localloc.doc.r56496.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathdots.doc.r34301.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/metatex.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/midnight.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mkpattern.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlawriter.doc.r67558.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modulus.doc.r47599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multido.doc.r18302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namedef.doc.r55881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/navigator.doc.r41413.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/newsletr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ofs.doc.r16991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/olsak-misc.doc.r65631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/path.doc.r22045.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdf-trans.doc.r32809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdfmsym.doc.r66618.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pitex.doc.r24731.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plainpkg.doc.r27765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plipsum.doc.r30353.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plnfss.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plstmary.doc.r31088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/poormanlog.doc.r63400.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/present.doc.r50048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pwebmac.doc.r72015.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/random.doc.r54723.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomlist.doc.r45281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resumemac.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schemata.doc.r58020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shade.doc.r22212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simplekv.doc.r68439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soul.doc.r67365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/systeme.doc.r66655.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termmenu.doc.r37700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tex-ps.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texapi.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdate.doc.r49362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdimens.doc.r61070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tracklang.doc.r65263.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/transparent-io.doc.r64113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/treetex.doc.r28176.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/trigonometry.doc.r43006.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tuple.doc.r72878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulem.doc.r53365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/upca.doc.r22511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/varisize.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xii.doc.r45804.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xii-lat.doc.r45805.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xintsession.doc.r60926.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xlop.doc.r56910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yax.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zztex.doc.r55862.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abbr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abstyles.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/advice.doc.r70688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apnum.doc.r47510.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/autoaligne.doc.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/barr.doc.r38479.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitelist.doc.r25779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/borceux.doc.r21047.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/c-pascal.doc.r18337.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/calcfrac.doc.r68684.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catcodes.doc.r38859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chronosys.doc.r26700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collargs.doc.r70689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/crossrefenum.doc.r70954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dinat.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtree.doc.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/docbytex.doc.r34294.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dowith.doc.r38860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/encxvlna.doc.r34087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsf.doc.r21461.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/epsf-dvipdfmx.doc.r35575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etoolbox-generic.doc.r68513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex-acro.doc.r68046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expkv-bundle.doc.r65623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fenixpar.doc.r24730.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/figflow.doc.r21462.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fltpoint.doc.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fntproof.doc.r20638.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/font-change.doc.r40403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontch.doc.r17859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontname.doc.r64477.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gates.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/getoptk.doc.r23567.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfnotation.doc.r37156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gobble.doc.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/graphics-pln.doc.r71575.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtl.doc.r69297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hlist.doc.r44983.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hyplain.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ifis-macros.doc.r71220.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputnormalization.doc.r59850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/insbox.doc.r34299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/js-misc.doc.r16211.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kastrup.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lambda-lists.doc.r31402.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langcode.doc.r27764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lecturer.doc.r23916.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/librarian.doc.r19880.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/listofitems.doc.r70579.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/localloc.doc.r56496.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathdots.doc.r34301.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/metatex.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/midnight.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mkpattern.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlawriter.doc.r67558.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modulus.doc.r47599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multido.doc.r18302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namedef.doc.r55881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/navigator.doc.r41413.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/newsletr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ofs.doc.r16991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/olsak-misc.doc.r65631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/path.doc.r22045.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdf-trans.doc.r32809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdfmsym.doc.r66618.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pitex.doc.r24731.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plainpkg.doc.r27765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plipsum.doc.r30353.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plnfss.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plstmary.doc.r31088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/poormanlog.doc.r63400.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/present.doc.r50048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pwebmac.doc.r72015.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/random.doc.r54723.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomlist.doc.r45281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resumemac.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schemata.doc.r58020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shade.doc.r22212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simplekv.doc.r68439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soul.doc.r67365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/systeme.doc.r66655.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termmenu.doc.r37700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tex-ps.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texapi.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdate.doc.r49362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdimens.doc.r61070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tracklang.doc.r65263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/transparent-io.doc.r64113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/treetex.doc.r28176.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/trigonometry.doc.r43006.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tuple.doc.r72878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulem.doc.r53365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/upca.doc.r22511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/varisize.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xii.doc.r45804.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xii-lat.doc.r45805.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xintsession.doc.r60926.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xlop.doc.r56910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yax.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zztex.doc.r55862.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/advice.source.r70688.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bitelist.source.r25779.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/catcodes.source.r38859.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/collargs.source.r70689.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dirtree.source.r42428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dowith.source.r38860.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expex-acro.source.r68046.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/expkv-bundle.source.r65623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fltpoint.source.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gobble.source.r64967.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gtl.source.r69297.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inputnormalization.source.r59850.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kastrup.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langcode.source.r27764.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/localloc.source.r56496.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mathdots.source.r34301.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modulus.source.r47599.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/multido.source.r18302.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/namedef.source.r55881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/plainpkg.source.r27765.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/randomlist.source.r45281.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schemata.source.r58020.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soul.source.r67365.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/termmenu.source.r37700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texdate.source.r49362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tracklang.source.r65263.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/advice.source.r70688.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bitelist.source.r25779.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/catcodes.source.r38859.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collargs.source.r70689.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dirtree.source.r42428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dowith.source.r38860.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expex-acro.source.r68046.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/expkv-bundle.source.r65623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fltpoint.source.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gobble.source.r64967.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gtl.source.r69297.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inputnormalization.source.r59850.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kastrup.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langcode.source.r27764.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/localloc.source.r56496.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mathdots.source.r34301.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modulus.source.r47599.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/multido.source.r18302.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/namedef.source.r55881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/plainpkg.source.r27765.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/randomlist.source.r45281.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schemata.source.r58020.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soul.source.r67365.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/termmenu.source.r37700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texdate.source.r49362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tracklang.source.r65263.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=a95ca9957fc166198f021a6e8ab9ae31 +_md5_=90dd37c33c5bdb2316b4ba7ca38e2585 diff --git a/metadata/md5-cache/dev-texlive/texlive-pstricks-2024_p65367 b/metadata/md5-cache/dev-texlive/texlive-pstricks-2024_p65367 index ffdb344110a7..1b81a3d029ee 100644 --- a/metadata/md5-cache/dev-texlive/texlive-pstricks-2024_p65367 +++ b/metadata/md5-cache/dev-texlive/texlive-pstricks-2024_p65367 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-1+ GPL-2 LGPL-2+ LGPL-3 LPPL-1.2 LPPL-1.3 LPPL-1.3c RDEPEND=>=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-plaingeneric-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-pstricks.r65367.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/auto-pst-pdf.r56596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bclogo.r69578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dsptricks.r68753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luapstricks.r67207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeplot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftricks.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftricks2.r31016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pedigree-perl.r64227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psbao.r55013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-2dplot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-3d.r17257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-3dplot.r68727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-abspos.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-am.r19591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-antiprism.r46643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-arrow.r61069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-asr.r22138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bar.r64331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-barcode.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bezier.r41981.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-blur.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bspline.r40685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-calculate.r49817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-calendar.r60480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-cie.r60959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-circ.r72519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-coil.r72030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-contourplot.r48230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-cox.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-dart.r60476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-dbicons.r17556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-diffraction.r71819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-electricfield.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eps.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eucl.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-exa.r45289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-feyn.r48781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fill.r60671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fit.r70686.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-flags.r65501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fr3d.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fractal.r64714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fun.r17909.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-func.r70822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-gantt.r35832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-geo.r60387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-geometrictools.r70953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-gr3d.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-grad.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-graphicx.r21717.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-hsb.r66739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-infixplot.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-intersect.r33210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-jtree.r20946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-knot.r16033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-labo.r67147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-layout.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-lens.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-light3d.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-lsystem.r49556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-magneticfield.r69493.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-marble.r50925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-math.r67535.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-mirror.r71294.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-moire.r60411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-node.r71773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ob3d.r54514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ode.r69296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-optexp.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-optic.r72694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-osci.r68781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ovl.r54963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pad.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdf.r56622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdgr.r45875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-perspective.r39585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-platon.r16538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-plot.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-poker.r65818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-poly.r35062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pulley.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-qtree.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-rputover.r44724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-rubans.r23464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-shell.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-sigsys.r21667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-slpe.r24391.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-solarsystem.r69675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-solides3d.r68786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-soroban.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-spectra.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-spinner.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-stru.r38613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-text.r49542.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-thick.r16369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tools.r60621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tree.r60421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-turtle.r52261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tvz.r23451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-uml.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vectorian.r60488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vehicle.r61438.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-venn.r49316.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vowel.r25228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst2pdf.r56172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstricks.r72868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstricks-add.r66887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uml.r17476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vaucanson-g.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vocaltract.r25629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-pstricks.r65367.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auto-pst-pdf.r56596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bclogo.r69578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dsptricks.r68753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luapstricks.r67207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeplot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftricks.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftricks2.r31016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pedigree-perl.r64227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psbao.r55013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-2dplot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-3d.r17257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-3dplot.r68727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-abspos.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-am.r19591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-antiprism.r46643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-arrow.r61069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-asr.r22138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bar.r64331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-barcode.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bezier.r41981.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-blur.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bspline.r40685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-calculate.r49817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-calendar.r60480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-cie.r60959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-circ.r72519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-coil.r72030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-contourplot.r48230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-cox.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-dart.r60476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-dbicons.r17556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-diffraction.r71819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-electricfield.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eps.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eucl.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-exa.r45289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-feyn.r48781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fill.r60671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fit.r70686.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-flags.r65501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fr3d.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fractal.r64714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fun.r17909.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-func.r70822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-gantt.r35832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-geo.r60387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-geometrictools.r70953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-gr3d.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-grad.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-graphicx.r21717.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-hsb.r66739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-infixplot.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-intersect.r33210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-jtree.r20946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-knot.r16033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-labo.r67147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-layout.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-lens.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-light3d.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-lsystem.r49556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-magneticfield.r69493.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-marble.r50925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-math.r67535.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-mirror.r71294.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-moire.r60411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-node.r71773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ob3d.r54514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ode.r69296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-optexp.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-optic.r72694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-osci.r68781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ovl.r54963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pad.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdf.r56622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdgr.r45875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-perspective.r39585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-platon.r16538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-plot.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-poker.r65818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-poly.r35062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pulley.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-qtree.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-rputover.r44724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-rubans.r23464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-shell.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-sigsys.r21667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-slpe.r24391.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-solarsystem.r69675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-solides3d.r68786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-soroban.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-spectra.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-spinner.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-stru.r38613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-text.r49542.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-thick.r16369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tools.r60621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tree.r60421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-turtle.r52261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tvz.r23451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-uml.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vectorian.r60488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vehicle.r61438.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-venn.r49316.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vowel.r25228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst2pdf.r56172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstricks.r72868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstricks-add.r66887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uml.r17476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vaucanson-g.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vocaltract.r25629.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/auto-pst-pdf.doc.r56596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bclogo.doc.r69578.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dsptricks.doc.r68753.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/luapstricks.doc.r67207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeplot.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftricks.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pdftricks2.doc.r31016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pedigree-perl.doc.r64227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/psbao.doc.r55013.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-2dplot.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-3d.doc.r17257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-3dplot.doc.r68727.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-abspos.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-am.doc.r19591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-antiprism.doc.r46643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-arrow.doc.r61069.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-asr.doc.r22138.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bar.doc.r64331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-barcode.doc.r64182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bezier.doc.r41981.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-blur.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-bspline.doc.r40685.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-calculate.doc.r49817.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-calendar.doc.r60480.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-cie.doc.r60959.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-circ.doc.r72519.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-coil.doc.r72030.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-contourplot.doc.r48230.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-cox.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-dart.doc.r60476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-dbicons.doc.r17556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-diffraction.doc.r71819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-electricfield.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eps.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eucl.doc.r66924.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-exa.doc.r45289.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-feyn.doc.r48781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fill.doc.r60671.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fit.doc.r70686.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-flags.doc.r65501.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fr3d.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fractal.doc.r64714.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fun.doc.r17909.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-func.doc.r70822.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-gantt.doc.r35832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-geo.doc.r60387.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-geometrictools.doc.r70953.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-gr3d.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-grad.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-graphicx.doc.r21717.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-hsb.doc.r66739.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-infixplot.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-intersect.doc.r33210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-jtree.doc.r20946.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-knot.doc.r16033.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-labo.doc.r67147.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-layout.doc.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-lens.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-light3d.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-lsystem.doc.r49556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-magneticfield.doc.r69493.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-marble.doc.r50925.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-math.doc.r67535.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-mirror.doc.r71294.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-moire.doc.r60411.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-node.doc.r71773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ob3d.doc.r54514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ode.doc.r69296.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-optexp.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-optic.doc.r72694.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-osci.doc.r68781.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ovl.doc.r54963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pad.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdf.doc.r56622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdgr.doc.r45875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-perspective.doc.r39585.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-platon.doc.r16538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-plot.doc.r65346.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-poker.doc.r65818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-poly.doc.r35062.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pulley.doc.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-qtree.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-rputover.doc.r44724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-rubans.doc.r23464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-shell.doc.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-sigsys.doc.r21667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-slpe.doc.r24391.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-solarsystem.doc.r69675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-solides3d.doc.r68786.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-soroban.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-spectra.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-spinner.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-stru.doc.r38613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-support.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-text.doc.r49542.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-thick.doc.r16369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tools.doc.r60621.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tree.doc.r60421.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-turtle.doc.r52261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tvz.doc.r23451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-uml.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vectorian.doc.r60488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vehicle.doc.r61438.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-venn.doc.r49316.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-vowel.doc.r25228.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst2pdf.doc.r56172.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstricks.doc.r72868.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstricks-add.doc.r66887.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pstricks_calcnotes.doc.r34363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uml.doc.r17476.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vaucanson-g.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vocaltract.doc.r25629.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auto-pst-pdf.doc.r56596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bclogo.doc.r69578.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dsptricks.doc.r68753.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/luapstricks.doc.r67207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeplot.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftricks.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pdftricks2.doc.r31016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pedigree-perl.doc.r64227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/psbao.doc.r55013.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-2dplot.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-3d.doc.r17257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-3dplot.doc.r68727.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-abspos.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-am.doc.r19591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-antiprism.doc.r46643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-arrow.doc.r61069.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-asr.doc.r22138.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bar.doc.r64331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-barcode.doc.r64182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bezier.doc.r41981.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-blur.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-bspline.doc.r40685.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-calculate.doc.r49817.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-calendar.doc.r60480.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-cie.doc.r60959.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-circ.doc.r72519.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-coil.doc.r72030.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-contourplot.doc.r48230.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-cox.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-dart.doc.r60476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-dbicons.doc.r17556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-diffraction.doc.r71819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-electricfield.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eps.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eucl.doc.r66924.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-exa.doc.r45289.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-feyn.doc.r48781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fill.doc.r60671.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fit.doc.r70686.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-flags.doc.r65501.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fr3d.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fractal.doc.r64714.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fun.doc.r17909.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-func.doc.r70822.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-gantt.doc.r35832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-geo.doc.r60387.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-geometrictools.doc.r70953.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-gr3d.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-grad.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-graphicx.doc.r21717.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-hsb.doc.r66739.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-infixplot.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-intersect.doc.r33210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-jtree.doc.r20946.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-knot.doc.r16033.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-labo.doc.r67147.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-layout.doc.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-lens.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-light3d.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-lsystem.doc.r49556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-magneticfield.doc.r69493.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-marble.doc.r50925.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-math.doc.r67535.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-mirror.doc.r71294.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-moire.doc.r60411.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-node.doc.r71773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ob3d.doc.r54514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ode.doc.r69296.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-optexp.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-optic.doc.r72694.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-osci.doc.r68781.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ovl.doc.r54963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pad.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdf.doc.r56622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdgr.doc.r45875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-perspective.doc.r39585.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-platon.doc.r16538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-plot.doc.r65346.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-poker.doc.r65818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-poly.doc.r35062.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pulley.doc.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-qtree.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-rputover.doc.r44724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-rubans.doc.r23464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-shell.doc.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-sigsys.doc.r21667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-slpe.doc.r24391.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-solarsystem.doc.r69675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-solides3d.doc.r68786.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-soroban.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-spectra.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-spinner.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-stru.doc.r38613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-support.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-text.doc.r49542.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-thick.doc.r16369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tools.doc.r60621.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tree.doc.r60421.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-turtle.doc.r52261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tvz.doc.r23451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-uml.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vectorian.doc.r60488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vehicle.doc.r61438.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-venn.doc.r49316.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-vowel.doc.r25228.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst2pdf.doc.r56172.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstricks.doc.r72868.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstricks-add.doc.r66887.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pstricks_calcnotes.doc.r34363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uml.doc.r17476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vaucanson-g.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vocaltract.doc.r25629.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/auto-pst-pdf.source.r56596.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/makeplot.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pedigree-perl.source.r64227.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-3d.source.r17257.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-abspos.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-am.source.r19591.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-blur.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-dbicons.source.r17556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-electricfield.source.r29803.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-eps.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fr3d.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-fun.source.r17909.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-gr3d.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-intersect.source.r33210.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-lens.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-light3d.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-ob3d.source.r54514.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-optexp.source.r62977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pad.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdf.source.r56622.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-pdgr.source.r45875.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-platon.source.r16538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-rubans.source.r23464.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-shell.source.r56070.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-slpe.source.r24391.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-soroban.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-thick.source.r16369.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-tvz.source.r23451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pst-uml.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uml.source.r17476.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/auto-pst-pdf.source.r56596.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/makeplot.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pedigree-perl.source.r64227.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-3d.source.r17257.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-abspos.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-am.source.r19591.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-blur.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-dbicons.source.r17556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-electricfield.source.r29803.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-eps.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fr3d.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-fun.source.r17909.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-gr3d.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-intersect.source.r33210.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-lens.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-light3d.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-ob3d.source.r54514.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-optexp.source.r62977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pad.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdf.source.r56622.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-pdgr.source.r45875.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-platon.source.r16538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-rubans.source.r23464.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-shell.source.r56070.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-slpe.source.r24391.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-soroban.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-thick.source.r16369.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-tvz.source.r23451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pst-uml.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uml.source.r17476.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=9f05bfeea158021f7a5c745807873e15 +_md5_=1e977846d5192af8011247858d789e02 diff --git a/metadata/md5-cache/dev-texlive/texlive-publishers-2024_p72771 b/metadata/md5-cache/dev-texlive/texlive-publishers-2024_p72771 index f78e4f0fe417..d837b433464f 100644 --- a/metadata/md5-cache/dev-texlive/texlive-publishers-2024_p72771 +++ b/metadata/md5-cache/dev-texlive/texlive-publishers-2024_p72771 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=texlive-module IUSE=doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 BSD CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 FDL-1.1+ GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ LPPL-1.2 LPPL-1.3 LPPL-1.3a LPPL-1.3c MIT OFL-1.1 TeX-other-free public-domain RDEPEND=>=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-publishers.r72771.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aastex.r58057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abnt.r55471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abntex2.r49248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abntexto.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmart.r72113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmconf.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/active-conf.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfathesis.r26048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afparticle.r35900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aguplus.r17156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aiaa.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amnestyreport.r69439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonymous-acm.r55121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aomart.r72865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6.r67848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6e.r23350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa7.r63974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arsclassica.r45656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/articleingud.r38741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asaetr.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascelike.r29129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asmeconf.r71956.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asmejour.r71903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aucklandthesis.r51323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorcsthesis.r61770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorexam.r65140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bath-bst.r63398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-fuberlin.r63161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-verona.r39180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beilstein.r56193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bfh-ci.r70623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bgteubner.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bjfuthesis.r59809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bmstu.r65897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bmstu-iu8.r72693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/br-lex.r44939.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-dissertation.r67935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-problemset.r50991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-thesis.r68092.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/buctthesis.r67818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadilla.r25144.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cesenaexam.r44960.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chem-journal.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chifoot.r57312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chs-physics-report.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cidarticle.r68976.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cje.r68656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjs-rcs-article.r71936.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classicthesis.r48041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleanthesis.r51472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmpj.r58506.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/confproc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contract.r69759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cquthesis.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dccpaper.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dithesis.r34295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebook.r29466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebsthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmaths.r72143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ejpecp.r60950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekaia.r49594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elbioimp.r21758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/els-cas-templates.r71189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elsarticle.r70902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elteiktdk.r71086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elteikthesis.r71087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emisa.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erdc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/estcpmm.r17335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etsvthor.r48186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facture-belge-simple-sans-tva.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbithesis.r21340.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcavtex.r38074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcltxdoc.r24500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fei.r65352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftc-notebook.r50043.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gaceta.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gammas.r56403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geradwp.r63134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfdl.r65415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradstudentresume.r38832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grant.r56852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gsemthesis.r56291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gzt.r70532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/h2020proposal.r38428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hagenberg-thesis.r65819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/har2nat.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hduthesis.r72869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hecthese.r68584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-paper.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heria.r72189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfutexam.r68829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfutthesis.r64025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hithesis.r64005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszbeamer.r54381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszthesis.r61073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobete.r27036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hu-berlin-bundle.r67128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hustthesis.r42547.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria.r72670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria-lite.r72669.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icsv.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeeconf.r59665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeepes.r17359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeetran.r59672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijmart.r30958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijsra.r44886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imac.r17347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imtekda.r17667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inkpaper.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iodhbwm.r57773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iscram.r45801.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jacow.r63060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmlr.r61957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jnuexam.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jourcl.r65290.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jourrr.r68556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpsj.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jwjournal.r72788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdgdocs.r24498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdpcover.r65150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kfupm-math-exam.r63977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kluwer.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ksp-thesis.r39080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ku-template.r45935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langsci.r70025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langsci-avm.r66016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limecv.r61199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lion-msc.r55415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/llncs.r72613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/llncsconf.r63136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lni.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lps.r21322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3.r29845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3mem.r35773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcmthesis.r69538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mentis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mitthesis.r72749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlacls.r72271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mluexercise.r56927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnras.r68878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modeles-factures-belges-assocs.r67840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msu-thesis.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mucproc.r43445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mugsthesis.r64259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/muling.r66741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musuos.r24857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/muthesis.r23861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mynsfc.r60280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nature.r21819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/navydocs.r41643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nddiss.r45107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ndsu-thesis.r46639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ndsu-thesis-2022.r63881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nih.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nihbiosketch.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njustthesis.r62451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuthesis.r71034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuvisual.r65261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nostarch.r67683.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/novel.r71113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nrc.r29027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nstc-proposal.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwafuthesis.r66895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwejm.r70597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nxuthesis.r71344.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onrannual.r17474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opteng.r27331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oststud.r67217.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oup-authoring-template.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philosophersimprint.r56954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pittetd.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkuthss.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot-fuberlin.r52922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot-tuliplab.r47963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pracjourn.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prociagssymp.r70888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proposal.r40538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prtec.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptptex.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrbill.r67724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quantumarticle.r65242.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rebuttal.r72851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regulatory.r72197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resphilosophica.r50935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resumecls.r54815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex.r67271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4.r56589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4-1.r56590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rub-kunstgeschichte.r72721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rutitlepage.r62143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ryersonsgsthesis.r50119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ryethesis.r33945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sageep.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sapthesis.r63810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schule.r70846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scientific-thesis-cover.r47923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scripture.r69232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrjrnl.r27810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sduthesis.r41401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/se2thesis.r72569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seu-ml-assign.r62933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesis.r33042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesix.r40088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfee.r70718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shortmathj.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shtthesis.r62441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smflatex.r58910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soton.r16215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sphdthesis.r34374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spie.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sr-vorl.r59333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srdp-mathematik.r70807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sshrc-insight.r72623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch.r68039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch-2.r68183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suftesi.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sugconf.r58752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabriz-thesis.r51729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/technion-thesis-template.r49889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texilikechaps.r28553.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/texilikecover.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-ekf.r70980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-gwu.r54287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-qom.r63524.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-titlepage-fhac.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thuaslogos.r51347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thubeamer.r61071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thucoursework.r56435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thuthesis.r71680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tidyres.r67738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tiet-question-paper.r71601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timbreicmc.r49740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlc-article.r51431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topletter.r48182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toptesi.r56276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tuda-ci.r71696.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tudscr.r64085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tugboat.r72711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tugboat-plain.r72675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tui.r27253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turabian.r36298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uaclasses.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uafthesis.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uantwerpendocs.r72118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucalgmthesis.r66602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucbthesis.r51690.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucdavisthesis.r40772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucph-revy.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucsmonograph.r52698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udepcolor.r69701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udes-genie-these.r68141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udiss.r72466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uestcthesis.r36371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ufrgscca.r72586.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhhassignment.r44026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucredborder.r29974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ukbill.r69362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulthese.r71697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umbclegislation.r41348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umich-thesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unam-thesis.r51207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unamthesis.r43639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unbtex.r72488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unifith.r60698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unigrazpub.r64797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitn-bimrep.r45581.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/univie-ling.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unizgklasa.r51647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unswcover.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uol-physics-report.r65761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uothesis.r25355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uowthesis.r19700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uowthesistitlepage.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urcls.r49903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uspatent.r27744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ut-thesis.r71906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utexasthesis.r48648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uvaletter.r66712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-colours.r60443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-letterhead.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pcf.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pif.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwthesis.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vancouver.r59192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wsemclassic.r31532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduthesis.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduts.r66661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmuthesis.r56614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yathesis.r70511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yazd-thesis.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yb-book.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/york-thesis.r23348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-publishers.r72771.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aastex.r58057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abnt.r55471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abntex2.r49248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abntexto.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmart.r72113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmconf.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/active-conf.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfathesis.r26048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afparticle.r35900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aguplus.r17156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aiaa.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amnestyreport.r69439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonymous-acm.r55121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aomart.r72865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6.r67848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6e.r23350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa7.r63974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arsclassica.r45656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/articleingud.r38741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asaetr.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascelike.r29129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asmeconf.r71956.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asmejour.r71903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aucklandthesis.r51323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorcsthesis.r61770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorexam.r65140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bath-bst.r63398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-fuberlin.r63161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-verona.r39180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beilstein.r56193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bfh-ci.r70623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bgteubner.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bjfuthesis.r59809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bmstu.r65897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bmstu-iu8.r72693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/br-lex.r44939.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-dissertation.r67935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-problemset.r50991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-thesis.r68092.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/buctthesis.r67818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadilla.r25144.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cesenaexam.r44960.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chem-journal.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chifoot.r57312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chs-physics-report.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cidarticle.r68976.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cje.r68656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjs-rcs-article.r71936.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classicthesis.r48041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleanthesis.r51472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmpj.r58506.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/confproc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contract.r69759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cquthesis.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dccpaper.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dithesis.r34295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebook.r29466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebsthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmaths.r72143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ejpecp.r60950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekaia.r49594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elbioimp.r21758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/els-cas-templates.r71189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elsarticle.r70902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elteiktdk.r71086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elteikthesis.r71087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emisa.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erdc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/estcpmm.r17335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etsvthor.r48186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facture-belge-simple-sans-tva.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbithesis.r21340.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcavtex.r38074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcltxdoc.r24500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fei.r65352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftc-notebook.r50043.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gaceta.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gammas.r56403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geradwp.r63134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfdl.r65415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradstudentresume.r38832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grant.r56852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gsemthesis.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gzt.r70532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/h2020proposal.r38428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hagenberg-thesis.r65819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/har2nat.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hduthesis.r72869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hecthese.r68584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-paper.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heria.r72189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfutexam.r68829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfutthesis.r64025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hithesis.r64005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszbeamer.r54381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszthesis.r61073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobete.r27036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hu-berlin-bundle.r67128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hustthesis.r42547.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria.r72670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria-lite.r72669.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icsv.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeeconf.r59665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeepes.r17359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeetran.r59672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijmart.r30958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijsra.r44886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imac.r17347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imtekda.r17667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inkpaper.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iodhbwm.r57773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iscram.r45801.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jacow.r63060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmlr.r61957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jnuexam.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jourcl.r65290.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jourrr.r68556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpsj.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jwjournal.r72788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdgdocs.r24498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdpcover.r65150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kfupm-math-exam.r63977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kluwer.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ksp-thesis.r39080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ku-template.r45935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langsci.r70025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langsci-avm.r66016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limecv.r61199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lion-msc.r55415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/llncs.r72613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/llncsconf.r63136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lni.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lps.r21322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3.r29845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3mem.r35773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcmthesis.r69538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mentis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mitthesis.r72749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlacls.r72271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mluexercise.r56927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnras.r68878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modeles-factures-belges-assocs.r67840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msu-thesis.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mucproc.r43445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mugsthesis.r64259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/muling.r66741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musuos.r24857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/muthesis.r23861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mynsfc.r60280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nature.r21819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/navydocs.r41643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nddiss.r45107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ndsu-thesis.r46639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ndsu-thesis-2022.r63881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nih.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nihbiosketch.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njustthesis.r62451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuthesis.r71034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuvisual.r65261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nostarch.r67683.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/novel.r71113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nrc.r29027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nstc-proposal.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwafuthesis.r66895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwejm.r70597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nxuthesis.r71344.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onrannual.r17474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opteng.r27331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oststud.r67217.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oup-authoring-template.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philosophersimprint.r56954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pittetd.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkuthss.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot-fuberlin.r52922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot-tuliplab.r47963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pracjourn.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prociagssymp.r70888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proposal.r40538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prtec.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptptex.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrbill.r67724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quantumarticle.r65242.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rebuttal.r72851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regulatory.r72197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resphilosophica.r50935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resumecls.r54815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex.r67271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4.r56589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4-1.r56590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rub-kunstgeschichte.r72721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rutitlepage.r62143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ryersonsgsthesis.r50119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ryethesis.r33945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sageep.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sapthesis.r63810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schule.r70846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scientific-thesis-cover.r47923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scripture.r69232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrjrnl.r27810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sduthesis.r41401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/se2thesis.r72569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seu-ml-assign.r62933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesis.r33042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesix.r40088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfee.r70718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shortmathj.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shtthesis.r62441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smflatex.r58910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soton.r16215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sphdthesis.r34374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spie.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sr-vorl.r59333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srdp-mathematik.r70807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sshrc-insight.r72623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch.r68039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch-2.r68183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suftesi.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sugconf.r58752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabriz-thesis.r51729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/technion-thesis-template.r49889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texilikechaps.r28553.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/texilikecover.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-ekf.r70980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-gwu.r54287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-qom.r63524.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-titlepage-fhac.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thuaslogos.r51347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thubeamer.r61071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thucoursework.r56435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thuthesis.r71680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tidyres.r67738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tiet-question-paper.r71601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timbreicmc.r49740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlc-article.r51431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topletter.r48182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toptesi.r56276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tuda-ci.r71696.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tudscr.r64085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tugboat.r72711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tugboat-plain.r72675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tui.r27253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turabian.r36298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uaclasses.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uafthesis.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uantwerpendocs.r72118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucalgmthesis.r66602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucbthesis.r51690.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucdavisthesis.r40772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucph-revy.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucsmonograph.r52698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udepcolor.r69701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udes-genie-these.r68141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udiss.r72466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uestcthesis.r36371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ufrgscca.r72586.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhhassignment.r44026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucredborder.r29974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ukbill.r69362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulthese.r71697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umbclegislation.r41348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umich-thesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unam-thesis.r51207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unamthesis.r43639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unbtex.r72488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unifith.r60698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unigrazpub.r64797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitn-bimrep.r45581.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/univie-ling.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unizgklasa.r51647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unswcover.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uol-physics-report.r65761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uothesis.r25355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uowthesis.r19700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uowthesistitlepage.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urcls.r49903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uspatent.r27744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ut-thesis.r71906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utexasthesis.r48648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uvaletter.r66712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-colours.r60443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-letterhead.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pcf.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pif.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwthesis.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vancouver.r59192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wsemclassic.r31532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduthesis.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduts.r66661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmuthesis.r56614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yathesis.r70511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yazd-thesis.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yb-book.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/york-thesis.r23348.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/aastex.doc.r58057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abnt.doc.r55471.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abntex2.doc.r49248.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/abntexto.doc.r70885.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmart.doc.r72113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmconf.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/active-conf.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfathesis.doc.r26048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afparticle.doc.r35900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aguplus.doc.r17156.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aiaa.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amnestyreport.doc.r69439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anonymous-acm.doc.r55121.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/anufinalexam.doc.r26053.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aomart.doc.r72865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6.doc.r67848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6e.doc.r23350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa7.doc.r63974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arsclassica.doc.r45656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/articleingud.doc.r38741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asaetr.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ascelike.doc.r29129.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asmeconf.doc.r71956.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/asmejour.doc.r71903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aucklandthesis.doc.r51323.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorcsthesis.doc.r61770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorexam.doc.r65140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bath-bst.doc.r63398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-fuberlin.doc.r63161.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beamer-verona.doc.r39180.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beilstein.doc.r56193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bfh-ci.doc.r70623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bgteubner.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bjfuthesis.doc.r59809.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bmstu.doc.r65897.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bmstu-iu8.doc.r72693.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/br-lex.doc.r44939.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-dissertation.doc.r67935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-problemset.doc.r50991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-thesis.doc.r68092.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/buctthesis.doc.r67818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cascadilla.doc.r25144.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cesenaexam.doc.r44960.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chifoot.doc.r57312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/chs-physics-report.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cidarticle.doc.r68976.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cje.doc.r68656.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjs-rcs-article.doc.r71936.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/classicthesis.doc.r48041.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cleanthesis.doc.r51472.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cmpj.doc.r58506.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/confproc.doc.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contract.doc.r69759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cquthesis.doc.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dccpaper.doc.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dithesis.doc.r34295.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebook.doc.r29466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebsthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ecothesis.doc.r48007.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/edmaths.doc.r72143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ejpecp.doc.r60950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekaia.doc.r49594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elbioimp.doc.r21758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/els-cas-templates.doc.r71189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elsarticle.doc.r70902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elteiktdk.doc.r71086.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elteikthesis.doc.r71087.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emisa.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erdc.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/estcpmm.doc.r17335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/etsvthor.doc.r48186.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/facture-belge-simple-sans-tva.doc.r67573.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbithesis.doc.r21340.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcavtex.doc.r38074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcltxdoc.doc.r24500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fei.doc.r65352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ftc-notebook.doc.r50043.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gaceta.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gammas.doc.r56403.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geradwp.doc.r63134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfdl.doc.r65415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gradstudentresume.doc.r38832.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grant.doc.r56852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gsemthesis.doc.r56291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gzt.doc.r70532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/h2020proposal.doc.r38428.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hagenberg-thesis.doc.r65819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/har2nat.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hduthesis.doc.r72869.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hecthese.doc.r68584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-paper.doc.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heria.doc.r72189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfutexam.doc.r68829.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hfutthesis.doc.r64025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hithesis.doc.r64005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszbeamer.doc.r54381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszthesis.doc.r61073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hobete.doc.r27036.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hu-berlin-bundle.doc.r67128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hustthesis.doc.r42547.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria.doc.r72670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria-lite.doc.r72669.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icsv.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeeconf.doc.r59665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeepes.doc.r17359.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeetran.doc.r59672.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijmart.doc.r30958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijsra.doc.r44886.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imac.doc.r17347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imtekda.doc.r17667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/inkpaper.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iodhbwm.doc.r57773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iscram.doc.r45801.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jacow.doc.r63060.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmlr.doc.r61957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jnuexam.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jourcl.doc.r65290.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jourrr.doc.r68556.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jpsj.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jwjournal.doc.r72788.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdgdocs.doc.r24498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdpcover.doc.r65150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kfupm-math-exam.doc.r63977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kluwer.doc.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ksp-thesis.doc.r39080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ku-template.doc.r45935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langsci.doc.r70025.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langsci-avm.doc.r66016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limecv.doc.r61199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lion-msc.doc.r55415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/llncs.doc.r72613.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/llncsconf.doc.r63136.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lni.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lps.doc.r21322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3.doc.r29845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3mem.doc.r35773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcmthesis.doc.r69538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mentis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mitthesis.doc.r72749.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlacls.doc.r72271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mluexercise.doc.r56927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mnras.doc.r68878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/modeles-factures-belges-assocs.doc.r67840.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/msu-thesis.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mucproc.doc.r43445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mugsthesis.doc.r64259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/muling.doc.r66741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musuos.doc.r24857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/muthesis.doc.r23861.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mynsfc.doc.r60280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nature.doc.r21819.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/navydocs.doc.r41643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nddiss.doc.r45107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ndsu-thesis.doc.r46639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ndsu-thesis-2022.doc.r63881.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nih.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nihbiosketch.doc.r54191.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njustthesis.doc.r62451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuthesis.doc.r71034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuvisual.doc.r65261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nostarch.doc.r67683.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/novel.doc.r71113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nrc.doc.r29027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nstc-proposal.doc.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwafuthesis.doc.r66895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwejm.doc.r70597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nxuthesis.doc.r71344.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/onrannual.doc.r17474.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/opteng.doc.r27331.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oststud.doc.r67217.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oup-authoring-template.doc.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philosophersimprint.doc.r56954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pittetd.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pkuthss.doc.r70491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot-fuberlin.doc.r52922.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/powerdot-tuliplab.doc.r47963.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pracjourn.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prociagssymp.doc.r70888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proposal.doc.r40538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prtec.doc.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptptex.doc.r19440.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrbill.doc.r67724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/quantumarticle.doc.r65242.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rebuttal.doc.r72851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/regulatory.doc.r72197.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resphilosophica.doc.r50935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resumecls.doc.r54815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex.doc.r67271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4.doc.r56589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4-1.doc.r56590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rub-kunstgeschichte.doc.r72721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rutitlepage.doc.r62143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ryersonsgsthesis.doc.r50119.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ryethesis.doc.r33945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sageep.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sapthesis.doc.r63810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/schule.doc.r70846.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scientific-thesis-cover.doc.r47923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scripture.doc.r69232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrjrnl.doc.r27810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sduthesis.doc.r41401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/se2thesis.doc.r72569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seu-ml-assign.doc.r62933.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesis.doc.r33042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesix.doc.r40088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfee.doc.r70718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shortmathj.doc.r67201.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/shtthesis.doc.r62441.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smflatex.doc.r58910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/soton.doc.r16215.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sphdthesis.doc.r34374.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/spie.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sr-vorl.doc.r59333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/srdp-mathematik.doc.r70807.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sshrc-insight.doc.r72623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch.doc.r68039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch-2.doc.r68183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suftesi.doc.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sugconf.doc.r58752.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tabriz-thesis.doc.r51729.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/technion-thesis-template.doc.r49889.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-ekf.doc.r70980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-gwu.doc.r54287.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-qom.doc.r63524.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-titlepage-fhac.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thuaslogos.doc.r51347.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thubeamer.doc.r61071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thucoursework.doc.r56435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thuthesis.doc.r71680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tidyres.doc.r67738.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tiet-question-paper.doc.r71601.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timbreicmc.doc.r49740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tlc-article.doc.r51431.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topletter.doc.r48182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toptesi.doc.r56276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tuda-ci.doc.r71696.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tudscr.doc.r64085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tugboat.doc.r72711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tugboat-plain.doc.r72675.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tui.doc.r27253.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/turabian.doc.r36298.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uaclasses.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uafthesis.doc.r57349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uantwerpendocs.doc.r72118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucalgmthesis.doc.r66602.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucbthesis.doc.r51690.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucdavisthesis.doc.r40772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucph-revy.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucsmonograph.doc.r52698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udepcolor.doc.r69701.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udes-genie-these.doc.r68141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udiss.doc.r72466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uestcthesis.doc.r36371.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ufrgscca.doc.r72586.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhhassignment.doc.r44026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucredborder.doc.r29974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ukbill.doc.r69362.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulthese.doc.r71697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umbclegislation.doc.r41348.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umich-thesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/umthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unam-thesis.doc.r51207.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unamth-template.doc.r68681.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unamthesis.doc.r43639.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unbtex.doc.r72488.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unifith.doc.r60698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unigrazpub.doc.r64797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unitn-bimrep.doc.r45581.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/univie-ling.doc.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unizgklasa.doc.r51647.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unswcover.doc.r66115.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uol-physics-report.doc.r65761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uothesis.doc.r25355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uowthesis.doc.r19700.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uowthesistitlepage.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/urcls.doc.r49903.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uspatent.doc.r27744.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ut-thesis.doc.r71906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/utexasthesis.doc.r48648.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uvaletter.doc.r66712.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-colours.doc.r60443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-letterhead.doc.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pcf.doc.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pif.doc.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwthesis.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/vancouver.doc.r59192.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wsemclassic.doc.r31532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduthesis.doc.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduts.doc.r66661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmuthesis.doc.r56614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yathesis.doc.r70511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yazd-thesis.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yb-book.doc.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/york-thesis.doc.r23348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aastex.doc.r58057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abnt.doc.r55471.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abntex2.doc.r49248.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/abntexto.doc.r70885.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmart.doc.r72113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmconf.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/active-conf.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfathesis.doc.r26048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afparticle.doc.r35900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aguplus.doc.r17156.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aiaa.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amnestyreport.doc.r69439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anonymous-acm.doc.r55121.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/anufinalexam.doc.r26053.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aomart.doc.r72865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6.doc.r67848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6e.doc.r23350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa7.doc.r63974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arsclassica.doc.r45656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/articleingud.doc.r38741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asaetr.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ascelike.doc.r29129.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asmeconf.doc.r71956.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/asmejour.doc.r71903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aucklandthesis.doc.r51323.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorcsthesis.doc.r61770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorexam.doc.r65140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bath-bst.doc.r63398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-fuberlin.doc.r63161.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beamer-verona.doc.r39180.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beilstein.doc.r56193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bfh-ci.doc.r70623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bgteubner.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bjfuthesis.doc.r59809.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bmstu.doc.r65897.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bmstu-iu8.doc.r72693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/br-lex.doc.r44939.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-dissertation.doc.r67935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-problemset.doc.r50991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-thesis.doc.r68092.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/buctthesis.doc.r67818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cascadilla.doc.r25144.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cesenaexam.doc.r44960.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chifoot.doc.r57312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/chs-physics-report.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cidarticle.doc.r68976.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cje.doc.r68656.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjs-rcs-article.doc.r71936.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/classicthesis.doc.r48041.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cleanthesis.doc.r51472.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cmpj.doc.r58506.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/confproc.doc.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contract.doc.r69759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cquthesis.doc.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dccpaper.doc.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dithesis.doc.r34295.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebook.doc.r29466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebsthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ecothesis.doc.r48007.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/edmaths.doc.r72143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ejpecp.doc.r60950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekaia.doc.r49594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elbioimp.doc.r21758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/els-cas-templates.doc.r71189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elsarticle.doc.r70902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elteiktdk.doc.r71086.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elteikthesis.doc.r71087.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emisa.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erdc.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/estcpmm.doc.r17335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/etsvthor.doc.r48186.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/facture-belge-simple-sans-tva.doc.r67573.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbithesis.doc.r21340.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcavtex.doc.r38074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcltxdoc.doc.r24500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fei.doc.r65352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ftc-notebook.doc.r50043.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gaceta.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gammas.doc.r56403.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geradwp.doc.r63134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfdl.doc.r65415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gradstudentresume.doc.r38832.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grant.doc.r56852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gsemthesis.doc.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gzt.doc.r70532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/h2020proposal.doc.r38428.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hagenberg-thesis.doc.r65819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/har2nat.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hduthesis.doc.r72869.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hecthese.doc.r68584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-paper.doc.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heria.doc.r72189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfutexam.doc.r68829.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hfutthesis.doc.r64025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hithesis.doc.r64005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszbeamer.doc.r54381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszthesis.doc.r61073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hobete.doc.r27036.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hu-berlin-bundle.doc.r67128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hustthesis.doc.r42547.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria.doc.r72670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria-lite.doc.r72669.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icsv.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeeconf.doc.r59665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeepes.doc.r17359.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeetran.doc.r59672.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijmart.doc.r30958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijsra.doc.r44886.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imac.doc.r17347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imtekda.doc.r17667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/inkpaper.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iodhbwm.doc.r57773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iscram.doc.r45801.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jacow.doc.r63060.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmlr.doc.r61957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jnuexam.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jourcl.doc.r65290.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jourrr.doc.r68556.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jpsj.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jwjournal.doc.r72788.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdgdocs.doc.r24498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdpcover.doc.r65150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kfupm-math-exam.doc.r63977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kluwer.doc.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ksp-thesis.doc.r39080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ku-template.doc.r45935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langsci.doc.r70025.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langsci-avm.doc.r66016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limecv.doc.r61199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lion-msc.doc.r55415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/llncs.doc.r72613.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/llncsconf.doc.r63136.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lni.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lps.doc.r21322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3.doc.r29845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3mem.doc.r35773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcmthesis.doc.r69538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mentis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mitthesis.doc.r72749.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlacls.doc.r72271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mluexercise.doc.r56927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mnras.doc.r68878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/modeles-factures-belges-assocs.doc.r67840.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/msu-thesis.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mucproc.doc.r43445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mugsthesis.doc.r64259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/muling.doc.r66741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musuos.doc.r24857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/muthesis.doc.r23861.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mynsfc.doc.r60280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nature.doc.r21819.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/navydocs.doc.r41643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nddiss.doc.r45107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ndsu-thesis.doc.r46639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ndsu-thesis-2022.doc.r63881.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nih.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nihbiosketch.doc.r54191.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njustthesis.doc.r62451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuthesis.doc.r71034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuvisual.doc.r65261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nostarch.doc.r67683.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/novel.doc.r71113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nrc.doc.r29027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nstc-proposal.doc.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwafuthesis.doc.r66895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwejm.doc.r70597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nxuthesis.doc.r71344.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/onrannual.doc.r17474.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/opteng.doc.r27331.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oststud.doc.r67217.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oup-authoring-template.doc.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philosophersimprint.doc.r56954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pittetd.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pkuthss.doc.r70491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot-fuberlin.doc.r52922.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/powerdot-tuliplab.doc.r47963.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pracjourn.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prociagssymp.doc.r70888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proposal.doc.r40538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prtec.doc.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptptex.doc.r19440.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrbill.doc.r67724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/quantumarticle.doc.r65242.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rebuttal.doc.r72851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/regulatory.doc.r72197.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resphilosophica.doc.r50935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resumecls.doc.r54815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex.doc.r67271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4.doc.r56589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4-1.doc.r56590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rub-kunstgeschichte.doc.r72721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rutitlepage.doc.r62143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ryersonsgsthesis.doc.r50119.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ryethesis.doc.r33945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sageep.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sapthesis.doc.r63810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/schule.doc.r70846.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scientific-thesis-cover.doc.r47923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scripture.doc.r69232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrjrnl.doc.r27810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sduthesis.doc.r41401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/se2thesis.doc.r72569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seu-ml-assign.doc.r62933.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesis.doc.r33042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesix.doc.r40088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfee.doc.r70718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shortmathj.doc.r67201.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/shtthesis.doc.r62441.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smflatex.doc.r58910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/soton.doc.r16215.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sphdthesis.doc.r34374.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/spie.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sr-vorl.doc.r59333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/srdp-mathematik.doc.r70807.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sshrc-insight.doc.r72623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch.doc.r68039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch-2.doc.r68183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suftesi.doc.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sugconf.doc.r58752.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tabriz-thesis.doc.r51729.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/technion-thesis-template.doc.r49889.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-ekf.doc.r70980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-gwu.doc.r54287.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-qom.doc.r63524.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-titlepage-fhac.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thuaslogos.doc.r51347.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thubeamer.doc.r61071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thucoursework.doc.r56435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thuthesis.doc.r71680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tidyres.doc.r67738.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tiet-question-paper.doc.r71601.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timbreicmc.doc.r49740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tlc-article.doc.r51431.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topletter.doc.r48182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toptesi.doc.r56276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tuda-ci.doc.r71696.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tudscr.doc.r64085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tugboat.doc.r72711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tugboat-plain.doc.r72675.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tui.doc.r27253.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/turabian.doc.r36298.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uaclasses.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uafthesis.doc.r57349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uantwerpendocs.doc.r72118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucalgmthesis.doc.r66602.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucbthesis.doc.r51690.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucdavisthesis.doc.r40772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucph-revy.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucsmonograph.doc.r52698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udepcolor.doc.r69701.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udes-genie-these.doc.r68141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udiss.doc.r72466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uestcthesis.doc.r36371.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ufrgscca.doc.r72586.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhhassignment.doc.r44026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucredborder.doc.r29974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ukbill.doc.r69362.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulthese.doc.r71697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umbclegislation.doc.r41348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umich-thesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/umthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unam-thesis.doc.r51207.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unamth-template.doc.r68681.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unamthesis.doc.r43639.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unbtex.doc.r72488.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unifith.doc.r60698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unigrazpub.doc.r64797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unitn-bimrep.doc.r45581.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/univie-ling.doc.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unizgklasa.doc.r51647.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unswcover.doc.r66115.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uol-physics-report.doc.r65761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uothesis.doc.r25355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uowthesis.doc.r19700.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uowthesistitlepage.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/urcls.doc.r49903.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uspatent.doc.r27744.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ut-thesis.doc.r71906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/utexasthesis.doc.r48648.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uvaletter.doc.r66712.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-colours.doc.r60443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-letterhead.doc.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pcf.doc.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pif.doc.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwthesis.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/vancouver.doc.r59192.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wsemclassic.doc.r31532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduthesis.doc.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduts.doc.r66661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmuthesis.doc.r56614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yathesis.doc.r70511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yazd-thesis.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yb-book.doc.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/york-thesis.doc.r23348.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmart.source.r72113.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/acmconf.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/active-conf.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/adfathesis.source.r26048.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/afparticle.source.r35900.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aiaa.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/amnestyreport.source.r69439.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/aomart.source.r72865.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6.source.r67848.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa6e.source.r23350.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/apa7.source.r63974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/articleingud.source.r38741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorcsthesis.source.r61770.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bangorexam.source.r65140.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bath-bst.source.r63398.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/beilstein.source.r56193.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bgteubner.source.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-dissertation.source.r67935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/brandeis-thesis.source.r68092.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/buctthesis.source.r67818.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cesenaexam.source.r44960.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cidarticle.source.r68976.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cjs-rcs-article.source.r71936.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/confproc.source.r29349.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/contract.source.r69759.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cquthesis.source.r55643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/dccpaper.source.r72097.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ebsthesis.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ejpecp.source.r60950.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ekaia.source.r49594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elbioimp.source.r21758.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/elsarticle.source.r70902.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/emisa.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/erdc.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/estcpmm.source.r17335.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fbithesis.source.r21340.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fcltxdoc.source.r24500.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fei.source.r65352.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/geradwp.source.r63134.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gfdl.source.r65415.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/grant.source.r56852.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gsemthesis.source.r56291.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/gzt.source.r70532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hecthese.source.r68584.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hep-paper.source.r67632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/heria.source.r72189.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hithesis.source.r64005.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszbeamer.source.r54381.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hitszthesis.source.r61073.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hu-berlin-bundle.source.r67128.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/hustthesis.source.r42547.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria.source.r72670.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/iaria-lite.source.r72669.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/icsv.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ieeeconf.source.r59665.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ijmart.source.r30958.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/imtekda.source.r17667.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/jmlr.source.r61957.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdgdocs.source.r24498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kdpcover.source.r65150.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kfupm-math-exam.source.r63977.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/kluwer.source.r54074.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/langsci-avm.source.r66016.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/limecv.source.r61199.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lni.source.r71883.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/lps.source.r21322.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3.source.r29845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/matc3mem.source.r35773.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mcmthesis.source.r69538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mentis.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mlacls.source.r72271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mluexercise.source.r56927.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mucproc.source.r43445.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mugsthesis.source.r64259.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/muling.source.r66741.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/musuos.source.r24857.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/mynsfc.source.r60280.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/navydocs.source.r41643.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nddiss.source.r45107.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njustthesis.source.r62451.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuthesis.source.r71034.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/njuvisual.source.r65261.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nostarch.source.r67683.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nrc.source.r29027.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nstc-proposal.source.r72795.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwafuthesis.source.r66895.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/nwejm.source.r70597.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/oststud.source.r67217.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philosophersimprint.source.r56954.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pittetd.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/pracjourn.source.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/prociagssymp.source.r70888.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/proposal.source.r40538.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/qrbill.source.r67724.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rebuttal.source.r72851.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resphilosophica.source.r50935.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/resumecls.source.r54815.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex.source.r67271.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4.source.r56589.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/revtex4-1.source.r56590.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rub-kunstgeschichte.source.r72721.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/rutitlepage.source.r62143.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ryethesis.source.r33945.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sageep.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scientific-thesis-cover.source.r47923.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scripture.source.r69232.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/scrjrnl.source.r27810.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sduthesis.source.r41401.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/se2thesis.source.r72569.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesis.source.r33042.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/seuthesix.source.r40088.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sfee.source.r70718.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/smflatex.source.r58910.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sr-vorl.source.r59333.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/sshrc-insight.source.r72623.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch.source.r68039.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/stellenbosch-2.source.r68183.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/suftesi.source.r68204.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-ekf.source.r70980.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thesis-titlepage-fhac.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thubeamer.source.r61071.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thucoursework.source.r56435.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/thuthesis.source.r71680.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/timbreicmc.source.r49740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/topletter.source.r48182.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/toptesi.source.r56276.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tudscr.source.r64085.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tugboat.source.r72711.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uaclasses.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uantwerpendocs.source.r72118.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucdavisthesis.source.r40772.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucph-revy.source.r72484.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucsmonograph.source.r52698.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udes-genie-these.source.r68141.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/udiss.source.r72466.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uhhassignment.source.r44026.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucredborder.source.r29974.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uiucthesis.source.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ulthese.source.r71697.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unigrazpub.source.r64797.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uol-physics-report.source.r65761.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uothesis.source.r25355.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ut-thesis.source.r71906.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-colours.source.r60443.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-letterhead.source.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pcf.source.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/uwa-pif.source.r64491.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/wsemclassic.source.r31532.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduthesis.source.r63116.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xduts.source.r66661.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xmuthesis.source.r56614.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yathesis.source.r70511.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/yb-book.source.r70740.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/york-thesis.source.r23348.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmart.source.r72113.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/acmconf.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/active-conf.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/adfathesis.source.r26048.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/afparticle.source.r35900.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aiaa.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/amnestyreport.source.r69439.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/aomart.source.r72865.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6.source.r67848.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa6e.source.r23350.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/apa7.source.r63974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/articleingud.source.r38741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorcsthesis.source.r61770.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bangorexam.source.r65140.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bath-bst.source.r63398.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/beilstein.source.r56193.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bgteubner.source.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-dissertation.source.r67935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/brandeis-thesis.source.r68092.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/buctthesis.source.r67818.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cesenaexam.source.r44960.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cidarticle.source.r68976.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cjs-rcs-article.source.r71936.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/confproc.source.r29349.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/contract.source.r69759.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cquthesis.source.r55643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/dccpaper.source.r72097.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ebsthesis.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ejpecp.source.r60950.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ekaia.source.r49594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elbioimp.source.r21758.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/elsarticle.source.r70902.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/emisa.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/erdc.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/estcpmm.source.r17335.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fbithesis.source.r21340.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fcltxdoc.source.r24500.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fei.source.r65352.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/geradwp.source.r63134.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gfdl.source.r65415.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/grant.source.r56852.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gsemthesis.source.r56291.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/gzt.source.r70532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hecthese.source.r68584.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hep-paper.source.r67632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/heria.source.r72189.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hithesis.source.r64005.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszbeamer.source.r54381.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hitszthesis.source.r61073.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hu-berlin-bundle.source.r67128.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/hustthesis.source.r42547.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria.source.r72670.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/iaria-lite.source.r72669.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/icsv.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ieeeconf.source.r59665.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ijmart.source.r30958.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/imtekda.source.r17667.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/jmlr.source.r61957.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdgdocs.source.r24498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kdpcover.source.r65150.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kfupm-math-exam.source.r63977.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/kluwer.source.r54074.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/langsci-avm.source.r66016.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/limecv.source.r61199.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lni.source.r71883.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/lps.source.r21322.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3.source.r29845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/matc3mem.source.r35773.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mcmthesis.source.r69538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mentis.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mlacls.source.r72271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mluexercise.source.r56927.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mucproc.source.r43445.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mugsthesis.source.r64259.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/muling.source.r66741.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/musuos.source.r24857.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/mynsfc.source.r60280.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/navydocs.source.r41643.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nddiss.source.r45107.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njustthesis.source.r62451.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuthesis.source.r71034.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/njuvisual.source.r65261.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nostarch.source.r67683.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nrc.source.r29027.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nstc-proposal.source.r72795.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwafuthesis.source.r66895.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/nwejm.source.r70597.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/oststud.source.r67217.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philosophersimprint.source.r56954.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pittetd.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/pracjourn.source.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/prociagssymp.source.r70888.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/proposal.source.r40538.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/qrbill.source.r67724.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rebuttal.source.r72851.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resphilosophica.source.r50935.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/resumecls.source.r54815.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex.source.r67271.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4.source.r56589.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/revtex4-1.source.r56590.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rub-kunstgeschichte.source.r72721.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/rutitlepage.source.r62143.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ryethesis.source.r33945.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sageep.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scientific-thesis-cover.source.r47923.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scripture.source.r69232.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/scrjrnl.source.r27810.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sduthesis.source.r41401.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/se2thesis.source.r72569.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesis.source.r33042.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/seuthesix.source.r40088.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sfee.source.r70718.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/smflatex.source.r58910.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sr-vorl.source.r59333.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/sshrc-insight.source.r72623.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch.source.r68039.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/stellenbosch-2.source.r68183.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/suftesi.source.r68204.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-ekf.source.r70980.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thesis-titlepage-fhac.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thubeamer.source.r61071.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thucoursework.source.r56435.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/thuthesis.source.r71680.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/timbreicmc.source.r49740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/topletter.source.r48182.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/toptesi.source.r56276.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tudscr.source.r64085.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tugboat.source.r72711.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uaclasses.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uantwerpendocs.source.r72118.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucdavisthesis.source.r40772.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucph-revy.source.r72484.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucsmonograph.source.r52698.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udes-genie-these.source.r68141.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/udiss.source.r72466.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uhhassignment.source.r44026.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucredborder.source.r29974.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uiucthesis.source.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ulthese.source.r71697.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unigrazpub.source.r64797.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uol-physics-report.source.r65761.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uothesis.source.r25355.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ut-thesis.source.r71906.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-colours.source.r60443.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-letterhead.source.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pcf.source.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/uwa-pif.source.r64491.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/wsemclassic.source.r31532.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduthesis.source.r63116.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xduts.source.r66661.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xmuthesis.source.r56614.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yathesis.source.r70511.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/yb-book.source.r70740.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/york-thesis.source.r23348.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=6af0a3c144dcf867fe4d8121719f63ba +_md5_=6bda54d6eb93351d5eb53355187ffbc4 diff --git a/metadata/md5-cache/dev-texlive/texlive-xetex-2024_p71515 b/metadata/md5-cache/dev-texlive/texlive-xetex-2024_p71515 index 9727143b67c3..f480117b09f0 100644 --- a/metadata/md5-cache/dev-texlive/texlive-xetex-2024_p71515 +++ b/metadata/md5-cache/dev-texlive/texlive-xetex-2024_p71515 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.tug.org/texlive/ INHERIT=font texlive-module IUSE=X doc source -KEYWORDS=~alpha amd64 arm arm64 ppc ppc64 ~riscv x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=Apache-2.0 CC-BY-4.0 CC-BY-SA-4.0 GPL-1+ GPL-3 LGPL-2+ LPPL-1.2 LPPL-1.3 LPPL-1.3c MIT TeX-other-free public-domain RDEPEND=>=app-text/texlive-core-2024[xetex] >=dev-texlive/texlive-basic-2024 >=dev-texlive/texlive-latex-2024 >=app-text/texlive-core-2024 SLOT=0 SRC_URI=https://mirrors.ctan.org/systems/texlive/tlnet/archive/collection-xetex.r71515.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabxetex.r38299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidi-atbegshi.r62009.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidicontour.r34631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidipagegrid.r34632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidipresentation.r35267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidishadowtext.r34633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/businesscard-qrcode.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cqubeamer.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixlatvian.r21631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/font-change-xetex.r40404.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontbook.r23608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontwrap.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interchar.r36312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/na-position.r55559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philokalia.r45356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptext.r30171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realscripts.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simple-resume-cv.r43057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simple-thesis-dissertation.r43058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tetragonos.r49732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucharclasses.r64782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-bidi.r42482.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unimath-plain-xetex.r72498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unisugar.r22357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xebaposter.r63513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xechangebar.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecolor.r29660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecyr.r54308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xeindex.r35756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xelatex-dev.r71363.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xesearch.r51908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xespotcolor.r58212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-itrans.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-pstricks.r17055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-tibetan.r28847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexconfig.r45845.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexfontinfo.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexko.r70315.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xevlna.r43864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zbmath-review-template.r59693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/collection-xetex.r71515.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabxetex.r38299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidi-atbegshi.r62009.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidicontour.r34631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidipagegrid.r34632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidipresentation.r35267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidishadowtext.r34633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/businesscard-qrcode.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cqubeamer.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixlatvian.r21631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/font-change-xetex.r40404.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontbook.r23608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontwrap.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interchar.r36312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/na-position.r55559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philokalia.r45356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptext.r30171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realscripts.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simple-resume-cv.r43057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simple-thesis-dissertation.r43058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tetragonos.r49732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucharclasses.r64782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-bidi.r42482.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unimath-plain-xetex.r72498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unisugar.r22357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xebaposter.r63513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xechangebar.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecolor.r29660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecyr.r54308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xeindex.r35756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xelatex-dev.r71363.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xesearch.r51908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xespotcolor.r58212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-itrans.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-pstricks.r17055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-tibetan.r28847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexconfig.r45845.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexfontinfo.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexko.r70315.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xevlna.r43864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zbmath-review-template.r59693.tar.xz doc? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabxetex.doc.r38299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidi-atbegshi.doc.r62009.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidicontour.doc.r34631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidipagegrid.doc.r34632.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidipresentation.doc.r35267.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/bidishadowtext.doc.r34633.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/businesscard-qrcode.doc.r61719.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/cqubeamer.doc.r54512.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixlatvian.doc.r21631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/font-change-xetex.doc.r40404.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontbook.doc.r23608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontwrap.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/interchar.doc.r36312.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/na-position.doc.r55559.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philokalia.doc.r45356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ptext.doc.r30171.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realscripts.doc.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simple-resume-cv.doc.r43057.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/simple-thesis-dissertation.doc.r43058.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/tetragonos.doc.r49732.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/ucharclasses.doc.r64782.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unicode-bidi.doc.r42482.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unimath-plain-xetex.doc.r72498.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/unisugar.doc.r22357.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xebaposter.doc.r63513.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xechangebar.doc.r54080.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecolor.doc.r29660.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xecyr.doc.r54308.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xeindex.doc.r35756.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xesearch.doc.r51908.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xespotcolor.doc.r58212.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex.doc.r71991.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-itrans.doc.r55475.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-pstricks.doc.r17055.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetex-tibetan.doc.r28847.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexfontinfo.doc.r15878.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xetexko.doc.r70315.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xevlna.doc.r43864.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/zbmath-review-template.doc.r59693.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabxetex.doc.r38299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidi-atbegshi.doc.r62009.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidicontour.doc.r34631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidipagegrid.doc.r34632.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidipresentation.doc.r35267.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/bidishadowtext.doc.r34633.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/businesscard-qrcode.doc.r61719.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/cqubeamer.doc.r54512.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixlatvian.doc.r21631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/font-change-xetex.doc.r40404.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontbook.doc.r23608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontwrap.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/interchar.doc.r36312.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/na-position.doc.r55559.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philokalia.doc.r45356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ptext.doc.r30171.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realscripts.doc.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simple-resume-cv.doc.r43057.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/simple-thesis-dissertation.doc.r43058.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/tetragonos.doc.r49732.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/ucharclasses.doc.r64782.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unicode-bidi.doc.r42482.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unimath-plain-xetex.doc.r72498.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/unisugar.doc.r22357.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xebaposter.doc.r63513.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xechangebar.doc.r54080.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecolor.doc.r29660.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xecyr.doc.r54308.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xeindex.doc.r35756.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xesearch.doc.r51908.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xespotcolor.doc.r58212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex.doc.r71991.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-itrans.doc.r55475.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-pstricks.doc.r17055.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetex-tibetan.doc.r28847.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexfontinfo.doc.r15878.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xetexko.doc.r70315.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xevlna.doc.r43864.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/zbmath-review-template.doc.r59693.tar.xz ) source? ( https://mirrors.ctan.org/systems/texlive/tlnet/archive/arabxetex.source.r38299.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fixlatvian.source.r21631.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/fontbook.source.r23608.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/philokalia.source.r45356.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/realscripts.source.r56594.tar.xz https://mirrors.ctan.org/systems/texlive/tlnet/archive/xespotcolor.source.r58212.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/arabxetex.source.r38299.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fixlatvian.source.r21631.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/fontbook.source.r23608.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/philokalia.source.r45356.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/realscripts.source.r56594.tar.xz https://dev.gentoo.org/~flow/distfiles/texlive/xespotcolor.source.r58212.tar.xz ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 font 6d0c60c855c05ae2ba808d300440ded2 texlive-common 2c70ed981525ed068beb038b87db7d10 texlive-module 937e001d61eac81c9121673bbf019c64 -_md5_=62cc809d4d704d584924d95e710cf015 +_md5_=7975c314ceb80d083cbaea4a3a03ce78 diff --git a/metadata/md5-cache/dev-util/android-sdk-cmdline-tools-0_p11076708 b/metadata/md5-cache/dev-util/android-sdk-cmdline-tools-0_p11076708 index 4bca9b4da04a..25796ac35088 100644 --- a/metadata/md5-cache/dev-util/android-sdk-cmdline-tools-0_p11076708 +++ b/metadata/md5-cache/dev-util/android-sdk-cmdline-tools-0_p11076708 @@ -11,5 +11,5 @@ RDEPEND=acct-group/android virtual/jre RESTRICT=bindist mirror SLOT=0 SRC_URI=https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd greadme 074e3d831f92e9b73038f05bb76c9548 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd greadme 074e3d831f92e9b73038f05bb76c9548 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=cea2a2ef2c42095c727fb99962bc25f3 diff --git a/metadata/md5-cache/dev-util/android-udev-rules-20250525 b/metadata/md5-cache/dev-util/android-udev-rules-20250525 index 045ac53a143d..a54f4ed57363 100644 --- a/metadata/md5-cache/dev-util/android-udev-rules-20250525 +++ b/metadata/md5-cache/dev-util/android-udev-rules-20250525 @@ -10,5 +10,5 @@ RDEPEND=acct-group/android virtual/udev RESTRICT=test SLOT=0 SRC_URI=https://github.com/M0Rf30/android-udev-rules/archive/refs/tags/20250525.tar.gz -> android-udev-rules-20250525.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ceda2dbc8c55693d0c0581427ef347e1 diff --git a/metadata/md5-cache/dev-util/android-udev-rules-20260423 b/metadata/md5-cache/dev-util/android-udev-rules-20260423 index 538995a5587a..6198cef7470b 100644 --- a/metadata/md5-cache/dev-util/android-udev-rules-20260423 +++ b/metadata/md5-cache/dev-util/android-udev-rules-20260423 @@ -10,5 +10,5 @@ RDEPEND=acct-group/android virtual/udev RESTRICT=test SLOT=0 SRC_URI=https://github.com/M0Rf30/android-udev-rules/archive/refs/tags/20260423.tar.gz -> android-udev-rules-20260423.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fe057cdf3f40117f4cb31a2d762aba1d diff --git a/metadata/md5-cache/dev-util/shards-0.19.1 b/metadata/md5-cache/dev-util/shards-0.19.1 deleted file mode 100644 index 989f7886617c..000000000000 --- a/metadata/md5-cache/dev-util/shards-0.19.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=>dev-lang/crystal-0.11.1 dev-libs/libyaml:= -DESCRIPTION=Dependency manager for the Crystal language -EAPI=8 -HOMEPAGE=https://github.com/crystal-lang/shards/ -INHERIT=multiprocessing toolchain-funcs -KEYWORDS=amd64 -LICENSE=Apache-2.0 -RDEPEND=>dev-lang/crystal-0.11.1 dev-libs/libyaml:= -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/crystal-lang/shards/archive/v0.19.1.tar.gz -> shards-0.19.1.tar.gz https://github.com/crystal-lang/crystal-molinillo/archive/v0.2.0.tar.gz -> crystal-molinillo-0.2.0.tar.gz -_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=60e65b66e1ce0a902e8bb35b4459fb1a diff --git a/metadata/md5-cache/games-server/bedrock-server-1.26.14.1 b/metadata/md5-cache/games-server/bedrock-server-1.26.14.1 new file mode 100644 index 000000000000..e09573c05f52 --- /dev/null +++ b/metadata/md5-cache/games-server/bedrock-server-1.26.14.1 @@ -0,0 +1,14 @@ +BDEPEND=app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install nofetch +DESCRIPTION=The official bedrock (non-java) based server for the sandbox video game +EAPI=8 +HOMEPAGE=https://www.minecraft.net/ +INHERIT=systemd +KEYWORDS=-* amd64 +LICENSE=Mojang +RDEPEND=acct-group/bedrock acct-user/bedrock app-misc/dtach net-misc/curl +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=https://www.minecraft.net/bedrockdedicatedserver/bin-linux/bedrock-server-1.26.14.1.zip +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=6d4d02b33dc4f5b80cc48e57221047e1 diff --git a/metadata/md5-cache/games-util/antimicrox-3.5.1 b/metadata/md5-cache/games-util/antimicrox-3.5.1 index 3c37cfefc108..0b28ce9fd6f3 100644 --- a/metadata/md5-cache/games-util/antimicrox-3.5.1 +++ b/metadata/md5-cache/games-util/antimicrox-3.5.1 @@ -13,5 +13,5 @@ RDEPEND=dev-qt/qtbase:6[concurrent,gui,network,widgets] media-libs/libsdl2[X,joy RESTRICT=test SLOT=0 SRC_URI=https://github.com/AntiMicroX/antimicrox/archive/3.5.1.tar.gz -> antimicrox-3.5.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e3576eb746594562abb0e51cc2399517 diff --git a/metadata/md5-cache/games-util/game-device-udev-rules-20240523 b/metadata/md5-cache/games-util/game-device-udev-rules-20240523 index ce92f33d6619..01fa314756c2 100644 --- a/metadata/md5-cache/games-util/game-device-udev-rules-20240523 +++ b/metadata/md5-cache/games-util/game-device-udev-rules-20240523 @@ -11,5 +11,5 @@ RDEPEND=acl? ( elogind? ( sys-auth/elogind[acl] ) systemd? ( sys-apps/systemd[ac REQUIRED_USE=acl? ( || ( elogind systemd ) ) SLOT=0 SRC_URI=https://github.com/ValveSoftware/steam-devices/archive/e2971e45063f6b327ccedbf18e168bda6749155c.tar.gz -> steam-devices-e2971e45063f6b327ccedbf18e168bda6749155c.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9bd0bf7ce5ce7c1bd6be11c179f83720 diff --git a/metadata/md5-cache/games-util/input-remapper-2.2.0 b/metadata/md5-cache/games-util/input-remapper-2.2.0 index 86e8bde9b917..d7b737e0c4fa 100644 --- a/metadata/md5-cache/games-util/input-remapper-2.2.0 +++ b/metadata/md5-cache/games-util/input-remapper-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sezanzeb/input-remapper/archive/refs/tags/2.2.0.tar.gz -> input-remapper-2.2.0.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a8a304d8719ad70abce5c3f8dff16943 diff --git a/metadata/md5-cache/games-util/input-remapper-9999 b/metadata/md5-cache/games-util/input-remapper-9999 index aa808be25ea4..1810fb576f6a 100644 --- a/metadata/md5-cache/games-util/input-remapper-9999 +++ b/metadata/md5-cache/games-util/input-remapper-9999 @@ -11,5 +11,5 @@ RDEPEND=x11-libs/gtk+:3 sys-devel/gettext x11-libs/gtksourceview x11-apps/xmodma 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 -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3f37b1aeb3072385751aefcee0f43e17 diff --git a/metadata/md5-cache/games-util/joycond-0.1.0_p20220720-r1 b/metadata/md5-cache/games-util/joycond-0.1.0_p20220720-r1 index bbbcaa151be8..13baaf095293 100644 --- a/metadata/md5-cache/games-util/joycond-0.1.0_p20220720-r1 +++ b/metadata/md5-cache/games-util/joycond-0.1.0_p20220720-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libevdev virtual/udev SLOT=0 SRC_URI=https://github.com/DanielOgorchock/joycond/archive/5b590ecc9bca181d8bc21377e752126bc9180319.tar.gz -> joycond-0.1.0_p20220720.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6c78d1789dce34d792ab2255a17e299a diff --git a/metadata/md5-cache/games-util/joycond-0.1.0_p20250412 b/metadata/md5-cache/games-util/joycond-0.1.0_p20250412 index f60e4a80db0a..39fe17cba756 100644 --- a/metadata/md5-cache/games-util/joycond-0.1.0_p20250412 +++ b/metadata/md5-cache/games-util/joycond-0.1.0_p20250412 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libevdev virtual/udev SLOT=0 SRC_URI=https://github.com/DanielOgorchock/joycond/archive/39d5728d41b70840342ddc116a59125b337fbde2.tar.gz -> joycond-0.1.0_p20250412.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=cdeca4f38ed86bc628cdb89cc4a20800 diff --git a/metadata/md5-cache/games-util/joystick-1.8.1 b/metadata/md5-cache/games-util/joystick-1.8.1 index bdfda3af670d..1d4d1bdb078b 100644 --- a/metadata/md5-cache/games-util/joystick-1.8.1 +++ b/metadata/md5-cache/games-util/joystick-1.8.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=sdl? ( media-libs/libsdl2[video] ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/linuxconsole/files/linuxconsoletools-1.8.1.tar.bz2 -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=49abb331ff741cd514d08b1e737a2ffb diff --git a/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-1.4.1 b/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-1.4.1 index 0cc9c8b93737..c961b19c5234 100644 --- a/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-1.4.1 +++ b/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-1.4.1 @@ -12,5 +12,5 @@ LICENSE=MIT RDEPEND=dev-qt/qtbase:6 dev-libs/libusb dev-libs/mxml media-libs/liblo media-libs/opencv virtual/opengl winebridge? ( virtual/wine ) SLOT=0 SRC_URI=https://github.com/StarTuz/linuxtrack-Qt6-Wayland/archive/v1.4.1.tar.gz -> linuxtrack-qt6-wayland-1.4.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=3998cf479ab863e53e517340635d1201 diff --git a/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-9999 b/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-9999 index 89809d67e7a8..ccc8bf10af16 100644 --- a/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-9999 +++ b/metadata/md5-cache/games-util/linuxtrack-qt6-wayland-9999 @@ -11,5 +11,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=dev-qt/qtbase:6 dev-libs/libusb dev-libs/mxml media-libs/liblo media-libs/opencv virtual/opengl winebridge? ( virtual/wine ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=adb7d2def58051bea34cb5bbede5f3ee diff --git a/metadata/md5-cache/games-util/oversteer-0.8.3 b/metadata/md5-cache/games-util/oversteer-0.8.3 index 2ceb69992de6..6dd2ca7eb8d4 100644 --- a/metadata/md5-cache/games-util/oversteer-0.8.3 +++ b/metadata/md5-cache/games-util/oversteer-0.8.3 @@ -12,5 +12,5 @@ RDEPEND=dev-python/pygobject[python_targets_python3_10(-)?,python_targets_python 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/berarma/oversteer/archive/v0.8.3.tar.gz -> oversteer-0.8.3.tar.gz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e483d69a7b71944f4e1fe7036cc461ce diff --git a/metadata/md5-cache/games-util/oversteer-9999 b/metadata/md5-cache/games-util/oversteer-9999 index 68038ef5b6d6..cd2877e8502c 100644 --- a/metadata/md5-cache/games-util/oversteer-9999 +++ b/metadata/md5-cache/games-util/oversteer-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-python/pygobject[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyudev[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyxdg[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/evdev[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] sys-devel/gettext dev-libs/appstream-glib dev-python/matplotlib[gtk3,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/scipy[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 ) SLOT=0 -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 meson 12065b402c6d78a2aec926ed8dfd964f multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 meson 12065b402c6d78a2aec926ed8dfd964f multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2502422e9d7975eae9e6d1dfc4992c1e diff --git a/metadata/md5-cache/games-util/xboxdrv-0.8.11 b/metadata/md5-cache/games-util/xboxdrv-0.8.11 index 38644f671f08..7b7c53014185 100644 --- a/metadata/md5-cache/games-util/xboxdrv-0.8.11 +++ b/metadata/md5-cache/games-util/xboxdrv-0.8.11 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/dbus-glib dev-libs/glib:2 sys-apps/dbus virtual/libudev:= virtual/libusb:1 x11-libs/libX11 SLOT=0 SRC_URI=https://github.com/xiota/xboxdrv/archive/v0.8.11.tar.gz -> xboxdrv-0.8.11.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4c0008c0afe73511a9c3a178a611513c diff --git a/metadata/md5-cache/games-util/xpadneo-0.10.1 b/metadata/md5-cache/games-util/xpadneo-0.10.1 index 341b2c6b95c8..14d629fbbd2d 100644 --- a/metadata/md5-cache/games-util/xpadneo-0.10.1 +++ b/metadata/md5-cache/games-util/xpadneo-0.10.1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 GPL-3+ RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://github.com/atar-axis/xpadneo/archive/v0.10.1.tar.gz -> xpadneo-0.10.1.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=38f2c9abc119bb69e824ecb0dc7b448c diff --git a/metadata/md5-cache/games-util/xpadneo-0.10.2 b/metadata/md5-cache/games-util/xpadneo-0.10.2 index 4544ce01abcd..aea72d620c2a 100644 --- a/metadata/md5-cache/games-util/xpadneo-0.10.2 +++ b/metadata/md5-cache/games-util/xpadneo-0.10.2 @@ -12,5 +12,5 @@ LICENSE=GPL-2 GPL-3+ RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://github.com/atar-axis/xpadneo/archive/v0.10.2.tar.gz -> xpadneo-0.10.2.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=38f2c9abc119bb69e824ecb0dc7b448c diff --git a/metadata/md5-cache/games-util/xpadneo-0.9.8 b/metadata/md5-cache/games-util/xpadneo-0.9.8 index 074ddcd12ad1..b2cc0e96886e 100644 --- a/metadata/md5-cache/games-util/xpadneo-0.9.8 +++ b/metadata/md5-cache/games-util/xpadneo-0.9.8 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://github.com/atar-axis/xpadneo/archive/v0.9.8.tar.gz -> xpadneo-0.9.8.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c379d28ea51f23d1ce5fecaf5693b7e8 diff --git a/metadata/md5-cache/games-util/xpadneo-9999 b/metadata/md5-cache/games-util/xpadneo-9999 index 6f0fbbfa251d..26150c7c55f7 100644 --- a/metadata/md5-cache/games-util/xpadneo-9999 +++ b/metadata/md5-cache/games-util/xpadneo-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-3+ PROPERTIES=live RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7dc6241f7e372a5a8983a41bee9d4660 diff --git a/metadata/md5-cache/gnome-base/gdm-47.0 b/metadata/md5-cache/gnome-base/gdm-47.0 index d8b88a7f6801..48bc4217f9ad 100644 --- a/metadata/md5-cache/gnome-base/gdm-47.0 +++ b/metadata/md5-cache/gnome-base/gdm-47.0 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( elogind systemd ) || ( wayland X ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gdm/47/gdm-47.0.tar.xz branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bd22ec800a948162f59f35eae8a1a404 diff --git a/metadata/md5-cache/gnome-base/gdm-48.0 b/metadata/md5-cache/gnome-base/gdm-48.0 index 72faaff5c97e..54427a89f4d1 100644 --- a/metadata/md5-cache/gnome-base/gdm-48.0 +++ b/metadata/md5-cache/gnome-base/gdm-48.0 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( elogind systemd ) || ( wayland X ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gdm/48/gdm-48.0.tar.xz branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bd22ec800a948162f59f35eae8a1a404 diff --git a/metadata/md5-cache/gnome-base/gdm-48.0-r1 b/metadata/md5-cache/gnome-base/gdm-48.0-r1 index 17b0add1c9ee..2bb4383a1a44 100644 --- a/metadata/md5-cache/gnome-base/gdm-48.0-r1 +++ b/metadata/md5-cache/gnome-base/gdm-48.0-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( elogind systemd ) || ( wayland X ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gdm/48/gdm-48.0.tar.xz branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=adf158c115e20065c411c082adb78635 diff --git a/metadata/md5-cache/gnome-base/gnome-settings-daemon-47.2 b/metadata/md5-cache/gnome-base/gnome-settings-daemon-47.2 index 1a946086b561..c2d6aade0b92 100644 --- a/metadata/md5-cache/gnome-base/gnome-settings-daemon-47.2 +++ b/metadata/md5-cache/gnome-base/gnome-settings-daemon-47.2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( elogind systemd ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-settings-daemon/47/gnome-settings-daemon-47.2.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0ed7802a13f3be47c915b6e3f541e63a diff --git a/metadata/md5-cache/gnome-base/gnome-settings-daemon-48.1 b/metadata/md5-cache/gnome-base/gnome-settings-daemon-48.1 index a68530083ff9..9f6337be0336 100644 --- a/metadata/md5-cache/gnome-base/gnome-settings-daemon-48.1 +++ b/metadata/md5-cache/gnome-base/gnome-settings-daemon-48.1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( elogind systemd ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-settings-daemon/48/gnome-settings-daemon-48.1.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=59063555a0a62be915a62b8340e600f5 diff --git a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.7 b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.7 index 74b1ae7c3bb7..98095fb06089 100644 --- a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.7 +++ b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.7 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/glib:* gnome-base/gnome-common >=sys-auth/polkit-0.91 >=dev-libs/libgudev-237 systemd? ( !sys-apps/openrc sys-apps/systemd ) virtual/udev SLOT=0 SRC_URI=https://gitlab.freedesktop.org/hadess/iio-sensor-proxy/-/archive/3.7/iio-sensor-proxy-3.7.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e48357f890e2b0ead0b01f95d62648c3 diff --git a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.8 b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.8 index d732805b78a5..da6cd1d566dd 100644 --- a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.8 +++ b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.8 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/glib:* gnome-base/gnome-common >=sys-auth/polkit-0.91 >=dev-libs/libgudev-237 systemd? ( !sys-apps/openrc sys-apps/systemd ) virtual/udev SLOT=0 SRC_URI=https://gitlab.freedesktop.org/hadess/iio-sensor-proxy/-/archive/3.8/iio-sensor-proxy-3.8.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e48357f890e2b0ead0b01f95d62648c3 diff --git a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.9 b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.9 index cf43c167aebd..9cb013817ad2 100644 --- a/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.9 +++ b/metadata/md5-cache/gnome-extra/iio-sensor-proxy-3.9 @@ -12,5 +12,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/glib:* gnome-base/gnome-common >=sys-auth/polkit-0.91 >=dev-libs/libgudev-237 systemd? ( !sys-apps/openrc sys-apps/systemd ) virtual/udev SLOT=0 SRC_URI=https://gitlab.freedesktop.org/hadess/iio-sensor-proxy/-/archive/3.9/iio-sensor-proxy-3.9.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e48357f890e2b0ead0b01f95d62648c3 diff --git a/metadata/md5-cache/gui-apps/xremap-0.15.2 b/metadata/md5-cache/gui-apps/xremap-0.15.2 index 81c5c46b6f1c..4c76f7dcfcea 100644 --- a/metadata/md5-cache/gui-apps/xremap-0.15.2 +++ b/metadata/md5-cache/gui-apps/xremap-0.15.2 @@ -12,5 +12,5 @@ RDEPEND=udev? ( virtual/libudev ) REQUIRED_USE=?? ( cosmic gnome hyprland kde niri socket wlroots x11 ) SLOT=0 SRC_URI=https://github.com/xremap/xremap/archive/v0.15.2/xremap-0.15.2.tar.gz https://github.com/yamader/xremap/releases/download/v0.15.2/xremap-0.15.2-crates.tar.xz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f315919f7f683ba84bddd3ed5fc97b1f diff --git a/metadata/md5-cache/kde-plasma/plasma-meta-6.5.5-r1 b/metadata/md5-cache/kde-plasma/plasma-meta-6.5.5-r1 index b4cb90ae85bd..8a39977bb7b4 100644 --- a/metadata/md5-cache/kde-plasma/plasma-meta-6.5.5-r1 +++ b/metadata/md5-cache/kde-plasma/plasma-meta-6.5.5-r1 @@ -6,8 +6,8 @@ INHERIT=toolchain-funcs IUSE=accessibility bluetooth +browser-integration +crash-handler crypt cups discover +display-manager +elogind +firewall flatpak grub gtk +kwallet +networkmanager oxygen-theme plymouth pulseaudio qt5 rdp +sddm sdk +smart systemd thunderbolt unsupported wacom +wallpapers webengine X +xwayland KEYWORDS=amd64 arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=metapackage -RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/aurorae-6.5.5:6 >=kde-plasma/breeze-6.5.5:6 >=kde-plasma/kactivitymanagerd-6.5.5:6 >=kde-plasma/kde-cli-tools-6.5.5:6 >=kde-plasma/kde-cli-tools-common-6.5.5 >=kde-plasma/kdecoration-6.5.5:6 >=kde-plasma/kdeplasma-addons-6.5.5:6 >=kde-plasma/kdesu-gui-6.5.5[X?] >=kde-plasma/keditfiletype-6.5.5 >=kde-plasma/kglobalacceld-6.5.5:6[X?] >=kde-plasma/kinfocenter-6.5.5:6 >=kde-plasma/kmenuedit-6.5.5:6 >=kde-plasma/knighttime-6.5.5:6 >=kde-plasma/kpipewire-6.5.5:6 >=kde-plasma/kscreen-6.5.5:6 >=kde-plasma/kscreenlocker-6.5.5:6 >=kde-plasma/ksshaskpass-6.5.5:6 >=kde-plasma/ksystemstats-6.5.5:6 >=kde-plasma/kwayland-6.5.5:6 >=kde-plasma/kwin-6.5.5:6[lock] >=kde-plasma/kwrited-6.5.5:6 >=kde-plasma/layer-shell-qt-6.5.5:6 >=kde-plasma/libkscreen-6.5.5:6 >=kde-plasma/libksysguard-6.5.5:6 >=kde-plasma/libplasma-6.5.5:6 >=kde-plasma/milou-6.5.5:6 >=kde-plasma/ocean-sound-theme-6.5.5:6 >=kde-plasma/plasma-activities-6.5.5:6 >=kde-plasma/plasma-activities-stats-6.5.5:6 >=kde-plasma/plasma-desktop-6.5.5:6 >=kde-plasma/plasma-integration-6.5.5:6 >=kde-plasma/plasma-login-sessions-6.5.5:6[X?] >=kde-plasma/plasma-systemmonitor-6.5.5:6 >=kde-plasma/plasma-welcome-6.5.5:6 >=kde-plasma/plasma-workspace-6.5.5:6[X?] >=kde-plasma/plasma5support-6.5.5:6 >=kde-plasma/polkit-kde-agent-6.5.5:* >=kde-plasma/powerdevil-6.5.5:6 >=kde-plasma/qqc2-breeze-style-6.5.5:6 >=kde-plasma/systemsettings-6.5.5:6 >=kde-plasma/xdg-desktop-portal-kde-6.5.5:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.5.5:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.5.5:6 ) crash-handler? ( !systemd? ( >=kde-plasma/drkonqi-legacy-6.3.80_p20250417:6 ) systemd? ( >=kde-plasma/drkonqi-6.5.5:6 ) ) crypt? ( >=kde-plasma/plasma-vault-6.5.5:6 ) cups? ( >=kde-plasma/print-manager-6.5.5:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.5.5:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.5.5:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.5.5:6 ) grub? ( >=kde-plasma/breeze-grub-6.5.5:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.5.5:6 >=kde-plasma/kde-gtk-config-6.5.5:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.5.5:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.5.5:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.5.5:6[X?] >=kde-plasma/oxygen-sounds-6.5.5:6 qt5? ( >=kde-plasma/oxygen-6.5.0:5[X?] ) ) plymouth? ( >=kde-plasma/breeze-plymouth-6.5.5:6 >=kde-plasma/plymouth-kcm-6.5.5:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.5.5:6 ) qt5? ( >=kde-plasma/breeze-6.5.0:5 >=kde-plasma/kwayland-integration-6.5.5:5 >=kde-plasma/plasma-integration-6.5.0:5 ) rdp? ( >=kde-plasma/krdp-6.5.5:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.5.5:6 ) smart? ( >=kde-plasma/plasma-disks-6.5.5:6 ) systemd? ( >=sys-apps/systemd-257[pam] firewall? ( >=kde-plasma/plasma-firewall-6.5.5:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.5.5:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/plasma-desktop-6.5.5:6[input_devices_wacom] ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.5.5:6 ) webengine? ( kde-apps/khelpcenter:6 ) X? ( >=kde-plasma/kgamma-6.5.5:6 >=kde-plasma/kwin-x11-6.5.5:6[lock] wacom? ( >=kde-plasma/wacomtablet-6.5.5:6 ) ) xwayland? ( >=gui-apps/xwaylandvideobridge-0.4.0_p20250215-r1 ) >=kde-plasma/spectacle-6.5.5:6 <kde-plasma/spectacle-15 accessibility? ( app-accessibility/orca ) +RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/aurorae-6.5.5:6 >=kde-plasma/breeze-6.5.5:6 >=kde-plasma/kactivitymanagerd-6.5.5:6 >=kde-plasma/kde-cli-tools-6.5.5:6 >=kde-plasma/kde-cli-tools-common-6.5.5 >=kde-plasma/kdecoration-6.5.5:6 >=kde-plasma/kdeplasma-addons-6.5.5:6 >=kde-plasma/kdesu-gui-6.5.5[X?] >=kde-plasma/keditfiletype-6.5.5 >=kde-plasma/kglobalacceld-6.5.5:6[X?] >=kde-plasma/kinfocenter-6.5.5:6 >=kde-plasma/kmenuedit-6.5.5:6 >=kde-plasma/knighttime-6.5.5:6 >=kde-plasma/kpipewire-6.5.5:6 >=kde-plasma/kscreen-6.5.5:6 >=kde-plasma/kscreenlocker-6.5.5:6 >=kde-plasma/ksshaskpass-6.5.5:6 >=kde-plasma/ksystemstats-6.5.5:6 >=kde-plasma/kwayland-6.5.5:6 >=kde-plasma/kwin-6.5.5:6[lock] >=kde-plasma/kwrited-6.5.5:6 >=kde-plasma/layer-shell-qt-6.5.5:6 >=kde-plasma/libkscreen-6.5.5:6 >=kde-plasma/libksysguard-6.5.5:6 >=kde-plasma/libplasma-6.5.5:6 >=kde-plasma/milou-6.5.5:6 >=kde-plasma/ocean-sound-theme-6.5.5:6 >=kde-plasma/plasma-activities-6.5.5:6 >=kde-plasma/plasma-activities-stats-6.5.5:6 >=kde-plasma/plasma-desktop-6.5.5:6 >=kde-plasma/plasma-integration-6.5.5:6 >=kde-plasma/plasma-login-sessions-6.5.5:6[X?] >=kde-plasma/plasma-systemmonitor-6.5.5:6 >=kde-plasma/plasma-welcome-6.5.5:6 >=kde-plasma/plasma-workspace-6.5.5:6[X?] >=kde-plasma/plasma5support-6.5.5:6 >=kde-plasma/polkit-kde-agent-6.5.5:* >=kde-plasma/powerdevil-6.5.5:6 >=kde-plasma/qqc2-breeze-style-6.5.5:6 >=kde-plasma/systemsettings-6.5.5:6 >=kde-plasma/xdg-desktop-portal-kde-6.5.5:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[elogind?,systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.5.5:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.5.5:6 ) crash-handler? ( !systemd? ( >=kde-plasma/drkonqi-legacy-6.3.80_p20250417:6 ) systemd? ( >=kde-plasma/drkonqi-6.5.5:6 ) ) crypt? ( >=kde-plasma/plasma-vault-6.5.5:6 ) cups? ( >=kde-plasma/print-manager-6.5.5:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.5.5:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.5.5:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.5.5:6 ) grub? ( >=kde-plasma/breeze-grub-6.5.5:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.5.5:6 >=kde-plasma/kde-gtk-config-6.5.5:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.5.5:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.5.5:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.5.5:6[X?] >=kde-plasma/oxygen-sounds-6.5.5:6 qt5? ( >=kde-plasma/oxygen-6.5.0:5[X?] ) ) plymouth? ( >=kde-plasma/breeze-plymouth-6.5.5:6 >=kde-plasma/plymouth-kcm-6.5.5:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.5.5:6 ) qt5? ( >=kde-plasma/breeze-6.5.0:5 >=kde-plasma/kwayland-integration-6.5.5:5 >=kde-plasma/plasma-integration-6.5.0:5 ) rdp? ( >=kde-plasma/krdp-6.5.5:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.5.5:6 ) smart? ( >=kde-plasma/plasma-disks-6.5.5:6 ) systemd? ( >=sys-apps/systemd-257[pam] firewall? ( >=kde-plasma/plasma-firewall-6.5.5:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.5.5:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/plasma-desktop-6.5.5:6[input_devices_wacom] ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.5.5:6 ) webengine? ( kde-apps/khelpcenter:6 ) X? ( >=kde-plasma/kgamma-6.5.5:6 >=kde-plasma/kwin-x11-6.5.5:6[lock] wacom? ( >=kde-plasma/wacomtablet-6.5.5:6 ) ) xwayland? ( >=gui-apps/xwaylandvideobridge-0.4.0_p20250215-r1 ) >=kde-plasma/spectacle-6.5.5:6 <kde-plasma/spectacle-15 accessibility? ( app-accessibility/orca ) REQUIRED_USE=^^ ( elogind systemd ) firewall? ( systemd ) SLOT=6 _eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=078986cdb634303a392575a9af1e3ca2 +_md5_=67d39af5755a5f819078967b61f7be91 diff --git a/metadata/md5-cache/kde-plasma/plasma-meta-6.6.0-r1 b/metadata/md5-cache/kde-plasma/plasma-meta-6.6.0-r1 index 40be595372f0..04962e552d0c 100644 --- a/metadata/md5-cache/kde-plasma/plasma-meta-6.6.0-r1 +++ b/metadata/md5-cache/kde-plasma/plasma-meta-6.6.0-r1 @@ -6,8 +6,8 @@ INHERIT=toolchain-funcs IUSE=accessibility bluetooth +browser-integration +crash-handler cups discover +display-manager +elogind +firewall flatpak grub gtk +kwallet +networkmanager oxygen-theme plymouth pulseaudio rdp +sddm sdk +smart systemd thunderbolt unsupported wacom +wallpapers webengine X KEYWORDS=~loong ~ppc64 ~riscv LICENSE=metapackage -RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/aurorae-6.6.0:6 >=kde-plasma/kactivitymanagerd-6.6.0:6 >=kde-plasma/kde-cli-tools-6.6.0:6 >=kde-plasma/kde-cli-tools-common-6.6.0 >=kde-plasma/kdecoration-6.6.0:6 >=kde-plasma/kdeplasma-addons-6.6.0:6 >=kde-plasma/kdesu-gui-6.6.0[X?] >=kde-plasma/keditfiletype-6.6.0 >=kde-plasma/kglobalacceld-6.6.0:6[X?] >=kde-plasma/kinfocenter-6.6.0:6 >=kde-plasma/kmenuedit-6.6.0:6 >=kde-plasma/knighttime-6.6.0:6 >=kde-plasma/kpipewire-6.6.0:6 >=kde-plasma/kscreen-6.6.0:6 >=kde-plasma/kscreenlocker-6.6.0:6 >=kde-plasma/ksshaskpass-6.6.0:6 >=kde-plasma/ksystemstats-6.6.0:6 >=kde-plasma/kwayland-6.6.0:6 >=kde-plasma/kwin-6.6.0:6[lock] >=kde-plasma/kwrited-6.6.0:6 >=kde-plasma/layer-shell-qt-6.6.0:6 >=kde-plasma/libkscreen-6.6.0:6 >=kde-plasma/libksysguard-6.6.0:6 >=kde-plasma/libplasma-6.6.0:6 >=kde-plasma/milou-6.6.0:6 >=kde-plasma/ocean-sound-theme-6.6.0:6 >=kde-plasma/plasma-activities-6.6.0:6 >=kde-plasma/plasma-activities-stats-6.6.0:6 >=kde-plasma/plasma-desktop-6.6.0:6 >=kde-plasma/plasma-integration-6.6.0:6 >=kde-plasma/plasma-login-sessions-6.6.0:6[X?] >=kde-plasma/plasma-systemmonitor-6.6.0:6 >=kde-plasma/plasma-welcome-6.6.0:6 >=kde-plasma/plasma-workspace-6.6.0:6[X?] >=kde-plasma/plasma5support-6.6.0:6 >=kde-plasma/polkit-kde-agent-6.6.0:* >=kde-plasma/powerdevil-6.6.0:6 >=kde-plasma/qqc2-breeze-style-6.6.0:6 >=kde-plasma/systemsettings-6.6.0:6 >=kde-plasma/xdg-desktop-portal-kde-6.6.0:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.6.0:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.6.0:6 ) crash-handler? ( !systemd? ( >=kde-plasma/drkonqi-legacy-6.3.80_p20250417:6 ) systemd? ( >=kde-plasma/drkonqi-6.6.0:6 ) ) cups? ( >=kde-plasma/print-manager-6.6.0:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.6.0:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.6.0:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.6.0:6 ) grub? ( >=kde-plasma/breeze-grub-6.6.0:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.6.0:6 >=kde-plasma/kde-gtk-config-6.6.0:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.6.0:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.6.0:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.6.0:6[X?] >=kde-plasma/oxygen-sounds-6.6.0:6 ) plymouth? ( >=kde-plasma/breeze-plymouth-6.6.0:6 >=kde-plasma/plymouth-kcm-6.6.0:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.6.0:6 ) rdp? ( >=kde-plasma/krdp-6.6.0:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.6.0:6 ) smart? ( >=kde-plasma/plasma-disks-6.6.0:6 ) systemd? ( >=sys-apps/systemd-257[pam] firewall? ( >=kde-plasma/plasma-firewall-6.6.0:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.6.0:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/plasma-desktop-6.6.0:6[input_devices_wacom] ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.6.0:6 ) webengine? ( kde-apps/khelpcenter:6 ) X? ( >=kde-plasma/kgamma-6.6.0:6 >=kde-plasma/kwin-x11-6.6.0:6[lock] wacom? ( >=kde-plasma/wacomtablet-6.6.0:6 ) ) >=kde-plasma/spectacle-6.6.0:6 <kde-plasma/spectacle-15 accessibility? ( app-accessibility/orca ) +RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/aurorae-6.6.0:6 >=kde-plasma/kactivitymanagerd-6.6.0:6 >=kde-plasma/kde-cli-tools-6.6.0:6 >=kde-plasma/kde-cli-tools-common-6.6.0 >=kde-plasma/kdecoration-6.6.0:6 >=kde-plasma/kdeplasma-addons-6.6.0:6 >=kde-plasma/kdesu-gui-6.6.0[X?] >=kde-plasma/keditfiletype-6.6.0 >=kde-plasma/kglobalacceld-6.6.0:6[X?] >=kde-plasma/kinfocenter-6.6.0:6 >=kde-plasma/kmenuedit-6.6.0:6 >=kde-plasma/knighttime-6.6.0:6 >=kde-plasma/kpipewire-6.6.0:6 >=kde-plasma/kscreen-6.6.0:6 >=kde-plasma/kscreenlocker-6.6.0:6 >=kde-plasma/ksshaskpass-6.6.0:6 >=kde-plasma/ksystemstats-6.6.0:6 >=kde-plasma/kwayland-6.6.0:6 >=kde-plasma/kwin-6.6.0:6[lock] >=kde-plasma/kwrited-6.6.0:6 >=kde-plasma/layer-shell-qt-6.6.0:6 >=kde-plasma/libkscreen-6.6.0:6 >=kde-plasma/libksysguard-6.6.0:6 >=kde-plasma/libplasma-6.6.0:6 >=kde-plasma/milou-6.6.0:6 >=kde-plasma/ocean-sound-theme-6.6.0:6 >=kde-plasma/plasma-activities-6.6.0:6 >=kde-plasma/plasma-activities-stats-6.6.0:6 >=kde-plasma/plasma-desktop-6.6.0:6 >=kde-plasma/plasma-integration-6.6.0:6 >=kde-plasma/plasma-login-sessions-6.6.0:6[X?] >=kde-plasma/plasma-systemmonitor-6.6.0:6 >=kde-plasma/plasma-welcome-6.6.0:6 >=kde-plasma/plasma-workspace-6.6.0:6[X?] >=kde-plasma/plasma5support-6.6.0:6 >=kde-plasma/polkit-kde-agent-6.6.0:* >=kde-plasma/powerdevil-6.6.0:6 >=kde-plasma/qqc2-breeze-style-6.6.0:6 >=kde-plasma/systemsettings-6.6.0:6 >=kde-plasma/xdg-desktop-portal-kde-6.6.0:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[elogind?,systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.6.0:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.6.0:6 ) crash-handler? ( !systemd? ( >=kde-plasma/drkonqi-legacy-6.3.80_p20250417:6 ) systemd? ( >=kde-plasma/drkonqi-6.6.0:6 ) ) cups? ( >=kde-plasma/print-manager-6.6.0:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.6.0:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.6.0:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.6.0:6 ) grub? ( >=kde-plasma/breeze-grub-6.6.0:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.6.0:6 >=kde-plasma/kde-gtk-config-6.6.0:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.6.0:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.6.0:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.6.0:6[X?] >=kde-plasma/oxygen-sounds-6.6.0:6 ) plymouth? ( >=kde-plasma/breeze-plymouth-6.6.0:6 >=kde-plasma/plymouth-kcm-6.6.0:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.6.0:6 ) rdp? ( >=kde-plasma/krdp-6.6.0:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.6.0:6 ) smart? ( >=kde-plasma/plasma-disks-6.6.0:6 ) systemd? ( >=sys-apps/systemd-257[pam] firewall? ( >=kde-plasma/plasma-firewall-6.6.0:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.6.0:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/plasma-desktop-6.6.0:6[input_devices_wacom] ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.6.0:6 ) webengine? ( kde-apps/khelpcenter:6 ) X? ( >=kde-plasma/kgamma-6.6.0:6 >=kde-plasma/kwin-x11-6.6.0:6[lock] wacom? ( >=kde-plasma/wacomtablet-6.6.0:6 ) ) >=kde-plasma/spectacle-6.6.0:6 <kde-plasma/spectacle-15 accessibility? ( app-accessibility/orca ) REQUIRED_USE=^^ ( elogind systemd ) firewall? ( systemd ) SLOT=6 _eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=d1a8bf9d7471cc867de7071e9efa209c +_md5_=015327797f915b0b6a64a2f39cc7b5bd diff --git a/metadata/md5-cache/media-gfx/argyllcms-3.4.1 b/metadata/md5-cache/media-gfx/argyllcms-3.4.1 index df48acd479da..e230d54924c5 100644 --- a/metadata/md5-cache/media-gfx/argyllcms-3.4.1 +++ b/metadata/md5-cache/media-gfx/argyllcms-3.4.1 @@ -11,5 +11,5 @@ LICENSE=AGPL-3 RDEPEND=!libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:0= ) media-libs/libjpeg-turbo:= media-libs/tiff:= sys-libs/zlib x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXxf86vm SLOT=0 SRC_URI=http://www.argyllcms.com/Argyll_V3.4.1_src.zip -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3585720f89e8a234d1fd49f1f8910542 diff --git a/metadata/md5-cache/media-gfx/argyllcms-3.5.0 b/metadata/md5-cache/media-gfx/argyllcms-3.5.0 index a7f0c741abc0..0c576cf7fbb2 100644 --- a/metadata/md5-cache/media-gfx/argyllcms-3.5.0 +++ b/metadata/md5-cache/media-gfx/argyllcms-3.5.0 @@ -11,5 +11,5 @@ LICENSE=AGPL-3 RDEPEND=!libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:0= ) media-libs/libjpeg-turbo:= media-libs/tiff:= sys-libs/zlib x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXxf86vm SLOT=0 SRC_URI=http://www.argyllcms.com/Argyll_V3.5.0_src.zip -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1e185222d2025d0b8390d8524db26e32 diff --git a/metadata/md5-cache/media-gfx/brother-scan4-bin-0.4.11 b/metadata/md5-cache/media-gfx/brother-scan4-bin-0.4.11 index 2fd8e23720ae..c9a08a15e5be 100644 --- a/metadata/md5-cache/media-gfx/brother-scan4-bin-0.4.11 +++ b/metadata/md5-cache/media-gfx/brother-scan4-bin-0.4.11 @@ -11,5 +11,5 @@ RDEPEND=net-libs/libnsl media-gfx/sane-backends[usb?] virtual/libusb:0 avahi? ( RESTRICT=mirror strip SLOT=0 SRC_URI=amd64? ( http://download.brother.com/welcome/dlf105203/brscan4-0.4.11-1.x86_64.rpm ) x86? ( http://download.brother.com/welcome/dlf105202/brscan4-0.4.11-1.i386.rpm ) http://download.brother.com/welcome/dlf006653/brother-udev-rule-type1-1.0.2-0.noarch.rpm -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd estack c61c368a76fdf3a82fdf8dbaebea3804 rpm 716d8645cb3f94e78951eda6c33e0546 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd estack c61c368a76fdf3a82fdf8dbaebea3804 rpm 716d8645cb3f94e78951eda6c33e0546 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6656c3e63d2cafd2584d20fc8de125ff diff --git a/metadata/md5-cache/media-gfx/brscan5-1.5.1.0 b/metadata/md5-cache/media-gfx/brscan5-1.5.1.0 index e8b5f939f033..7c9ee4592488 100644 --- a/metadata/md5-cache/media-gfx/brscan5-1.5.1.0 +++ b/metadata/md5-cache/media-gfx/brscan5-1.5.1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libusb:1 media-gfx/sane-backends net-dns/avahi[dbus] sys-apps/d RESTRICT=bindist mirror strip SLOT=0 SRC_URI=https://download.brother.com/welcome/dlf104033/brscan5-1.5.1-0.amd64.deb -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=918b87bb2363df4179bfb49ede309dd9 diff --git a/metadata/md5-cache/media-gfx/iscan-3.65.0-r2 b/metadata/md5-cache/media-gfx/iscan-3.65.0-r2 index d1c2b2450b0e..f2aba02c40f8 100644 --- a/metadata/md5-cache/media-gfx/iscan-3.65.0-r2 +++ b/metadata/md5-cache/media-gfx/iscan-3.65.0-r2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= media-gfx/sane-backends media-libs/libjpeg-turbo:= medi RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_3.65.0.orig.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c7e6046248e90f2d4654ddd92fa11a89 diff --git a/metadata/md5-cache/media-gfx/iscan-data-1.39.0.1 b/metadata/md5-cache/media-gfx/iscan-data-1.39.0.1 index 122fee6fbff4..4d633248e144 100644 --- a/metadata/md5-cache/media-gfx/iscan-data-1.39.0.1 +++ b/metadata/md5-cache/media-gfx/iscan-data-1.39.0.1 @@ -10,5 +10,5 @@ KEYWORDS=amd64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://support.epson.net/linux/src/scanner/iscan/iscan-data_1.39.0-1.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1c750766be53fa89d352ddaf85642412 diff --git a/metadata/md5-cache/media-gfx/sane-backends-1.2.1-r1 b/metadata/md5-cache/media-gfx/sane-backends-1.2.1-r1 index a42c6cdd83e0..744ea980c06e 100644 --- a/metadata/md5-cache/media-gfx/sane-backends-1.2.1-r1 +++ b/metadata/md5-cache/media-gfx/sane-backends-1.2.1-r1 @@ -12,5 +12,5 @@ RDEPEND=acct-user/saned acct-group/scanner dev-libs/libxml2:= gphoto2? ( >=media REQUIRED_USE=sane_backends_escl? ( zeroconf ) sane_backends_kvs40xx? ( threads ) sane_backends_mustek_usb2? ( threads ) SLOT=0 SRC_URI=https://gitlab.com/sane-project/backends/uploads/110fc43336d0fb5e514f1fdc7360dd87/sane-backends-1.2.1.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=54c361b93adeef63faecd573cf6b496d diff --git a/metadata/md5-cache/media-gfx/sane-backends-1.3.1-r2 b/metadata/md5-cache/media-gfx/sane-backends-1.3.1-r2 index 0726d734fc94..973a6f963947 100644 --- a/metadata/md5-cache/media-gfx/sane-backends-1.3.1-r2 +++ b/metadata/md5-cache/media-gfx/sane-backends-1.3.1-r2 @@ -12,5 +12,5 @@ RDEPEND=acct-user/saned acct-group/scanner dev-libs/libxml2:= gphoto2? ( >=media REQUIRED_USE=sane_backends_escl? ( zeroconf ) sane_backends_kvs40xx? ( threads ) sane_backends_mustek_usb2? ( threads ) SLOT=0 SRC_URI=https://gitlab.com/sane-project/backends/-/archive/1.3.1/backends-1.3.1.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7f5099c0dc7b54dc4fb6cf7c20531556 diff --git a/metadata/md5-cache/media-libs/lcms-2.19 b/metadata/md5-cache/media-libs/lcms-2.19 new file mode 100644 index 000000000000..0f8762975f87 --- /dev/null +++ b/metadata/md5-cache/media-libs/lcms-2.19 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array +DEFINED_PHASES=compile configure install test +DEPEND=jpeg? ( media-libs/libjpeg-turbo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( >=media-libs/tiff-4.0.3-r6:=[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=A lightweight, speed optimized color management engine +EAPI=8 +HOMEPAGE=https://www.littlecms.com/ +INHERIT=meson-multilib +IUSE=doc jpeg static-libs test tiff abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris +LICENSE=GPL-3 MIT +RDEPEND=jpeg? ( media-libs/libjpeg-turbo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( >=media-libs/tiff-4.0.3-r6:=[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=2 +SRC_URI=https://github.com/mm2/Little-CMS/releases/download/lcms2.19/lcms2-2.19.tar.gz +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=173b242be620e705418b4bd4d2f1393d diff --git a/metadata/md5-cache/media-libs/libffado-2.4.9-r1 b/metadata/md5-cache/media-libs/libffado-2.4.9-r1 index 8730d6b27687..5dd74ff819c1 100644 --- a/metadata/md5-cache/media-libs/libffado-2.4.9-r1 +++ b/metadata/md5-cache/media-libs/libffado-2.4.9-r1 @@ -13,5 +13,5 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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://ffado.org/files/libffado-2.4.9.tgz -_eclasses_=multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2c63a6135543277f33f6ce061425e51e diff --git a/metadata/md5-cache/media-libs/libgphoto2-2.5.32 b/metadata/md5-cache/media-libs/libgphoto2-2.5.32 index 58079b929980..601f2a145cd6 100644 --- a/metadata/md5-cache/media-libs/libgphoto2-2.5.32 +++ b/metadata/md5-cache/media-libs/libgphoto2-2.5.32 @@ -12,5 +12,5 @@ RDEPEND=acct-group/plugdev >=dev-libs/libxml2-2.9.1-r4:2=[abi_x86_32(-)?,abi_x86 REQUIRED_USE=|| ( cameras_adc65 cameras_agfa_cl20 cameras_aox cameras_ax203 cameras_barbie cameras_canon cameras_casio_qv cameras_clicksmart310 cameras_digigr8 cameras_digita cameras_dimagev cameras_dimera3500 cameras_directory cameras_enigma13 cameras_fuji cameras_gsmart300 cameras_hp215 cameras_iclick cameras_jamcam cameras_jd11 cameras_jl2005a cameras_jl2005c cameras_kodak_dc120 cameras_kodak_dc210 cameras_kodak_dc240 cameras_kodak_dc3200 cameras_kodak_ez200 cameras_konica cameras_konica_qm150 cameras_largan cameras_lg_gsm cameras_mars cameras_mustek cameras_panasonic_coolshot cameras_panasonic_l859 cameras_panasonic_dc1000 cameras_panasonic_dc1580 cameras_pccam300 cameras_pccam600 cameras_pentax cameras_polaroid_pdc320 cameras_polaroid_pdc640 cameras_polaroid_pdc700 cameras_ptp2 cameras_ricoh cameras_ricoh_g3 cameras_samsung cameras_sierra cameras_sipix_blink2 cameras_sipix_web2 cameras_smal cameras_sonix cameras_sony_dscf1 cameras_sony_dscf55 cameras_soundvision cameras_spca50x cameras_sq905 cameras_st2205 cameras_stv0674 cameras_stv0680 cameras_sx330z cameras_toshiba_pdrm11 cameras_topfield cameras_tp6801 ) SLOT=0/6 SRC_URI=https://downloads.sourceforge.net/gphoto/libgphoto2-2.5.32.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3236c3304e5f180df29a31a5835a782c diff --git a/metadata/md5-cache/media-libs/libgphoto2-2.5.33 b/metadata/md5-cache/media-libs/libgphoto2-2.5.33 index 7e6d58401594..f7d41d5d53f9 100644 --- a/metadata/md5-cache/media-libs/libgphoto2-2.5.33 +++ b/metadata/md5-cache/media-libs/libgphoto2-2.5.33 @@ -12,5 +12,5 @@ RDEPEND=acct-group/plugdev >=dev-libs/libxml2-2.9.1-r4:2=[abi_x86_32(-)?,abi_x86 REQUIRED_USE=|| ( cameras_adc65 cameras_agfa_cl20 cameras_aox cameras_ax203 cameras_barbie cameras_canon cameras_casio_qv cameras_clicksmart310 cameras_digigr8 cameras_digita cameras_dimagev cameras_dimera3500 cameras_directory cameras_enigma13 cameras_fuji cameras_gsmart300 cameras_hp215 cameras_iclick cameras_jamcam cameras_jd11 cameras_jl2005a cameras_jl2005c cameras_kodak_dc120 cameras_kodak_dc210 cameras_kodak_dc240 cameras_kodak_dc3200 cameras_kodak_ez200 cameras_konica cameras_konica_qm150 cameras_largan cameras_lg_gsm cameras_mars cameras_mustek cameras_panasonic_coolshot cameras_panasonic_l859 cameras_panasonic_dc1000 cameras_panasonic_dc1580 cameras_pccam300 cameras_pccam600 cameras_pentax cameras_polaroid_pdc320 cameras_polaroid_pdc640 cameras_polaroid_pdc700 cameras_ptp2 cameras_ricoh cameras_ricoh_g3 cameras_samsung cameras_sierra cameras_sipix_blink2 cameras_sipix_web2 cameras_smal cameras_sonix cameras_sony_dscf1 cameras_sony_dscf55 cameras_soundvision cameras_spca50x cameras_sq905 cameras_st2205 cameras_stv0674 cameras_stv0680 cameras_sx330z cameras_toshiba_pdrm11 cameras_topfield cameras_tp6801 ) SLOT=0/6 SRC_URI=https://downloads.sourceforge.net/gphoto/libgphoto2-2.5.33.tar.xz verify-sig? ( https://downloads.sourceforge.net/gphoto/libgphoto2-2.5.33.tar.xz.asc ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=06d60912550245ce8d4316cc3b3ebbda diff --git a/metadata/md5-cache/media-libs/libgpod-0.8.3-r9 b/metadata/md5-cache/media-libs/libgpod-0.8.3-r9 index 81fb48e6595a..c5ae223d73d0 100644 --- a/metadata/md5-cache/media-libs/libgpod-0.8.3-r9 +++ b/metadata/md5-cache/media-libs/libgpod-0.8.3-r9 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=>=app-pda/libplist-2.3:= >=dev-db/sqlite-3:3 >=dev-libs/glib-2.16:2 dev-libs/libxml2:2= sys-apps/sg3_utils:0= gtk? ( x11-libs/gdk-pixbuf:2 ) ios? ( app-pda/libimobiledevice:= ) udev? ( virtual/udev ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/gtkpod/libgpod-0.8.3.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4ec725555288b2c06828895416d59b5c diff --git a/metadata/md5-cache/media-libs/libmtp-1.1.22 b/metadata/md5-cache/media-libs/libmtp-1.1.22 index 255421c9024e..73a8496c9b09 100644 --- a/metadata/md5-cache/media-libs/libmtp-1.1.22 +++ b/metadata/md5-cache/media-libs/libmtp-1.1.22 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=acct-group/plugdev virtual/libiconv virtual/libusb:1 crypt? ( dev-libs/libgcrypt:0= ) SLOT=0/9 SRC_URI=https://downloads.sourceforge.net/libmtp/libmtp-1.1.22.tar.gz -_eclasses_=libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=700b2656cc7214fd9ecef8c82e7e3044 diff --git a/metadata/md5-cache/media-libs/libmtp-9999 b/metadata/md5-cache/media-libs/libmtp-9999 index 8cefd6387859..fb7b1bfd5e6b 100644 --- a/metadata/md5-cache/media-libs/libmtp-9999 +++ b/metadata/md5-cache/media-libs/libmtp-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 PROPERTIES=live RDEPEND=acct-group/plugdev virtual/libiconv virtual/libusb:1 crypt? ( dev-libs/libgcrypt:0= ) SLOT=0/9 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a7de1bbc3f87a7592999b303a7ac4f7c diff --git a/metadata/md5-cache/media-libs/libnjb-2.2.7-r2 b/metadata/md5-cache/media-libs/libnjb-2.2.7-r2 index a88c2a8d2120..b82ab05ebf8a 100644 --- a/metadata/md5-cache/media-libs/libnjb-2.2.7-r2 +++ b/metadata/md5-cache/media-libs/libnjb-2.2.7-r2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:0 SLOT=0 SRC_URI=https://downloads.sourceforge.net/libnjb/libnjb-2.2.7.tar.gz -_eclasses_=libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b6a2b2675e68a1fcc37c9c9e60e27eeb diff --git a/metadata/md5-cache/media-libs/libpulse-17.0 b/metadata/md5-cache/media-libs/libpulse-17.0 index 38bbc86729f1..f20a71992634 100644 --- a/metadata/md5-cache/media-libs/libpulse-17.0 +++ b/metadata/md5-cache/media-libs/libpulse-17.0 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libatomic_ops >=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://freedesktop.org/software/pulseaudio/releases/pulseaudio-17.0.tar.xz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e14a5fbac27316e3e98eccf0190a6494 diff --git a/metadata/md5-cache/media-libs/libv4l-1.32.0 b/metadata/md5-cache/media-libs/libv4l-1.32.0 index df1ec2aabbd7..90a373d3412b 100644 --- a/metadata/md5-cache/media-libs/libv4l-1.32.0 +++ b/metadata/md5-cache/media-libs/libv4l-1.32.0 @@ -13,5 +13,5 @@ RDEPEND=!<media-tv/v4l-utils-1.26 dvb? ( virtual/libudev[abi_x86_32(-)?,abi_x86_ REQUIRED_USE=bpf? ( utils ) qt6? ( utils ) tracer? ( utils ) SLOT=0/0 SRC_URI=https://linuxtv.org/downloads/v4l-utils/v4l-utils-1.32.0.tar.xz -_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=7dbaeed2b2c901e43a6c76d7ae1016c9 diff --git a/metadata/md5-cache/media-libs/mesa-26.0.5-r1 b/metadata/md5-cache/media-libs/mesa-26.0.5-r1 new file mode 100644 index 000000000000..0da2efd641cc --- /dev/null +++ b/metadata/md5-cache/media-libs/mesa-26.0.5-r1 @@ -0,0 +1,17 @@ +BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) opencl? ( >=dev-util/bindgen-0.71.1 || ( >=dev-lang/rust-bin-1.82.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(-)?] >=dev-lang/rust-1.82.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(-)?] ) ) >=dev-build/meson-1.7.0 app-alternatives/yacc app-alternatives/lex virtual/pkgconfig || ( ( dev-lang/python:3.14 >=dev-python/mako-0.8.0[python_targets_python3_14(-)] dev-python/packaging[python_targets_python3_14(-)] dev-python/pyyaml[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 >=dev-python/mako-0.8.0[python_targets_python3_13(-)] dev-python/packaging[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/mako-0.8.0[python_targets_python3_12(-)] dev-python/packaging[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/mako-0.8.0[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/mako-0.8.0[python_targets_python3_10(-)] dev-python/packaging[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] ) ) video_cards_asahi? ( ~dev-util/mesa_clc-26.0.5[video_cards_asahi?,video_cards_panfrost?] llvm-core/libclc[spirv(-)] ) video_cards_intel? ( ~dev-util/mesa_clc-26.0.5[video_cards_asahi?,video_cards_panfrost?] llvm-core/libclc[spirv(-)] ) video_cards_panfrost? ( ~dev-util/mesa_clc-26.0.5[video_cards_asahi?,video_cards_panfrost?] llvm-core/libclc[spirv(-)] ) vulkan? ( dev-util/glslang video_cards_nvk? ( >=dev-util/bindgen-0.71.1 >=dev-util/cbindgen-0.26.0 || ( >=dev-lang/rust-bin-1.82.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(-)?] >=dev-lang/rust-1.82.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(-)?] ) ~dev-util/mesa_clc-26.0.5[video_cards_asahi?,video_cards_panfrost?] llvm-core/libclc[spirv(-)] ) ) wayland? ( dev-util/wayland-scanner ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array +DEFINED_PHASES=compile configure install prepare pretend setup test unpack +DEPEND=>=x11-libs/libdrm-2.4.121[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/expat-2.1.0-r3[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-util/spirv-tools-1.3.231.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/libglvnd-1.3.2[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( llvm_slot_18? ( llvm-core/llvm:18[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:18 llvm-core/clang:18[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-18*[spirv(-)] ) ) llvm_slot_19? ( llvm-core/llvm:19[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:19 llvm-core/clang:19[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-19*[spirv(-)] ) ) llvm_slot_20? ( llvm-core/llvm:20[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:20 llvm-core/clang:20[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-20*[spirv(-)] ) ) llvm_slot_21? ( llvm-core/llvm:21[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:21 llvm-core/clang:21[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-21*[spirv(-)] ) ) llvm_slot_22? ( llvm-core/llvm:22[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:22 llvm-core/clang:22[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-22*[spirv(-)] ) ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3 llvm-core/libclc[spirv(-)] virtual/libelf:0= ) vaapi? ( >=media-libs/libva-1.7.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(-)?] ) video_cards_i915? ( >=x11-libs/libdrm-2.4.121[video_cards_intel] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.121[video_cards_amdgpu] virtual/libelf: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(-)?] ) video_cards_zink? ( media-libs/vulkan-loader:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/libdisplay-info:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev:= ) wayland? ( >=dev-libs/wayland-1.18.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(-)?] ) X? ( >=x11-libs/libX11-1.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.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(-)?] >=x11-libs/libxcb-1.17:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( app-arch/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(-)?] ) sysprof? ( >=dev-util/sysprof-capture-49.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(-)?] ) video_cards_d3d12? ( >=dev-util/directx-headers-1.618.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) valgrind? ( dev-debug/valgrind ) wayland? ( >=dev-libs/wayland-protocols-1.41 ) X? ( x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-base/xorg-proto ) +DESCRIPTION=OpenGL-like graphic library for Linux +EAPI=8 +HOMEPAGE=https://www.mesa3d.org/ https://mesa.freedesktop.org/ +INHERIT=flag-o-matic llvm-r2 meson-multilib python-any-r1 linux-info cargo +IUSE=video_cards_asahi video_cards_d3d12 video_cards_freedreno video_cards_i915 video_cards_imagination video_cards_intel video_cards_lavapipe video_cards_lima video_cards_nouveau video_cards_nvk video_cards_panfrost video_cards_r300 video_cards_r600 video_cards_radeon video_cards_radeonsi video_cards_v3d video_cards_vc4 video_cards_virgl video_cards_vivante video_cards_vmware video_cards_zink cpu_flags_x86_sse2 debug +llvm lm-sensors opencl +opengl +proprietary-codecs sysprof test unwind vaapi valgrind vulkan wayland +X +zstd +llvm_slot_21 llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_22 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 debug +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris +LICENSE=MIT SGI-B-2.0 +RDEPEND=>=x11-libs/libdrm-2.4.121[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/expat-2.1.0-r3[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-util/spirv-tools-1.3.231.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/libglvnd-1.3.2[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( llvm_slot_18? ( llvm-core/llvm:18[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:18 llvm-core/clang:18[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-18*[spirv(-)] ) ) llvm_slot_19? ( llvm-core/llvm:19[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:19 llvm-core/clang:19[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-19*[spirv(-)] ) ) llvm_slot_20? ( llvm-core/llvm:20[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:20 llvm-core/clang:20[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-20*[spirv(-)] ) ) llvm_slot_21? ( llvm-core/llvm:21[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:21 llvm-core/clang:21[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-21*[spirv(-)] ) ) llvm_slot_22? ( llvm-core/llvm:22[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] opencl? ( dev-util/spirv-llvm-translator:22 llvm-core/clang:22[llvm_targets_AMDGPU(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] =llvm-core/libclc-22*[spirv(-)] ) ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3 llvm-core/libclc[spirv(-)] virtual/libelf:0= ) vaapi? ( >=media-libs/libva-1.7.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(-)?] ) video_cards_i915? ( >=x11-libs/libdrm-2.4.121[video_cards_intel] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.121[video_cards_amdgpu] virtual/libelf: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(-)?] ) video_cards_zink? ( media-libs/vulkan-loader:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/libdisplay-info:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev:= ) wayland? ( >=dev-libs/wayland-1.18.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(-)?] ) X? ( >=x11-libs/libX11-1.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.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(-)?] >=x11-libs/libxcb-1.17:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( app-arch/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(-)?] ) +REQUIRED_USE=llvm? ( ^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 llvm_slot_22 ) ) video_cards_i915? ( llvm ) video_cards_lavapipe? ( llvm vulkan ) video_cards_radeon? ( x86? ( llvm ) amd64? ( llvm ) ) video_cards_r300? ( x86? ( llvm ) amd64? ( llvm ) ) video_cards_zink? ( vulkan opengl ) video_cards_nvk? ( vulkan video_cards_nouveau ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://archive.mesa3d.org/mesa-26.0.5.tar.xz https://crates.io/api/v1/crates/paste/1.0.14/download -> paste-1.0.14.crate https://crates.io/api/v1/crates/proc-macro2/1.0.86/download -> proc-macro2-1.0.86.crate https://crates.io/api/v1/crates/quote/1.0.35/download -> quote-1.0.35.crate https://crates.io/api/v1/crates/rustc-hash/2.1.1/download -> rustc-hash-2.1.1.crate https://crates.io/api/v1/crates/syn/2.0.87/download -> syn-2.0.87.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 llvm-r2 8bc46809768366b4239eab39335419bc llvm-utils e7edb4086e31c8537574b263d899f826 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=8a3b1aac32ce9a312092d47addf37c8f diff --git a/metadata/md5-cache/media-libs/rtmidi-6.0.0 b/metadata/md5-cache/media-libs/rtmidi-6.0.0 index fdcac7ea4cf0..6adeb83a694f 100644 --- a/metadata/md5-cache/media-libs/rtmidi-6.0.0 +++ b/metadata/md5-cache/media-libs/rtmidi-6.0.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) DESCRIPTION=A set of C++ classes that provide a common API for realtime MIDI input/output EAPI=8 -HOMEPAGE=https://www.music.mcgill.ca/~gary/rtmidi +HOMEPAGE=https://caml.music.mcgill.ca/~gary/rtmidi/ INHERIT=cmake IUSE=+alsa jack test KEYWORDS=amd64 ~arm64 x86 @@ -11,6 +11,6 @@ LICENSE=RtMidi RDEPEND=alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-6.0.0.tar.gz +SRC_URI=https://caml.music.mcgill.ca/~gary/rtmidi/release/rtmidi-6.0.0.tar.gz _eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=e548284887312ab5a24cf5f246dbdc80 +_md5_=1c80b928c322361cb4a40563968c9550 diff --git a/metadata/md5-cache/media-libs/svgalib-1.9.25-r8 b/metadata/md5-cache/media-libs/svgalib-1.9.25-r8 index 5a4d7cb6239f..a1f3266abd7a 100644 --- a/metadata/md5-cache/media-libs/svgalib-1.9.25-r8 +++ b/metadata/md5-cache/media-libs/svgalib-1.9.25-r8 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) SLOT=0 SRC_URI=http://www.arava.co.il/matan/svgalib/svgalib-1.9.25.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod 000f3723e8e062061ee523106e69f84a multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod 000f3723e8e062061ee523106e69f84a multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=0d328e889f88ea715024f680e5c3cc30 diff --git a/metadata/md5-cache/media-libs/vitamtp-2.5.9_pre20160829-r1 b/metadata/md5-cache/media-libs/vitamtp-2.5.9_pre20160829-r1 index 409fd40f90f7..4d36686cc1d8 100644 --- a/metadata/md5-cache/media-libs/vitamtp-2.5.9_pre20160829-r1 +++ b/metadata/md5-cache/media-libs/vitamtp-2.5.9_pre20160829-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=virtual/libusb:1 dev-libs/libxml2:= SLOT=0 SRC_URI=https://github.com/codestation/vitamtp/archive/7ab537a4f45e34984cbeb9cf1b1af543a75a3dc0.tar.gz -> vitamtp-2.5.9_pre20160829.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vcs-snapshot 05efecc60246abc94da28ed8adf74c4d +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vcs-snapshot 05efecc60246abc94da28ed8adf74c4d _md5_=787c1264cb68dc40ce1319e8bab00c68 diff --git a/metadata/md5-cache/media-libs/vitamtp-9999 b/metadata/md5-cache/media-libs/vitamtp-9999 index da7bf30debdc..48ecc83b39a0 100644 --- a/metadata/md5-cache/media-libs/vitamtp-9999 +++ b/metadata/md5-cache/media-libs/vitamtp-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-3 PROPERTIES=live RDEPEND=virtual/libusb:1 dev-libs/libxml2:2= SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3dabdd115225d735f0091c47d9fef7d0 diff --git a/metadata/md5-cache/media-plugins/vdr-imonlcd-1.0.3-r1 b/metadata/md5-cache/media-plugins/vdr-imonlcd-1.0.3-r1 index db3982eb0fd9..cdf2e06a1a29 100644 --- a/metadata/md5-cache/media-plugins/vdr-imonlcd-1.0.3-r1 +++ b/metadata/md5-cache/media-plugins/vdr-imonlcd-1.0.3-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=media-libs/freetype virtual/udev media-tv/gentoo-vdr-scripts app-eselect/eselect-vdr SLOT=0 SRC_URI=https://github.com/vdr-projects/vdr-plugin-imonlcd/archive/refs/tags/1.0.3.tar.gz -> vdr-imonlcd-1.0.3.tar.gz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 vdr-plugin-2 82b5825b9191fe26411649b6e757c905 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 vdr-plugin-2 82b5825b9191fe26411649b6e757c905 _md5_=1246a2c499c31928b9176619a0b78695 diff --git a/metadata/md5-cache/media-radio/direwolf-1.7-r2 b/metadata/md5-cache/media-radio/direwolf-1.7-r2 index b91dcc8b678d..ecf95831babf 100644 --- a/metadata/md5-cache/media-radio/direwolf-1.7-r2 +++ b/metadata/md5-cache/media-radio/direwolf-1.7-r2 @@ -12,5 +12,5 @@ RDEPEND=net-dns/avahi media-libs/alsa-lib gps? ( sci-geosciences/gpsd:= ) hamlib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wb2osz/direwolf/archive/1.7.tar.gz -> direwolf-1.7.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1401ae88d3e59e9f47ff71a272cf3390 diff --git a/metadata/md5-cache/media-radio/direwolf-1.8-r1 b/metadata/md5-cache/media-radio/direwolf-1.8-r1 index 2b6c6b7af228..e1e64e3cf986 100644 --- a/metadata/md5-cache/media-radio/direwolf-1.8-r1 +++ b/metadata/md5-cache/media-radio/direwolf-1.8-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libgpiod:= net-dns/avahi media-libs/alsa-lib gps? ( sci-geoscie RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wb2osz/direwolf/archive/1.8.tar.gz -> direwolf-1.8.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4703dceb0dd69ea9045df29576ccbc49 diff --git a/metadata/md5-cache/media-radio/direwolf-1.8.1-r1 b/metadata/md5-cache/media-radio/direwolf-1.8.1-r1 index 6f2b4643df39..377c34b8bf53 100644 --- a/metadata/md5-cache/media-radio/direwolf-1.8.1-r1 +++ b/metadata/md5-cache/media-radio/direwolf-1.8.1-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libgpiod:= net-dns/avahi media-libs/alsa-lib gps? ( sci-geoscie RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/wb2osz/direwolf/archive/1.8.1.tar.gz -> direwolf-1.8.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4703dceb0dd69ea9045df29576ccbc49 diff --git a/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0-r1 b/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0-r1 deleted file mode 100644 index 57e8ff4c4e80..000000000000 --- a/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-qt/qttools[linguist] app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=!media-radio/wsjtx dev-libs/boost:=[nls,python] dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] dev-qt/qtmultimedia:6 dev-qt/qtserialport:6 dev-qt/qtwebsockets:6 virtual/libusb:1 >=media-libs/hamlib-4.0:= sci-libs/fftw:3.0=[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) -DESCRIPTION=Weak signal ham radio communication with improvements -EAPI=8 -HOMEPAGE=https://wsjt-x-improved.sourceforge.io/ -INHERIT=cmake edos2unix flag-o-matic -IUSE=doc -KEYWORDS=amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=!media-radio/wsjtx dev-libs/boost:=[nls,python] dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] dev-qt/qtmultimedia:6 dev-qt/qtserialport:6 dev-qt/qtwebsockets:6 virtual/libusb:1 >=media-libs/hamlib-4.0:= sci-libs/fftw:3.0=[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) -SLOT=0 -SRC_URI=https://downloads.sourceforge.net/wsjt-x-improved/wsjtx-3.0.0_improved_PLUS_250924_qt6.tgz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 edos2unix 33e347e171066657f91f8b0c72ec8773 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f23d5835faeb7385704349613523e088 diff --git a/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0_p20251212 b/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0_p20251212 deleted file mode 100644 index 467f76c4e8d0..000000000000 --- a/metadata/md5-cache/media-radio/wsjtx_improved-3.0.0_p20251212 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-qt/qttools[linguist] app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=!media-radio/wsjtx dev-libs/boost:=[nls,python] dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] dev-qt/qtmultimedia:6 dev-qt/qtserialport:6 dev-qt/qtwebsockets:6 virtual/libusb:1 >=media-libs/hamlib-4.0:= sci-libs/fftw:3.0=[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) -DESCRIPTION=Weak signal ham radio communication with improvements -EAPI=8 -HOMEPAGE=https://wsjt-x-improved.sourceforge.io/ -INHERIT=cmake edos2unix flag-o-matic -IUSE=doc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=!media-radio/wsjtx dev-libs/boost:=[nls,python] dev-qt/qtbase:6[concurrent,gui,network,sql,sqlite,widgets] dev-qt/qtmultimedia:6 dev-qt/qtserialport:6 dev-qt/qtwebsockets:6 virtual/libusb:1 >=media-libs/hamlib-4.0:= sci-libs/fftw:3.0=[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) -SLOT=0 -SRC_URI=https://downloads.sourceforge.net/wsjt-x-improved/wsjtx-3.0.0_improved_PLUS_251212_qt6.tgz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 edos2unix 33e347e171066657f91f8b0c72ec8773 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=3b02de5b4ff72369904da813df76fae6 diff --git a/metadata/md5-cache/media-sound/alsa-utils-1.2.13-r2 b/metadata/md5-cache/media-sound/alsa-utils-1.2.13-r2 index 6b1e80c0b30d..d1fe757a64e7 100644 --- a/metadata/md5-cache/media-sound/alsa-utils-1.2.13-r2 +++ b/metadata/md5-cache/media-sound/alsa-utils-1.2.13-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/alsa-lib-1.2.13 libsamplerate? ( media-libs/libsamplerate ) ieee1394? ( media-libs/libffado ) ncurses? ( >=sys-libs/ncurses-5.7-r7:= ) bat? ( sci-libs/fftw:= ) selinux? ( sec-policy/selinux-alsa ) SLOT=0.9 SRC_URI=https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.13.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b537bdc98670b4eaa5bce5b7607470c5 diff --git a/metadata/md5-cache/media-sound/alsa-utils-1.2.14 b/metadata/md5-cache/media-sound/alsa-utils-1.2.14 index b706eb92693f..35442f0e91dd 100644 --- a/metadata/md5-cache/media-sound/alsa-utils-1.2.14 +++ b/metadata/md5-cache/media-sound/alsa-utils-1.2.14 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/alsa-lib-1.2.14 libsamplerate? ( media-libs/libsamplerate ) ieee1394? ( media-libs/libffado ) ncurses? ( >=sys-libs/ncurses-5.7-r7:= ) bat? ( sci-libs/fftw:= ) selinux? ( sec-policy/selinux-alsa ) SLOT=0.9 SRC_URI=https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.14.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a81dcbea34fdb7f59f1c30c71413f093 diff --git a/metadata/md5-cache/media-sound/alsa-utils-1.2.15.2 b/metadata/md5-cache/media-sound/alsa-utils-1.2.15.2 index 2524ac79cd0e..9374bdc32d98 100644 --- a/metadata/md5-cache/media-sound/alsa-utils-1.2.15.2 +++ b/metadata/md5-cache/media-sound/alsa-utils-1.2.15.2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/alsa-lib-1.2.15.2 libsamplerate? ( media-libs/libsamplerate ) ieee1394? ( media-libs/libffado ) ncurses? ( >=sys-libs/ncurses-5.7-r7:= ) bat? ( sci-libs/fftw:= ) selinux? ( sec-policy/selinux-alsa ) SLOT=0.9 SRC_URI=https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.15.2.tar.bz2 verify-sig? ( https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.15.2.tar.bz2.sig ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=0975069a16e844ae2f0eaf64e6c08b3f diff --git a/metadata/md5-cache/media-sound/goxlr-utility-1.2.3 b/metadata/md5-cache/media-sound/goxlr-utility-1.2.3 index 80dde19740dd..830cd917a6fe 100644 --- a/metadata/md5-cache/media-sound/goxlr-utility-1.2.3 +++ b/metadata/md5-cache/media-sound/goxlr-utility-1.2.3 @@ -11,5 +11,5 @@ LICENSE=MIT Music-Tribe 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BS RDEPEND=media-libs/libpulse dev-util/pkgconf sys-apps/dbus tts? ( app-accessibility/speech-dispatcher llvm-core/clang ) SLOT=0 SRC_URI=https://github.com/GoXLR-on-Linux/goxlr-utility/archive/refs/tags/v1.2.3.tar.gz -> goxlr-utility-1.2.3.tar.gz https://crates.io/api/v1/crates/ab_glyph/0.2.32/download -> ab_glyph-0.2.32.crate https://crates.io/api/v1/crates/ab_glyph_rasterizer/0.1.10/download -> ab_glyph_rasterizer-0.1.10.crate 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-cors/0.7.1/download -> actix-cors-0.7.1.crate https://crates.io/api/v1/crates/actix-http/3.11.2/download -> actix-http-3.11.2.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-multipart-derive/0.7.0/download -> actix-multipart-derive-0.7.0.crate https://crates.io/api/v1/crates/actix-multipart/0.7.2/download -> actix-multipart-0.7.2.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.11.0/download -> actix-rt-2.11.0.crate https://crates.io/api/v1/crates/actix-server/2.6.0/download -> actix-server-2.6.0.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.11.0/download -> actix-web-4.11.0.crate https://crates.io/api/v1/crates/actix-ws/0.3.0/download -> actix-ws-0.3.0.crate https://crates.io/api/v1/crates/addr2line/0.25.1/download -> addr2line-0.25.1.crate https://crates.io/api/v1/crates/adler2/2.0.1/download -> adler2-2.0.1.crate https://crates.io/api/v1/crates/ahash/0.7.8/download -> ahash-0.7.8.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/aligned-vec/0.6.4/download -> aligned-vec-0.6.4.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/alsa-sys/0.3.1/download -> alsa-sys-0.3.1.crate https://crates.io/api/v1/crates/alsa/0.9.1/download -> alsa-0.9.1.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/anstream/0.6.21/download -> anstream-0.6.21.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.7/download -> anstyle-parse-0.2.7.crate https://crates.io/api/v1/crates/anstyle-query/1.1.4/download -> anstyle-query-1.1.4.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.10/download -> anstyle-wincon-3.0.10.crate https://crates.io/api/v1/crates/anstyle/1.0.13/download -> anstyle-1.0.13.crate https://crates.io/api/v1/crates/anyhow/1.0.100/download -> anyhow-1.0.100.crate https://crates.io/api/v1/crates/approx/0.5.1/download -> approx-0.5.1.crate https://crates.io/api/v1/crates/arbitrary/1.4.2/download -> arbitrary-1.4.2.crate https://crates.io/api/v1/crates/arg_enum_proc_macro/0.3.4/download -> arg_enum_proc_macro-0.3.4.crate https://crates.io/api/v1/crates/arrayvec/0.7.6/download -> arrayvec-0.7.6.crate https://crates.io/api/v1/crates/async-broadcast/0.7.2/download -> async-broadcast-0.7.2.crate https://crates.io/api/v1/crates/async-channel/2.5.0/download -> async-channel-2.5.0.crate https://crates.io/api/v1/crates/async-executor/1.13.3/download -> async-executor-1.13.3.crate https://crates.io/api/v1/crates/async-io/2.6.0/download -> async-io-2.6.0.crate https://crates.io/api/v1/crates/async-lock/3.4.1/download -> async-lock-3.4.1.crate https://crates.io/api/v1/crates/async-process/2.5.0/download -> async-process-2.5.0.crate https://crates.io/api/v1/crates/async-recursion/1.1.1/download -> async-recursion-1.1.1.crate https://crates.io/api/v1/crates/async-signal/0.2.13/download -> async-signal-0.2.13.crate https://crates.io/api/v1/crates/async-task/4.7.1/download -> async-task-4.7.1.crate https://crates.io/api/v1/crates/async-trait/0.1.89/download -> async-trait-0.1.89.crate https://crates.io/api/v1/crates/atomic-waker/1.1.2/download -> atomic-waker-1.1.2.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.crate https://crates.io/api/v1/crates/av1-grain/0.2.4/download -> av1-grain-0.2.4.crate https://crates.io/api/v1/crates/avif-serialize/0.8.6/download -> avif-serialize-0.8.6.crate https://crates.io/api/v1/crates/backtrace/0.3.76/download -> backtrace-0.3.76.crate https://crates.io/api/v1/crates/base64/0.22.1/download -> base64-0.22.1.crate https://crates.io/api/v1/crates/bincode/1.3.3/download -> bincode-1.3.3.crate https://crates.io/api/v1/crates/bindgen/0.58.1/download -> bindgen-0.58.1.crate https://crates.io/api/v1/crates/bindgen/0.72.1/download -> bindgen-0.72.1.crate https://crates.io/api/v1/crates/bit-set/0.8.0/download -> bit-set-0.8.0.crate https://crates.io/api/v1/crates/bit-vec/0.8.0/download -> bit-vec-0.8.0.crate https://crates.io/api/v1/crates/bit_field/0.10.3/download -> bit_field-0.10.3.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.9.4/download -> bitflags-2.9.4.crate https://crates.io/api/v1/crates/bitstream-io/2.6.0/download -> bitstream-io-2.6.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/block2/0.6.2/download -> block2-0.6.2.crate https://crates.io/api/v1/crates/block/0.1.6/download -> block-0.1.6.crate https://crates.io/api/v1/crates/blocking/1.6.2/download -> blocking-1.6.2.crate https://crates.io/api/v1/crates/brotli-decompressor/5.0.0/download -> brotli-decompressor-5.0.0.crate https://crates.io/api/v1/crates/brotli/8.0.2/download -> brotli-8.0.2.crate https://crates.io/api/v1/crates/bstr/1.12.0/download -> bstr-1.12.0.crate https://crates.io/api/v1/crates/built/0.7.7/download -> built-0.7.7.crate https://crates.io/api/v1/crates/bumpalo/3.19.0/download -> bumpalo-3.19.0.crate https://crates.io/api/v1/crates/bytemuck/1.24.0/download -> bytemuck-1.24.0.crate https://crates.io/api/v1/crates/byteorder-lite/0.1.0/download -> byteorder-lite-0.1.0.crate https://crates.io/api/v1/crates/byteorder/1.5.0/download -> byteorder-1.5.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.5.0/download -> bytestring-1.5.0.crate https://crates.io/api/v1/crates/cc/1.2.41/download -> cc-1.2.41.crate https://crates.io/api/v1/crates/cesu8/1.1.0/download -> cesu8-1.1.0.crate https://crates.io/api/v1/crates/cexpr/0.4.0/download -> cexpr-0.4.0.crate https://crates.io/api/v1/crates/cexpr/0.6.0/download -> cexpr-0.6.0.crate https://crates.io/api/v1/crates/cfg-expr/0.15.8/download -> cfg-expr-0.15.8.crate https://crates.io/api/v1/crates/cfg-if/1.0.3/download -> cfg-if-1.0.3.crate https://crates.io/api/v1/crates/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/chrono/0.4.42/download -> chrono-0.4.42.crate https://crates.io/api/v1/crates/clang-sys/1.8.1/download -> clang-sys-1.8.1.crate https://crates.io/api/v1/crates/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/clap/4.5.48/download -> clap-4.5.48.crate https://crates.io/api/v1/crates/clap_builder/4.5.48/download -> clap_builder-4.5.48.crate https://crates.io/api/v1/crates/clap_complete/4.5.58/download -> clap_complete-4.5.58.crate https://crates.io/api/v1/crates/clap_derive/4.5.47/download -> clap_derive-4.5.47.crate https://crates.io/api/v1/crates/clap_lex/0.7.5/download -> clap_lex-0.7.5.crate https://crates.io/api/v1/crates/cocoa-foundation/0.1.2/download -> cocoa-foundation-0.1.2.crate https://crates.io/api/v1/crates/color_quant/1.1.0/download -> color_quant-1.1.0.crate https://crates.io/api/v1/crates/colorchoice/1.0.4/download -> colorchoice-1.0.4.crate https://crates.io/api/v1/crates/combine/4.6.7/download -> combine-4.6.7.crate https://crates.io/api/v1/crates/concat-string/1.0.1/download -> concat-string-1.0.1.crate https://crates.io/api/v1/crates/concurrent-queue/2.5.0/download -> concurrent-queue-2.5.0.crate https://crates.io/api/v1/crates/const-random-macro/0.1.16/download -> const-random-macro-0.1.16.crate https://crates.io/api/v1/crates/const-random/0.1.18/download -> const-random-0.1.18.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/core-foundation/0.10.1/download -> core-foundation-0.10.1.crate https://crates.io/api/v1/crates/core-foundation/0.9.4/download -> core-foundation-0.9.4.crate https://crates.io/api/v1/crates/core-graphics-types/0.1.3/download -> core-graphics-types-0.1.3.crate https://crates.io/api/v1/crates/coreaudio-rs/0.13.0/download -> coreaudio-rs-0.13.0.crate https://crates.io/api/v1/crates/coreaudio-sys/0.2.17/download -> coreaudio-sys-0.2.17.crate https://crates.io/api/v1/crates/cpal/0.16.0/download -> cpal-0.16.0.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.5.0/download -> crc32fast-1.5.0.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.6/download -> crossbeam-deque-0.8.6.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download -> crossbeam-epoch-0.9.18.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.21/download -> crossbeam-utils-0.8.21.crate https://crates.io/api/v1/crates/crunchy/0.2.4/download -> crunchy-0.2.4.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/darling/0.20.11/download -> darling-0.20.11.crate https://crates.io/api/v1/crates/darling/0.21.3/download -> darling-0.21.3.crate https://crates.io/api/v1/crates/darling_core/0.20.11/download -> darling_core-0.20.11.crate https://crates.io/api/v1/crates/darling_core/0.21.3/download -> darling_core-0.21.3.crate https://crates.io/api/v1/crates/darling_macro/0.20.11/download -> darling_macro-0.20.11.crate https://crates.io/api/v1/crates/darling_macro/0.21.3/download -> darling_macro-0.21.3.crate https://crates.io/api/v1/crates/dasp_frame/0.11.0/download -> dasp_frame-0.11.0.crate https://crates.io/api/v1/crates/dasp_sample/0.11.0/download -> dasp_sample-0.11.0.crate https://crates.io/api/v1/crates/deranged/0.5.4/download -> deranged-0.5.4.crate https://crates.io/api/v1/crates/derivative/2.2.0/download -> derivative-2.2.0.crate https://crates.io/api/v1/crates/derive_arbitrary/1.4.2/download -> derive_arbitrary-1.4.2.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/0.99.20/download -> derive_more-0.99.20.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/directories/6.0.0/download -> directories-6.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.5.0/download -> dirs-sys-0.5.0.crate https://crates.io/api/v1/crates/dispatch2/0.3.0/download -> dispatch2-0.3.0.crate https://crates.io/api/v1/crates/displaydoc/0.2.5/download -> displaydoc-0.2.5.crate https://crates.io/api/v1/crates/dlv-list/0.5.2/download -> dlv-list-0.5.2.crate https://crates.io/api/v1/crates/doctest-file/1.0.0/download -> doctest-file-1.0.0.crate https://crates.io/api/v1/crates/dunce/1.0.5/download -> dunce-1.0.5.crate https://crates.io/api/v1/crates/dyn-clonable-impl/0.9.2/download -> dyn-clonable-impl-0.9.2.crate https://crates.io/api/v1/crates/dyn-clonable/0.9.2/download -> dyn-clonable-0.9.2.crate https://crates.io/api/v1/crates/dyn-clone/1.0.20/download -> dyn-clone-1.0.20.crate https://crates.io/api/v1/crates/ebur128/0.1.10/download -> ebur128-0.1.10.crate https://crates.io/api/v1/crates/educe/0.5.11/download -> educe-0.5.11.crate https://crates.io/api/v1/crates/either/1.15.0/download -> either-1.15.0.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/endi/1.1.0/download -> endi-1.1.0.crate https://crates.io/api/v1/crates/enum-map-derive/0.17.0/download -> enum-map-derive-0.17.0.crate https://crates.io/api/v1/crates/enum-map/2.7.3/download -> enum-map-2.7.3.crate https://crates.io/api/v1/crates/enum-ordinalize-derive/4.3.1/download -> enum-ordinalize-derive-4.3.1.crate https://crates.io/api/v1/crates/enum-ordinalize/4.3.0/download -> enum-ordinalize-4.3.0.crate https://crates.io/api/v1/crates/enumflags2/0.7.12/download -> enumflags2-0.7.12.crate https://crates.io/api/v1/crates/enumflags2_derive/0.7.12/download -> enumflags2_derive-0.7.12.crate https://crates.io/api/v1/crates/enumset/1.1.10/download -> enumset-1.1.10.crate https://crates.io/api/v1/crates/enumset_derive/0.14.0/download -> enumset_derive-0.14.0.crate https://crates.io/api/v1/crates/env_home/0.1.0/download -> env_home-0.1.0.crate https://crates.io/api/v1/crates/env_logger/0.8.4/download -> env_logger-0.8.4.crate https://crates.io/api/v1/crates/equator-macro/0.4.2/download -> equator-macro-0.4.2.crate https://crates.io/api/v1/crates/equator/0.4.2/download -> equator-0.4.2.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/errno/0.3.14/download -> errno-0.3.14.crate https://crates.io/api/v1/crates/event-listener-strategy/0.5.4/download -> event-listener-strategy-0.5.4.crate https://crates.io/api/v1/crates/event-listener/5.4.1/download -> event-listener-5.4.1.crate https://crates.io/api/v1/crates/exr/1.73.0/download -> exr-1.73.0.crate https://crates.io/api/v1/crates/extended/0.1.0/download -> extended-0.1.0.crate https://crates.io/api/v1/crates/fancy-regex/0.16.2/download -> fancy-regex-0.16.2.crate https://crates.io/api/v1/crates/fastrand/2.3.0/download -> fastrand-2.3.0.crate https://crates.io/api/v1/crates/fax/0.2.6/download -> fax-0.2.6.crate https://crates.io/api/v1/crates/fax_derive/0.2.0/download -> fax_derive-0.2.0.crate https://crates.io/api/v1/crates/fdeflate/0.3.7/download -> fdeflate-0.3.7.crate https://crates.io/api/v1/crates/file-rotate/0.8.0/download -> file-rotate-0.8.0.crate https://crates.io/api/v1/crates/find-msvc-tools/0.1.4/download -> find-msvc-tools-0.1.4.crate https://crates.io/api/v1/crates/find-winsdk/0.2.0/download -> find-winsdk-0.2.0.crate https://crates.io/api/v1/crates/flate2/1.1.4/download -> flate2-1.1.4.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.2/download -> form_urlencoded-1.2.2.crate https://crates.io/api/v1/crates/fsevent-sys/4.1.0/download -> fsevent-sys-4.1.0.crate https://crates.io/api/v1/crates/futures-channel/0.3.31/download -> futures-channel-0.3.31.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-executor/0.3.31/download -> futures-executor-0.3.31.crate https://crates.io/api/v1/crates/futures-io/0.3.31/download -> futures-io-0.3.31.crate https://crates.io/api/v1/crates/futures-lite/2.6.1/download -> futures-lite-2.6.1.crate https://crates.io/api/v1/crates/futures-macro/0.3.31/download -> futures-macro-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/futures/0.3.31/download -> futures-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.2.16/download -> getrandom-0.2.16.crate https://crates.io/api/v1/crates/getrandom/0.3.3/download -> getrandom-0.3.3.crate https://crates.io/api/v1/crates/gif/0.13.3/download -> gif-0.13.3.crate https://crates.io/api/v1/crates/gimli/0.32.3/download -> gimli-0.32.3.crate https://crates.io/api/v1/crates/glob/0.3.3/download -> glob-0.3.3.crate https://crates.io/api/v1/crates/griddle/0.5.2/download -> griddle-0.5.2.crate https://crates.io/api/v1/crates/half/2.7.0/download -> half-2.7.0.crate https://crates.io/api/v1/crates/hashbrown/0.11.2/download -> hashbrown-0.11.2.crate https://crates.io/api/v1/crates/hashbrown/0.14.5/download -> hashbrown-0.14.5.crate https://crates.io/api/v1/crates/hashbrown/0.16.0/download -> hashbrown-0.16.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hermit-abi/0.5.2/download -> hermit-abi-0.5.2.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/hound/3.5.1/download -> hound-3.5.1.crate https://crates.io/api/v1/crates/http-body-util/0.1.3/download -> http-body-util-0.1.3.crate https://crates.io/api/v1/crates/http-body/1.0.1/download -> http-body-1.0.1.crate https://crates.io/api/v1/crates/http/0.2.12/download -> http-0.2.12.crate https://crates.io/api/v1/crates/http/1.3.1/download -> http-1.3.1.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/humantime/2.3.0/download -> humantime-2.3.0.crate https://crates.io/api/v1/crates/hyper-rustls/0.27.7/download -> hyper-rustls-0.27.7.crate https://crates.io/api/v1/crates/hyper-util/0.1.17/download -> hyper-util-0.1.17.crate https://crates.io/api/v1/crates/hyper/1.7.0/download -> hyper-1.7.0.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.64/download -> iana-time-zone-0.1.64.crate https://crates.io/api/v1/crates/icu_collections/2.0.0/download -> icu_collections-2.0.0.crate https://crates.io/api/v1/crates/icu_locale_core/2.0.0/download -> icu_locale_core-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer/2.0.0/download -> icu_normalizer-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer_data/2.0.0/download -> icu_normalizer_data-2.0.0.crate https://crates.io/api/v1/crates/icu_properties/2.0.1/download -> icu_properties-2.0.1.crate https://crates.io/api/v1/crates/icu_properties_data/2.0.1/download -> icu_properties_data-2.0.1.crate https://crates.io/api/v1/crates/icu_provider/2.0.0/download -> icu_provider-2.0.0.crate https://crates.io/api/v1/crates/ident_case/1.0.1/download -> ident_case-1.0.1.crate https://crates.io/api/v1/crates/idna/1.1.0/download -> idna-1.1.0.crate https://crates.io/api/v1/crates/idna_adapter/1.2.1/download -> idna_adapter-1.2.1.crate https://crates.io/api/v1/crates/image-webp/0.2.4/download -> image-webp-0.2.4.crate https://crates.io/api/v1/crates/image/0.25.8/download -> image-0.25.8.crate https://crates.io/api/v1/crates/imageproc/0.25.0/download -> imageproc-0.25.0.crate https://crates.io/api/v1/crates/imgref/1.12.0/download -> imgref-1.12.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/include_dir/0.7.4/download -> include_dir-0.7.4.crate https://crates.io/api/v1/crates/include_dir_macros/0.7.4/download -> include_dir_macros-0.7.4.crate https://crates.io/api/v1/crates/indexmap/2.11.4/download -> indexmap-2.11.4.crate https://crates.io/api/v1/crates/inotify-sys/0.1.5/download -> inotify-sys-0.1.5.crate https://crates.io/api/v1/crates/inotify/0.11.0/download -> inotify-0.11.0.crate https://crates.io/api/v1/crates/interpolate_name/0.2.4/download -> interpolate_name-0.2.4.crate https://crates.io/api/v1/crates/interprocess/2.2.3/download -> interprocess-2.2.3.crate https://crates.io/api/v1/crates/io-kit-sys/0.4.1/download -> io-kit-sys-0.4.1.crate https://crates.io/api/v1/crates/io-uring/0.7.10/download -> io-uring-0.7.10.crate https://crates.io/api/v1/crates/ipnet/2.11.0/download -> ipnet-2.11.0.crate https://crates.io/api/v1/crates/iri-string/0.7.8/download -> iri-string-0.7.8.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/itertools/0.12.1/download -> itertools-0.12.1.crate https://crates.io/api/v1/crates/itertools/0.13.0/download -> itertools-0.13.0.crate https://crates.io/api/v1/crates/itoa/1.0.15/download -> itoa-1.0.15.crate https://crates.io/api/v1/crates/jni-sys/0.3.0/download -> jni-sys-0.3.0.crate https://crates.io/api/v1/crates/jni/0.21.1/download -> jni-0.21.1.crate https://crates.io/api/v1/crates/jobserver/0.1.34/download -> jobserver-0.1.34.crate https://crates.io/api/v1/crates/js-sys/0.3.81/download -> js-sys-0.3.81.crate https://crates.io/api/v1/crates/json-patch/4.1.0/download -> json-patch-4.1.0.crate https://crates.io/api/v1/crates/jsonpath-rust/1.0.4/download -> jsonpath-rust-1.0.4.crate https://crates.io/api/v1/crates/jsonptr/0.7.1/download -> jsonptr-0.7.1.crate https://crates.io/api/v1/crates/kqueue-sys/1.0.4/download -> kqueue-sys-1.0.4.crate https://crates.io/api/v1/crates/kqueue/1.1.1/download -> kqueue-1.1.1.crate https://crates.io/api/v1/crates/ksni/0.3.1/download -> ksni-0.3.1.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/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/lebe/0.5.3/download -> lebe-0.5.3.crate https://crates.io/api/v1/crates/libc/0.2.177/download -> libc-0.2.177.crate https://crates.io/api/v1/crates/libfuzzer-sys/0.4.10/download -> libfuzzer-sys-0.4.10.crate https://crates.io/api/v1/crates/libloading/0.8.9/download -> libloading-0.8.9.crate https://crates.io/api/v1/crates/libm/0.2.15/download -> libm-0.2.15.crate https://crates.io/api/v1/crates/libpulse-binding/2.30.1/download -> libpulse-binding-2.30.1.crate https://crates.io/api/v1/crates/libpulse-simple-binding/2.29.0/download -> libpulse-simple-binding-2.29.0.crate https://crates.io/api/v1/crates/libpulse-simple-sys/1.22.0/download -> libpulse-simple-sys-1.22.0.crate https://crates.io/api/v1/crates/libpulse-sys/1.23.0/download -> libpulse-sys-1.23.0.crate https://crates.io/api/v1/crates/libredox/0.1.10/download -> libredox-0.1.10.crate https://crates.io/api/v1/crates/libusb1-sys/0.7.0/download -> libusb1-sys-0.7.0.crate https://crates.io/api/v1/crates/libz-rs-sys/0.5.2/download -> libz-rs-sys-0.5.2.crate https://crates.io/api/v1/crates/linux-raw-sys/0.11.0/download -> linux-raw-sys-0.11.0.crate https://crates.io/api/v1/crates/litemap/0.8.0/download -> litemap-0.8.0.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.14/download -> lock_api-0.4.14.crate https://crates.io/api/v1/crates/log-panics/2.1.0/download -> log-panics-2.1.0.crate https://crates.io/api/v1/crates/log/0.4.28/download -> log-0.4.28.crate https://crates.io/api/v1/crates/loop9/0.1.5/download -> loop9-0.1.5.crate https://crates.io/api/v1/crates/lru-slab/0.1.2/download -> lru-slab-0.1.2.crate https://crates.io/api/v1/crates/mach2/0.4.3/download -> mach2-0.4.3.crate https://crates.io/api/v1/crates/malloc_buf/0.0.6/download -> malloc_buf-0.0.6.crate https://crates.io/api/v1/crates/matrixmultiply/0.3.10/download -> matrixmultiply-0.3.10.crate https://crates.io/api/v1/crates/maybe-rayon/0.1.1/download -> maybe-rayon-0.1.1.crate https://crates.io/api/v1/crates/memchr/2.7.6/download -> memchr-2.7.6.crate https://crates.io/api/v1/crates/memoffset/0.9.1/download -> memoffset-0.9.1.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/mime_guess/2.0.5/download -> mime_guess-2.0.5.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.9/download -> miniz_oxide-0.8.9.crate https://crates.io/api/v1/crates/mio/1.0.4/download -> mio-1.0.4.crate https://crates.io/api/v1/crates/moxcms/0.7.6/download -> moxcms-0.7.6.crate https://crates.io/api/v1/crates/mslnk/0.1.8/download -> mslnk-0.1.8.crate https://crates.io/api/v1/crates/nalgebra/0.32.6/download -> nalgebra-0.32.6.crate https://crates.io/api/v1/crates/ndk-context/0.1.1/download -> ndk-context-0.1.1.crate https://crates.io/api/v1/crates/ndk-sys/0.6.0+11769913/download -> ndk-sys-0.6.0+11769913.crate https://crates.io/api/v1/crates/ndk/0.9.0/download -> ndk-0.9.0.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/nix/0.30.1/download -> nix-0.30.1.crate https://crates.io/api/v1/crates/nom/5.1.3/download -> nom-5.1.3.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/noop_proc_macro/0.3.0/download -> noop_proc_macro-0.3.0.crate https://crates.io/api/v1/crates/normpath/1.5.0/download -> normpath-1.5.0.crate https://crates.io/api/v1/crates/notify-types/2.0.0/download -> notify-types-2.0.0.crate https://crates.io/api/v1/crates/notify/8.2.0/download -> notify-8.2.0.crate https://crates.io/api/v1/crates/ntapi/0.4.1/download -> ntapi-0.4.1.crate https://crates.io/api/v1/crates/num-bigint/0.4.6/download -> num-bigint-0.4.6.crate https://crates.io/api/v1/crates/num-complex/0.4.6/download -> num-complex-0.4.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/num-derive/0.4.2/download -> num-derive-0.4.2.crate https://crates.io/api/v1/crates/num-integer/0.1.46/download -> num-integer-0.1.46.crate https://crates.io/api/v1/crates/num-iter/0.1.45/download -> num-iter-0.1.45.crate https://crates.io/api/v1/crates/num-rational/0.4.2/download -> num-rational-0.4.2.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/num/0.4.3/download -> num-0.4.3.crate https://crates.io/api/v1/crates/num_enum/0.7.4/download -> num_enum-0.7.4.crate https://crates.io/api/v1/crates/num_enum_derive/0.7.4/download -> num_enum_derive-0.7.4.crate https://crates.io/api/v1/crates/num_threads/0.1.7/download -> num_threads-0.1.7.crate https://crates.io/api/v1/crates/objc2-app-kit/0.3.2/download -> objc2-app-kit-0.3.2.crate https://crates.io/api/v1/crates/objc2-audio-toolbox/0.3.2/download -> objc2-audio-toolbox-0.3.2.crate https://crates.io/api/v1/crates/objc2-cloud-kit/0.3.2/download -> objc2-cloud-kit-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-audio-types/0.3.2/download -> objc2-core-audio-types-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-audio/0.3.2/download -> objc2-core-audio-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-data/0.3.2/download -> objc2-core-data-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-foundation/0.3.2/download -> objc2-core-foundation-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-graphics/0.3.2/download -> objc2-core-graphics-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-image/0.3.2/download -> objc2-core-image-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-text/0.3.2/download -> objc2-core-text-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-video/0.3.2/download -> objc2-core-video-0.3.2.crate https://crates.io/api/v1/crates/objc2-encode/4.1.0/download -> objc2-encode-4.1.0.crate https://crates.io/api/v1/crates/objc2-foundation/0.3.2/download -> objc2-foundation-0.3.2.crate https://crates.io/api/v1/crates/objc2-io-kit/0.3.2/download -> objc2-io-kit-0.3.2.crate https://crates.io/api/v1/crates/objc2-io-surface/0.3.2/download -> objc2-io-surface-0.3.2.crate https://crates.io/api/v1/crates/objc2-quartz-core/0.3.2/download -> objc2-quartz-core-0.3.2.crate https://crates.io/api/v1/crates/objc2/0.6.3/download -> objc2-0.6.3.crate https://crates.io/api/v1/crates/objc/0.2.7/download -> objc-0.2.7.crate https://crates.io/api/v1/crates/objc_exception/0.1.2/download -> objc_exception-0.1.2.crate https://crates.io/api/v1/crates/object/0.37.3/download -> object-0.37.3.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/once_cell_polyfill/1.70.1/download -> once_cell_polyfill-1.70.1.crate https://crates.io/api/v1/crates/opener/0.8.3/download -> opener-0.8.3.crate https://crates.io/api/v1/crates/option-ext/0.2.0/download -> option-ext-0.2.0.crate https://crates.io/api/v1/crates/ordered-multimap/0.7.3/download -> ordered-multimap-0.7.3.crate https://crates.io/api/v1/crates/ordered-stream/0.2.0/download -> ordered-stream-0.2.0.crate https://crates.io/api/v1/crates/owned_ttf_parser/0.25.1/download -> owned_ttf_parser-0.25.1.crate https://crates.io/api/v1/crates/oxilangtag/0.1.5/download -> oxilangtag-0.1.5.crate https://crates.io/api/v1/crates/parking/2.2.1/download -> parking-2.2.1.crate https://crates.io/api/v1/crates/parking_lot/0.12.5/download -> parking_lot-0.12.5.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.12/download -> parking_lot_core-0.9.12.crate https://crates.io/api/v1/crates/parse-size/1.1.0/download -> parse-size-1.1.0.crate https://crates.io/api/v1/crates/paste/1.0.15/download -> paste-1.0.15.crate https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download -> peeking_take_while-0.1.2.crate https://crates.io/api/v1/crates/percent-encoding/2.3.2/download -> percent-encoding-2.3.2.crate https://crates.io/api/v1/crates/pest/2.8.3/download -> pest-2.8.3.crate https://crates.io/api/v1/crates/pest_derive/2.8.3/download -> pest_derive-2.8.3.crate https://crates.io/api/v1/crates/pest_generator/2.8.3/download -> pest_generator-2.8.3.crate https://crates.io/api/v1/crates/pest_meta/2.8.3/download -> pest_meta-2.8.3.crate https://crates.io/api/v1/crates/pin-project-internal/1.1.10/download -> pin-project-internal-1.1.10.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-project/1.1.10/download -> pin-project-1.1.10.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/piper/0.2.4/download -> piper-0.2.4.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/png/0.18.0/download -> png-0.18.0.crate https://crates.io/api/v1/crates/polling/3.11.0/download -> polling-3.11.0.crate https://crates.io/api/v1/crates/potential_utf/0.1.3/download -> potential_utf-0.1.3.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/prettyplease/0.2.37/download -> prettyplease-0.2.37.crate https://crates.io/api/v1/crates/primal-check/0.3.4/download -> primal-check-0.3.4.crate https://crates.io/api/v1/crates/proc-macro-crate/3.4.0/download -> proc-macro-crate-3.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.101/download -> proc-macro2-1.0.101.crate https://crates.io/api/v1/crates/profiling-procmacros/1.0.17/download -> profiling-procmacros-1.0.17.crate https://crates.io/api/v1/crates/profiling/1.0.17/download -> profiling-1.0.17.crate https://crates.io/api/v1/crates/pxfm/0.1.25/download -> pxfm-0.1.25.crate https://crates.io/api/v1/crates/qoi/0.4.1/download -> qoi-0.4.1.crate https://crates.io/api/v1/crates/quick-error/2.0.1/download -> quick-error-2.0.1.crate https://crates.io/api/v1/crates/quick-xml/0.38.3/download -> quick-xml-0.38.3.crate https://crates.io/api/v1/crates/quinn-proto/0.11.13/download -> quinn-proto-0.11.13.crate https://crates.io/api/v1/crates/quinn-udp/0.5.14/download -> quinn-udp-0.5.14.crate https://crates.io/api/v1/crates/quinn/0.11.9/download -> quinn-0.11.9.crate https://crates.io/api/v1/crates/quote/1.0.41/download -> quote-1.0.41.crate https://crates.io/api/v1/crates/r-efi/5.3.0/download -> r-efi-5.3.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.2/download -> rand-0.9.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.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/rand_distr/0.4.3/download -> rand_distr-0.4.3.crate https://crates.io/api/v1/crates/rav1e/0.7.1/download -> rav1e-0.7.1.crate https://crates.io/api/v1/crates/ravif/0.11.20/download -> ravif-0.11.20.crate https://crates.io/api/v1/crates/rawpointer/0.2.1/download -> rawpointer-0.2.1.crate https://crates.io/api/v1/crates/rayon-core/1.13.0/download -> rayon-core-1.13.0.crate https://crates.io/api/v1/crates/rayon/1.11.0/download -> rayon-1.11.0.crate https://crates.io/api/v1/crates/rb/0.4.1/download -> rb-0.4.1.crate https://crates.io/api/v1/crates/realfft/3.5.0/download -> realfft-3.5.0.crate https://crates.io/api/v1/crates/recvmsg/1.0.0/download -> recvmsg-1.0.0.crate https://crates.io/api/v1/crates/redox_syscall/0.5.18/download -> redox_syscall-0.5.18.crate https://crates.io/api/v1/crates/redox_users/0.5.2/download -> redox_users-0.5.2.crate https://crates.io/api/v1/crates/regex-automata/0.4.12/download -> regex-automata-0.4.12.crate https://crates.io/api/v1/crates/regex-lite/0.1.8/download -> regex-lite-0.1.8.crate https://crates.io/api/v1/crates/regex-syntax/0.8.7/download -> regex-syntax-0.8.7.crate https://crates.io/api/v1/crates/regex/1.12.1/download -> regex-1.12.1.crate https://crates.io/api/v1/crates/reqwest/0.12.23/download -> reqwest-0.12.23.crate https://crates.io/api/v1/crates/rgb/0.8.52/download -> rgb-0.8.52.crate https://crates.io/api/v1/crates/ring/0.17.14/download -> ring-0.17.14.crate https://crates.io/api/v1/crates/ritelinked/0.3.2/download -> ritelinked-0.3.2.crate https://crates.io/api/v1/crates/rubato/0.16.2/download -> rubato-0.16.2.crate https://crates.io/api/v1/crates/rusb/0.9.4/download -> rusb-0.9.4.crate https://crates.io/api/v1/crates/rust-ini/0.21.3/download -> rust-ini-0.21.3.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.26/download -> rustc-demangle-0.1.26.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/rustc-hash/2.1.1/download -> rustc-hash-2.1.1.crate https://crates.io/api/v1/crates/rustc_version/0.4.1/download -> rustc_version-0.4.1.crate https://crates.io/api/v1/crates/rustfft/6.4.1/download -> rustfft-6.4.1.crate https://crates.io/api/v1/crates/rustix/1.1.2/download -> rustix-1.1.2.crate https://crates.io/api/v1/crates/rustls-pki-types/1.12.0/download -> rustls-pki-types-1.12.0.crate https://crates.io/api/v1/crates/rustls-webpki/0.103.7/download -> rustls-webpki-0.103.7.crate https://crates.io/api/v1/crates/rustls/0.23.32/download -> rustls-0.23.32.crate https://crates.io/api/v1/crates/rustversion/1.0.22/download -> rustversion-1.0.22.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/safe_arch/0.7.4/download -> safe_arch-0.7.4.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/semver/1.0.27/download -> semver-1.0.27.crate https://crates.io/api/v1/crates/serde/1.0.228/download -> serde-1.0.228.crate https://crates.io/api/v1/crates/serde_core/1.0.228/download -> serde_core-1.0.228.crate https://crates.io/api/v1/crates/serde_derive/1.0.228/download -> serde_derive-1.0.228.crate https://crates.io/api/v1/crates/serde_json/1.0.145/download -> serde_json-1.0.145.crate https://crates.io/api/v1/crates/serde_plain/1.0.2/download -> serde_plain-1.0.2.crate https://crates.io/api/v1/crates/serde_repr/0.1.20/download -> serde_repr-0.1.20.crate https://crates.io/api/v1/crates/serde_spanned/0.6.9/download -> serde_spanned-0.6.9.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/sha2/0.10.9/download -> sha2-0.10.9.crate https://crates.io/api/v1/crates/shell-words/1.1.0/download -> shell-words-1.1.0.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.6/download -> signal-hook-registry-1.4.6.crate https://crates.io/api/v1/crates/simba/0.8.1/download -> simba-0.8.1.crate https://crates.io/api/v1/crates/simd-adler32/0.3.7/download -> simd-adler32-0.3.7.crate https://crates.io/api/v1/crates/simd_helpers/0.1.0/download -> simd_helpers-0.1.0.crate https://crates.io/api/v1/crates/simplelog/0.12.2/download -> simplelog-0.12.2.crate https://crates.io/api/v1/crates/slab/0.4.11/download -> slab-0.4.11.crate https://crates.io/api/v1/crates/smallvec/1.15.1/download -> smallvec-1.15.1.crate https://crates.io/api/v1/crates/socket2/0.5.10/download -> socket2-0.5.10.crate https://crates.io/api/v1/crates/socket2/0.6.0/download -> socket2-0.6.0.crate https://crates.io/api/v1/crates/speech-dispatcher-sys/0.7.0/download -> speech-dispatcher-sys-0.7.0.crate https://crates.io/api/v1/crates/speech-dispatcher/0.16.0/download -> speech-dispatcher-0.16.0.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.1/download -> stable_deref_trait-1.2.1.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strength_reduce/0.2.4/download -> strength_reduce-0.2.4.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/strum/0.27.2/download -> strum-0.27.2.crate https://crates.io/api/v1/crates/strum_macros/0.27.2/download -> strum_macros-0.27.2.crate https://crates.io/api/v1/crates/subtle/2.6.1/download -> subtle-2.6.1.crate https://crates.io/api/v1/crates/symphonia-bundle-flac/0.5.4/download -> symphonia-bundle-flac-0.5.4.crate https://crates.io/api/v1/crates/symphonia-bundle-mp3/0.5.4/download -> symphonia-bundle-mp3-0.5.4.crate https://crates.io/api/v1/crates/symphonia-codec-adpcm/0.5.4/download -> symphonia-codec-adpcm-0.5.4.crate https://crates.io/api/v1/crates/symphonia-codec-pcm/0.5.4/download -> symphonia-codec-pcm-0.5.4.crate https://crates.io/api/v1/crates/symphonia-codec-vorbis/0.5.4/download -> symphonia-codec-vorbis-0.5.4.crate https://crates.io/api/v1/crates/symphonia-core/0.5.4/download -> symphonia-core-0.5.4.crate https://crates.io/api/v1/crates/symphonia-format-mkv/0.5.4/download -> symphonia-format-mkv-0.5.4.crate https://crates.io/api/v1/crates/symphonia-format-ogg/0.5.4/download -> symphonia-format-ogg-0.5.4.crate https://crates.io/api/v1/crates/symphonia-format-riff/0.5.4/download -> symphonia-format-riff-0.5.4.crate https://crates.io/api/v1/crates/symphonia-metadata/0.5.4/download -> symphonia-metadata-0.5.4.crate https://crates.io/api/v1/crates/symphonia-utils-xiph/0.5.4/download -> symphonia-utils-xiph-0.5.4.crate https://crates.io/api/v1/crates/symphonia/0.5.4/download -> symphonia-0.5.4.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.106/download -> syn-2.0.106.crate https://crates.io/api/v1/crates/sync_wrapper/1.0.2/download -> sync_wrapper-1.0.2.crate https://crates.io/api/v1/crates/synstructure/0.13.2/download -> synstructure-0.13.2.crate https://crates.io/api/v1/crates/sys-locale/0.3.2/download -> sys-locale-0.3.2.crate https://crates.io/api/v1/crates/sysinfo/0.37.2/download -> sysinfo-0.37.2.crate https://crates.io/api/v1/crates/system-deps/6.2.2/download -> system-deps-6.2.2.crate https://crates.io/api/v1/crates/target-lexicon/0.12.16/download -> target-lexicon-0.12.16.crate https://crates.io/api/v1/crates/tempfile/3.23.0/download -> tempfile-3.23.0.crate https://crates.io/api/v1/crates/termcolor/1.4.1/download -> termcolor-1.4.1.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.69/download -> thiserror-impl-1.0.69.crate https://crates.io/api/v1/crates/thiserror-impl/2.0.17/download -> thiserror-impl-2.0.17.crate https://crates.io/api/v1/crates/thiserror/1.0.69/download -> thiserror-1.0.69.crate https://crates.io/api/v1/crates/thiserror/2.0.17/download -> thiserror-2.0.17.crate https://crates.io/api/v1/crates/tiff/0.10.3/download -> tiff-0.10.3.crate https://crates.io/api/v1/crates/time-core/0.1.6/download -> time-core-0.1.6.crate https://crates.io/api/v1/crates/time-macros/0.2.24/download -> time-macros-0.2.24.crate https://crates.io/api/v1/crates/time/0.3.44/download -> time-0.3.44.crate https://crates.io/api/v1/crates/tiny-keccak/2.0.2/download -> tiny-keccak-2.0.2.crate https://crates.io/api/v1/crates/tinystr/0.8.1/download -> tinystr-0.8.1.crate https://crates.io/api/v1/crates/tinyvec/1.10.0/download -> tinyvec-1.10.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/tokio-macros/2.5.0/download -> tokio-macros-2.5.0.crate https://crates.io/api/v1/crates/tokio-rustls/0.26.4/download -> tokio-rustls-0.26.4.crate https://crates.io/api/v1/crates/tokio-serde/0.9.0/download -> tokio-serde-0.9.0.crate https://crates.io/api/v1/crates/tokio-util/0.7.16/download -> tokio-util-0.7.16.crate https://crates.io/api/v1/crates/tokio/1.47.1/download -> tokio-1.47.1.crate https://crates.io/api/v1/crates/tolk-sys/0.2.2/download -> tolk-sys-0.2.2.crate https://crates.io/api/v1/crates/tolk/0.5.0/download -> tolk-0.5.0.crate https://crates.io/api/v1/crates/toml/0.8.23/download -> toml-0.8.23.crate https://crates.io/api/v1/crates/toml_datetime/0.6.11/download -> toml_datetime-0.6.11.crate https://crates.io/api/v1/crates/toml_datetime/0.7.3/download -> toml_datetime-0.7.3.crate https://crates.io/api/v1/crates/toml_edit/0.22.27/download -> toml_edit-0.22.27.crate https://crates.io/api/v1/crates/toml_edit/0.23.7/download -> toml_edit-0.23.7.crate https://crates.io/api/v1/crates/toml_parser/1.0.4/download -> toml_parser-1.0.4.crate https://crates.io/api/v1/crates/tower-http/0.6.6/download -> tower-http-0.6.6.crate https://crates.io/api/v1/crates/tower-layer/0.3.3/download -> tower-layer-0.3.3.crate https://crates.io/api/v1/crates/tower-service/0.3.3/download -> tower-service-0.3.3.crate https://crates.io/api/v1/crates/tower/0.5.2/download -> tower-0.5.2.crate https://crates.io/api/v1/crates/tracing-attributes/0.1.30/download -> tracing-attributes-0.1.30.crate https://crates.io/api/v1/crates/tracing-core/0.1.34/download -> tracing-core-0.1.34.crate https://crates.io/api/v1/crates/tracing/0.1.41/download -> tracing-0.1.41.crate https://crates.io/api/v1/crates/transpose/0.2.3/download -> transpose-0.2.3.crate https://crates.io/api/v1/crates/try-lock/0.2.5/download -> try-lock-0.2.5.crate https://crates.io/api/v1/crates/ttf-parser/0.25.1/download -> ttf-parser-0.25.1.crate https://crates.io/api/v1/crates/tts/0.26.3/download -> tts-0.26.3.crate https://crates.io/api/v1/crates/typenum/1.19.0/download -> typenum-1.19.0.crate https://crates.io/api/v1/crates/ucd-trie/0.1.7/download -> ucd-trie-0.1.7.crate https://crates.io/api/v1/crates/uds_windows/1.1.0/download -> uds_windows-1.1.0.crate https://crates.io/api/v1/crates/unicase/2.8.1/download -> unicase-2.8.1.crate https://crates.io/api/v1/crates/unicode-ident/1.0.19/download -> unicode-ident-1.0.19.crate https://crates.io/api/v1/crates/unicode-width/0.1.14/download -> unicode-width-0.1.14.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/untrusted/0.9.0/download -> untrusted-0.9.0.crate https://crates.io/api/v1/crates/url/2.5.7/download -> url-2.5.7.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/v_frame/0.3.9/download -> v_frame-0.3.9.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version-compare/0.2.0/download -> version-compare-0.2.0.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/want/0.3.1/download -> want-0.3.1.crate https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download -> wasi-0.11.1+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.14.7+wasi-0.2.4/download -> wasi-0.14.7+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasip2/1.0.1+wasi-0.2.4/download -> wasip2-1.0.1+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.104/download -> wasm-bindgen-backend-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.54/download -> wasm-bindgen-futures-0.4.54.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.104/download -> wasm-bindgen-macro-support-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.104/download -> wasm-bindgen-macro-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.104/download -> wasm-bindgen-shared-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.104/download -> wasm-bindgen-0.2.104.crate https://crates.io/api/v1/crates/wasm-streams/0.4.2/download -> wasm-streams-0.4.2.crate https://crates.io/api/v1/crates/web-sys/0.3.81/download -> web-sys-0.3.81.crate https://crates.io/api/v1/crates/web-time/1.1.0/download -> web-time-1.1.0.crate https://crates.io/api/v1/crates/webpki-roots/1.0.3/download -> webpki-roots-1.0.3.crate https://crates.io/api/v1/crates/weezl/0.1.10/download -> weezl-0.1.10.crate https://crates.io/api/v1/crates/which/3.1.1/download -> which-3.1.1.crate https://crates.io/api/v1/crates/which/8.0.0/download -> which-8.0.0.crate https://crates.io/api/v1/crates/wide/0.7.33/download -> wide-0.7.33.crate https://crates.io/api/v1/crates/widestring/0.4.3/download -> widestring-0.4.3.crate https://crates.io/api/v1/crates/widestring/1.2.1/download -> widestring-1.2.1.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.11/download -> winapi-util-0.1.11.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-args/0.2.0/download -> windows-args-0.2.0.crate https://crates.io/api/v1/crates/windows-collections/0.2.0/download -> windows-collections-0.2.0.crate https://crates.io/api/v1/crates/windows-collections/0.3.2/download -> windows-collections-0.3.2.crate https://crates.io/api/v1/crates/windows-core/0.54.0/download -> windows-core-0.54.0.crate https://crates.io/api/v1/crates/windows-core/0.58.0/download -> windows-core-0.58.0.crate https://crates.io/api/v1/crates/windows-core/0.61.2/download -> windows-core-0.61.2.crate https://crates.io/api/v1/crates/windows-core/0.62.2/download -> windows-core-0.62.2.crate https://crates.io/api/v1/crates/windows-future/0.2.1/download -> windows-future-0.2.1.crate https://crates.io/api/v1/crates/windows-future/0.3.2/download -> windows-future-0.3.2.crate https://crates.io/api/v1/crates/windows-implement/0.58.0/download -> windows-implement-0.58.0.crate https://crates.io/api/v1/crates/windows-implement/0.60.2/download -> windows-implement-0.60.2.crate https://crates.io/api/v1/crates/windows-interface/0.58.0/download -> windows-interface-0.58.0.crate https://crates.io/api/v1/crates/windows-interface/0.59.3/download -> windows-interface-0.59.3.crate https://crates.io/api/v1/crates/windows-link/0.1.3/download -> windows-link-0.1.3.crate https://crates.io/api/v1/crates/windows-link/0.2.1/download -> windows-link-0.2.1.crate https://crates.io/api/v1/crates/windows-numerics/0.2.0/download -> windows-numerics-0.2.0.crate https://crates.io/api/v1/crates/windows-numerics/0.3.1/download -> windows-numerics-0.3.1.crate https://crates.io/api/v1/crates/windows-result/0.1.2/download -> windows-result-0.1.2.crate https://crates.io/api/v1/crates/windows-result/0.2.0/download -> windows-result-0.2.0.crate https://crates.io/api/v1/crates/windows-result/0.3.4/download -> windows-result-0.3.4.crate https://crates.io/api/v1/crates/windows-result/0.4.1/download -> windows-result-0.4.1.crate https://crates.io/api/v1/crates/windows-strings/0.1.0/download -> windows-strings-0.1.0.crate https://crates.io/api/v1/crates/windows-strings/0.4.2/download -> windows-strings-0.4.2.crate https://crates.io/api/v1/crates/windows-strings/0.5.1/download -> windows-strings-0.5.1.crate https://crates.io/api/v1/crates/windows-sys/0.45.0/download -> windows-sys-0.45.0.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-sys/0.60.2/download -> windows-sys-0.60.2.crate https://crates.io/api/v1/crates/windows-sys/0.61.2/download -> windows-sys-0.61.2.crate https://crates.io/api/v1/crates/windows-targets/0.42.2/download -> windows-targets-0.42.2.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-targets/0.53.5/download -> windows-targets-0.53.5.crate https://crates.io/api/v1/crates/windows-threading/0.1.0/download -> windows-threading-0.1.0.crate https://crates.io/api/v1/crates/windows-threading/0.2.1/download -> windows-threading-0.2.1.crate https://crates.io/api/v1/crates/windows/0.54.0/download -> windows-0.54.0.crate https://crates.io/api/v1/crates/windows/0.58.0/download -> windows-0.58.0.crate https://crates.io/api/v1/crates/windows/0.61.3/download -> windows-0.61.3.crate https://crates.io/api/v1/crates/windows/0.62.2/download -> windows-0.62.2.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.2/download -> windows_aarch64_gnullvm-0.42.2.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_gnullvm/0.53.1/download -> windows_aarch64_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.2/download -> windows_aarch64_msvc-0.42.2.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_aarch64_msvc/0.53.1/download -> windows_aarch64_msvc-0.53.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.42.2/download -> windows_i686_gnu-0.42.2.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_gnu/0.53.1/download -> windows_i686_gnu-0.53.1.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_gnullvm/0.53.1/download -> windows_i686_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.42.2/download -> windows_i686_msvc-0.42.2.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_i686_msvc/0.53.1/download -> windows_i686_msvc-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.2/download -> windows_x86_64_gnu-0.42.2.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_gnu/0.53.1/download -> windows_x86_64_gnu-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.2/download -> windows_x86_64_gnullvm-0.42.2.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_gnullvm/0.53.1/download -> windows_x86_64_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.2/download -> windows_x86_64_msvc-0.42.2.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/windows_x86_64_msvc/0.53.1/download -> windows_x86_64_msvc-0.53.1.crate https://crates.io/api/v1/crates/windres/0.2.2/download -> windres-0.2.2.crate https://crates.io/api/v1/crates/winnow/0.7.13/download -> winnow-0.7.13.crate https://crates.io/api/v1/crates/winreg/0.5.1/download -> winreg-0.5.1.crate https://crates.io/api/v1/crates/winreg/0.55.0/download -> winreg-0.55.0.crate https://crates.io/api/v1/crates/winrt-toast-reborn/0.3.8/download -> winrt-toast-reborn-0.3.8.crate https://crates.io/api/v1/crates/winsafe/0.0.19/download -> winsafe-0.0.19.crate https://crates.io/api/v1/crates/wit-bindgen/0.46.0/download -> wit-bindgen-0.46.0.crate https://crates.io/api/v1/crates/writeable/0.6.1/download -> writeable-0.6.1.crate https://crates.io/api/v1/crates/wtf8/0.0.3/download -> wtf8-0.0.3.crate https://crates.io/api/v1/crates/xml-rs/0.8.27/download -> xml-rs-0.8.27.crate https://crates.io/api/v1/crates/xmltree/0.11.0/download -> xmltree-0.11.0.crate https://crates.io/api/v1/crates/yoke-derive/0.8.0/download -> yoke-derive-0.8.0.crate https://crates.io/api/v1/crates/yoke/0.8.0/download -> yoke-0.8.0.crate https://crates.io/api/v1/crates/zbus/5.11.0/download -> zbus-5.11.0.crate https://crates.io/api/v1/crates/zbus_macros/5.11.0/download -> zbus_macros-5.11.0.crate https://crates.io/api/v1/crates/zbus_names/4.2.0/download -> zbus_names-4.2.0.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.27/download -> zerocopy-derive-0.8.27.crate https://crates.io/api/v1/crates/zerocopy/0.8.27/download -> zerocopy-0.8.27.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/zeroize/1.8.2/download -> zeroize-1.8.2.crate https://crates.io/api/v1/crates/zerotrie/0.2.2/download -> zerotrie-0.2.2.crate https://crates.io/api/v1/crates/zerovec-derive/0.11.1/download -> zerovec-derive-0.11.1.crate https://crates.io/api/v1/crates/zerovec/0.11.4/download -> zerovec-0.11.4.crate https://crates.io/api/v1/crates/zip/6.0.0/download -> zip-6.0.0.crate https://crates.io/api/v1/crates/zlib-rs/0.5.2/download -> zlib-rs-0.5.2.crate https://crates.io/api/v1/crates/zopfli/0.8.2/download -> zopfli-0.8.2.crate https://crates.io/api/v1/crates/zune-core/0.4.12/download -> zune-core-0.4.12.crate https://crates.io/api/v1/crates/zune-inflate/0.2.54/download -> zune-inflate-0.2.54.crate https://crates.io/api/v1/crates/zune-jpeg/0.4.21/download -> zune-jpeg-0.4.21.crate https://crates.io/api/v1/crates/zvariant/5.7.0/download -> zvariant-5.7.0.crate https://crates.io/api/v1/crates/zvariant_derive/5.7.0/download -> zvariant_derive-5.7.0.crate https://crates.io/api/v1/crates/zvariant_utils/3.2.1/download -> zvariant_utils-3.2.1.crate https://github.com/dfrankland/xpc-connection-rs/archive/cd4fb3d05edb4292ccb9566ae27cdeb874222d2a.tar.gz -> xpc-connection-rs-cd4fb3d05edb4292ccb9566ae27cdeb874222d2a.gh.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 cargo 53bab5a62cfc3526d8ed02c0a38a6033 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 cargo 53bab5a62cfc3526d8ed02c0a38a6033 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=80b595aca878a15e48c20047b74f6f02 diff --git a/metadata/md5-cache/media-sound/goxlr-utility-9999 b/metadata/md5-cache/media-sound/goxlr-utility-9999 index f4b60456d660..b123b3ca67c5 100644 --- a/metadata/md5-cache/media-sound/goxlr-utility-9999 +++ b/metadata/md5-cache/media-sound/goxlr-utility-9999 @@ -10,5 +10,5 @@ LICENSE=MIT Music-Tribe 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BS PROPERTIES=live RDEPEND=media-libs/libpulse dev-util/pkgconf sys-apps/dbus tts? ( app-accessibility/speech-dispatcher llvm-core/clang ) SLOT=0 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 cargo 53bab5a62cfc3526d8ed02c0a38a6033 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 cargo 53bab5a62cfc3526d8ed02c0a38a6033 desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b65181b50aefd1ce3d84cf4f85ebbf1f diff --git a/metadata/md5-cache/media-sound/headsetcontrol-3.1.0-r1 b/metadata/md5-cache/media-sound/headsetcontrol-3.1.0-r1 index 071230c3ee36..75bc603c4d3c 100644 --- a/metadata/md5-cache/media-sound/headsetcontrol-3.1.0-r1 +++ b/metadata/md5-cache/media-sound/headsetcontrol-3.1.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/hidapi udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/Sapd/HeadsetControl/archive/refs/tags/3.1.0.tar.gz -> headsetcontrol-3.1.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=5c8391877955a16ca1ae3b44ea42559a diff --git a/metadata/md5-cache/media-sound/mixxx-2.5.4 b/metadata/md5-cache/media-sound/mixxx-2.5.4 index 2f6d059b7220..c163a57a7cd5 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.5.4 +++ b/metadata/md5-cache/media-sound/mixxx-2.5.4 @@ -14,5 +14,5 @@ REQUIRED_USE=benchmark? ( test ) qtkeychain? ( shout ) test? ( aac ffmpeg midi m RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mixxxdj/mixxx/archive/2.5.4.tar.gz -> mixxx-2.5.4.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=af3f54a7088d228e4295bab7e6f6d22d diff --git a/metadata/md5-cache/media-sound/mixxx-2.5.6 b/metadata/md5-cache/media-sound/mixxx-2.5.6 index 1d83137e7092..e6ba212f5053 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.5.6 +++ b/metadata/md5-cache/media-sound/mixxx-2.5.6 @@ -14,5 +14,5 @@ REQUIRED_USE=benchmark? ( test ) qtkeychain? ( shout ) test? ( aac ffmpeg midi m RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mixxxdj/mixxx/archive/2.5.6.tar.gz -> mixxx-2.5.6.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=dd337f1b19606e068902c7c99659df0c diff --git a/metadata/md5-cache/media-sound/mixxx-9999 b/metadata/md5-cache/media-sound/mixxx-9999 index 2d260f714042..63123fc834fc 100644 --- a/metadata/md5-cache/media-sound/mixxx-9999 +++ b/metadata/md5-cache/media-sound/mixxx-9999 @@ -13,5 +13,5 @@ RDEPEND=dev-db/sqlite:3 dev-cpp/abseil-cpp:= >=dev-libs/hidapi-0.14.0 dev-libs/p REQUIRED_USE=benchmark? ( test ) qtkeychain? ( shout ) test? ( aac ffmpeg midi mp3 opus rubberband ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=95c4a3ec3447a4c0113317b58746eaeb diff --git a/metadata/md5-cache/media-sound/pulseaudio-daemon-16.1-r2 b/metadata/md5-cache/media-sound/pulseaudio-daemon-16.1-r2 index fb98de65280c..92480337234b 100644 --- a/metadata/md5-cache/media-sound/pulseaudio-daemon-16.1-r2 +++ b/metadata/md5-cache/media-sound/pulseaudio-daemon-16.1-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( elogind systemd ) alsa-plugin? ( alsa ) aptx? ( bluetooth ) bl RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://freedesktop.org/software/pulseaudio/releases/pulseaudio-16.1.tar.xz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=57d99618ef1cfb66f07bed58eecdd859 diff --git a/metadata/md5-cache/media-sound/pulseaudio-daemon-17.0 b/metadata/md5-cache/media-sound/pulseaudio-daemon-17.0 index 13ed9f72cc7f..cb5e0983faf0 100644 --- a/metadata/md5-cache/media-sound/pulseaudio-daemon-17.0 +++ b/metadata/md5-cache/media-sound/pulseaudio-daemon-17.0 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( elogind systemd ) alsa-plugin? ( alsa ) aptx? ( bluetooth ) bl RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://freedesktop.org/software/pulseaudio/releases/pulseaudio-17.0.tar.xz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=cee177dc352782e6953335c98f80e0ed diff --git a/metadata/md5-cache/media-video/isight-firmware-tools-1.6-r2 b/metadata/md5-cache/media-video/isight-firmware-tools-1.6-r2 index fa8577d841f0..37e07be145a2 100644 --- a/metadata/md5-cache/media-video/isight-firmware-tools-1.6-r2 +++ b/metadata/md5-cache/media-video/isight-firmware-tools-1.6-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.14:2 dev-libs/libgcrypt:0 virtual/libusb:0 virtual/udev SLOT=0 SRC_URI=https://launchpad.net/isight-firmware-tools/main/1.6/+download/isight-firmware-tools-1.6.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fd58ec9e170700aa910d9615f03c273b diff --git a/metadata/md5-cache/media-video/pipewire-1.6.3 b/metadata/md5-cache/media-video/pipewire-1.6.3 index b12a330146a8..00b9eef91eab 100644 --- a/metadata/md5-cache/media-video/pipewire-1.6.3 +++ b/metadata/md5-cache/media-video/pipewire-1.6.3 @@ -14,5 +14,5 @@ REQUIRED_USE=ffmpeg? ( extra ) bluetooth? ( dbus ) jack-sdk? ( !jack-client ) mo RESTRICT=!test? ( test ) SLOT=0/0.4 SRC_URI=https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/1.6.3/pipewire-1.6.3.tar.bz2 !man? ( https://dev.gentoo.org/~sam/distfiles/media-video/pipewire/pipewire-1.6.0-docs.tar.xz ) -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1f08a41c804eea7558334bb4fd1ce2c0 diff --git a/metadata/md5-cache/media-video/pipewire-1.6.4 b/metadata/md5-cache/media-video/pipewire-1.6.4 index 01a60c967cae..fbb30ac69698 100644 --- a/metadata/md5-cache/media-video/pipewire-1.6.4 +++ b/metadata/md5-cache/media-video/pipewire-1.6.4 @@ -14,5 +14,5 @@ REQUIRED_USE=ffmpeg? ( extra ) bluetooth? ( dbus ) jack-sdk? ( !jack-client ) mo RESTRICT=!test? ( test ) SLOT=0/0.4 SRC_URI=https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/1.6.4/pipewire-1.6.4.tar.bz2 !man? ( https://dev.gentoo.org/~sam/distfiles/media-video/pipewire/pipewire-1.6.0-docs.tar.xz ) -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1f08a41c804eea7558334bb4fd1ce2c0 diff --git a/metadata/md5-cache/net-dns/unbound-1.24.1 b/metadata/md5-cache/net-dns/unbound-1.25.0 index a105f63eeeca..c4149dfc72d6 100644 --- a/metadata/md5-cache/net-dns/unbound-1.24.1 +++ b/metadata/md5-cache/net-dns/unbound-1.25.0 @@ -12,6 +12,6 @@ RDEPEND=acct-group/unbound acct-user/unbound >=dev-libs/expat-2.1.0-r3[abi_x86_3 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/8 -SRC_URI=https://nlnetlabs.nl/downloads/unbound/unbound-1.24.1.tar.gz verify-sig? ( https://nlnetlabs.nl/downloads/unbound/unbound-1.24.1.tar.gz.asc ) +SRC_URI=https://nlnetlabs.nl/downloads/unbound/unbound-1.25.0.tar.gz verify-sig? ( https://nlnetlabs.nl/downloads/unbound/unbound-1.25.0.tar.gz.asc ) _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=cfdcb9f95b3dc58e06e877a96d71d426 +_md5_=f5109a244cec88696dcb984b8a214244 diff --git a/metadata/md5-cache/net-ftp/proftpd-1.3.7f b/metadata/md5-cache/net-ftp/proftpd-1.3.7f deleted file mode 100644 index 5ac40d5e9910..000000000000 --- a/metadata/md5-cache/net-ftp/proftpd-1.3.7f +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=configure install postinst prepare test -DEPEND=acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( <dev-libs/libressl-3.6.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) test? ( dev-libs/check ) virtual/libcrypt -DESCRIPTION=An advanced and very configurable FTP server -EAPI=7 -HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ https://github.com/jbenden/mod_clamav http://gssmod.sourceforge.net/ -INHERIT=multilib systemd tmpfiles toolchain-funcs -IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( <dev-libs/libressl-3.6.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) virtual/tmpfiles -REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) sftp? ( ssl ) shaper? ( ctrls ) mysql? ( ssl ) postgres? ( ssl ) sqlite? ( ssl ) -RESTRICT=test -SLOT=0 -SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.7f.tar.gz case? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-case-0.7.tar.gz ) clamav? ( https://github.com/jbenden/mod_clamav/archive/v0.14rc2.tar.gz -> proftpd-mod_clamav-0.14rc2.tar.gz ) diskuse? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-diskuse-0.9.tar.gz ) kerberos? ( mirror://sourceforge/gssmod/mod_gss-1.3.9.tar.gz ) msg? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-msg-0.4.1.tar.gz ) vroot? ( https://github.com/Castaglia/proftpd-mod_vroot/archive/v0.9.4.tar.gz -> mod_vroot-0.9.4.tar.gz ) -_eclasses_=multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=eebb659b77d278e933dbaff9763bd91d diff --git a/metadata/md5-cache/net-ftp/proftpd-1.3.8b-r1 b/metadata/md5-cache/net-ftp/proftpd-1.3.8b-r1 deleted file mode 100644 index 4ce39c55ed55..000000000000 --- a/metadata/md5-cache/net-ftp/proftpd-1.3.8b-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=configure install postinst prepare test -DEPEND=virtual/libcrypt:= acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( >=dev-libs/libressl-4.0.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) test? ( dev-libs/check ) -DESCRIPTION=An advanced and very configurable FTP server -EAPI=8 -HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ https://github.com/jbenden/mod_clamav http://gssmod.sourceforge.net/ -INHERIT=multilib systemd tmpfiles toolchain-funcs -IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=virtual/libcrypt:= acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( >=dev-libs/libressl-4.0.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) virtual/tmpfiles -REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) sftp? ( ssl ) shaper? ( ctrls ) mysql? ( ssl ) postgres? ( ssl ) sqlite? ( ssl ) -RESTRICT=test -SLOT=0 -SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.8b.tar.gz case? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-case-0.7.tar.gz ) clamav? ( https://github.com/jbenden/mod_clamav/archive/v0.14rc2.tar.gz -> proftpd-mod_clamav-0.14rc2.tar.gz ) diskuse? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-diskuse-0.9.tar.gz ) kerberos? ( mirror://sourceforge/gssmod/mod_gss-1.3.9.tar.gz ) msg? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-msg-0.4.1.tar.gz ) vroot? ( https://github.com/Castaglia/proftpd-mod_vroot/archive/v0.9.4.tar.gz -> mod_vroot-0.9.4.tar.gz ) -_eclasses_=multilib fc812e8eb2170022c28272d80a1f9e77 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=0113ec891aaeb614d456d9bbaec12c52 diff --git a/metadata/md5-cache/net-ftp/proftpd-1.3.9a b/metadata/md5-cache/net-ftp/proftpd-1.3.9a new file mode 100644 index 000000000000..b335592505ad --- /dev/null +++ b/metadata/md5-cache/net-ftp/proftpd-1.3.9a @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare test +DEPEND=virtual/libcrypt:= acl? ( virtual/acl ) caps? ( sys-libs/libcap ) deflate? ( virtual/zlib:= ) kerberos? ( sys-fs/e2fsprogs virtual/krb5 ) ldap? ( net-nds/openldap:= ) memcache? ( || ( dev-libs/libmemcached-awesome >=dev-libs/libmemcached-0.41 ) ) mysql? ( dev-db/mysql-connector-c:0= sodium? ( dev-libs/libsodium:0= ) ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( <dev-libs/libressl-4.1.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= sodium? ( dev-libs/libsodium:0= ) ) rewrite? ( || ( net-dns/libidn2 net-dns/libidn ) ) sftp? ( virtual/zlib:= ) sqlite? ( dev-db/sqlite:3 sodium? ( dev-libs/libsodium:0= ) ) test? ( dev-libs/check ) +DESCRIPTION=An advanced and very configurable FTP server +EAPI=8 +HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ https://github.com/jbenden/mod_clamav https://gssmod.sourceforge.net/ +INHERIT=systemd tmpfiles toolchain-funcs +IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86 +LICENSE=GPL-2 +RDEPEND=virtual/libcrypt:= acl? ( virtual/acl ) caps? ( sys-libs/libcap ) deflate? ( virtual/zlib:= ) kerberos? ( sys-fs/e2fsprogs virtual/krb5 ) ldap? ( net-nds/openldap:= ) memcache? ( || ( dev-libs/libmemcached-awesome >=dev-libs/libmemcached-0.41 ) ) mysql? ( dev-db/mysql-connector-c:0= sodium? ( dev-libs/libsodium:0= ) ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( <dev-libs/libressl-4.1.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= sodium? ( dev-libs/libsodium:0= ) ) rewrite? ( || ( net-dns/libidn2 net-dns/libidn ) ) sftp? ( virtual/zlib:= ) sqlite? ( dev-db/sqlite:3 sodium? ( dev-libs/libsodium:0= ) ) net-ftp/ftpbase clamav? ( app-antivirus/clamav ) selinux? ( sec-policy/selinux-ftp ) virtual/tmpfiles +REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) shaper? ( ctrls ) mysql? ( ssl ) postgres? ( ssl ) radius? ( ssl ) sftp? ( ssl ) sqlite? ( ssl ) +RESTRICT=test +SLOT=0 +SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.9a.tar.gz case? ( https://github.com/Castaglia/proftpd-mod_case/archive/v0.9.1.tar.gz -> mod_case-0.9.1.tar.gz ) clamav? ( https://github.com/jbenden/mod_clamav/archive/v0.14rc2.tar.gz -> proftpd-mod_clamav-0.14rc2.tar.gz ) diskuse? ( https://github.com/Castaglia/proftpd-mod_diskuse/archive/v0.9.1.tar.gz -> mod_diskuse-0.9.1.tar.gz ) kerberos? ( https://downloads.sourceforge.net/gssmod/mod_gss-1.3.9.tar.gz ) msg? ( https://github.com/Castaglia/proftpd-mod_msg/archive/v0.5.1.tar.gz -> mod_msg-0.5.1.tar.gz ) vroot? ( https://github.com/Castaglia/proftpd-mod_vroot/archive/v0.9.12.tar.gz -> mod_vroot-0.9.12.tar.gz ) +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=b875b1a56862090f2a09a80b9f425e60 diff --git a/metadata/md5-cache/net-ftp/pure-ftpd-1.0.52 b/metadata/md5-cache/net-ftp/pure-ftpd-1.0.54 index 31f695430cd5..b61d83638428 100644 --- a/metadata/md5-cache/net-ftp/pure-ftpd-1.0.52 +++ b/metadata/md5-cache/net-ftp/pure-ftpd-1.0.54 @@ -11,6 +11,6 @@ LICENSE=BSD GPL-2 RDEPEND=dev-libs/libsodium:= virtual/libcrypt:= caps? ( sys-libs/libcap ) ldap? ( >=net-nds/openldap-2.0.25:= ) mysql? ( || ( dev-db/mariadb-connector-c dev-db/mysql-connector-c ) ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:= ) ssl? ( !libressl? ( dev-libs/openssl:0=[-bindist(-)] ) libressl? ( >=dev-libs/libressl-3.5.0:= ) ) sysquota? ( sys-fs/quota[-rpc] ) xinetd? ( virtual/inetd ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) REQUIRED_USE=implicittls? ( ssl ) SLOT=0 -SRC_URI=ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.52.tar.bz2 https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.52.tar.bz2 +SRC_URI=ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.54.tar.bz2 https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.54.tar.bz2 _eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=45c430c1021ace837b1a3891b96def3b +_md5_=e7ff99c7d6b6f3eccdc38e5f645a441b diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.10 b/metadata/md5-cache/net-im/element-desktop-1.12.10 deleted file mode 100644 index e5d32e352335..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.10 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs sys-apps/yarn -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.10 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-36 electron-37 electron-40 native-modules build-online -KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.10 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=!build-online? ( https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.28.6.tgz -> @babel-code-frame-7.28.6.tgz https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.6.tgz -> @babel-compat-data-7.28.6.tgz https://registry.yarnpkg.com/@babel/core/-/core-7.28.6.tgz -> @babel-core-7.28.6.tgz https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.6.tgz -> @babel-generator-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz -> @babel-helper-compilation-targets-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz -> @babel-helper-create-class-features-plugin-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz -> @babel-helper-module-imports-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz -> @babel-helper-module-transforms-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz -> @babel-helper-plugin-utils-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz -> @babel-helper-replace-supers-7.28.6.tgz https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz -> @babel-helper-wrap-function-7.28.6.tgz https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.6.tgz -> @babel-helpers-7.28.6.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.6.tgz -> @babel-parser-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz -> @babel-plugin-syntax-import-assertions-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz -> @babel-plugin-syntax-import-attributes-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.6.tgz -> @babel-plugin-transform-async-generator-functions-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz -> @babel-plugin-transform-async-to-generator-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz -> @babel-plugin-transform-block-scoping-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz -> @babel-plugin-transform-class-properties-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz -> @babel-plugin-transform-class-static-block-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz -> @babel-plugin-transform-classes-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz -> @babel-plugin-transform-computed-properties-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz -> @babel-plugin-transform-dotall-regex-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz -> @babel-plugin-transform-json-strings-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz -> @babel-plugin-transform-modules-commonjs-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz -> @babel-plugin-transform-numeric-separator-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz -> @babel-plugin-transform-object-rest-spread-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz -> @babel-plugin-transform-optional-catch-binding-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz -> @babel-plugin-transform-optional-chaining-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz -> @babel-plugin-transform-private-methods-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz -> @babel-plugin-transform-private-property-in-object-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.6.tgz -> @babel-plugin-transform-regenerator-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz -> @babel-plugin-transform-regexp-modifiers-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz -> @babel-plugin-transform-spread-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz -> @babel-plugin-transform-unicode-property-regex-7.28.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz -> @babel-plugin-transform-unicode-sets-regex-7.28.6.tgz https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.6.tgz -> @babel-preset-env-7.28.6.tgz https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/template/-/template-7.28.6.tgz -> @babel-template-7.28.6.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.6.tgz -> @babel-traverse-7.28.6.tgz https://registry.yarnpkg.com/@babel/types/-/types-7.28.6.tgz -> @babel-types-7.28.6.tgz https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz -> @electron-get-3.1.0.tgz https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz -> @electron-rebuild-4.0.3.tgz https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz https://registry.yarnpkg.com/@emnapi/core/-/core-1.8.1.tgz -> @emnapi-core-1.8.1.tgz https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz -> @emnapi-runtime-1.8.1.tgz https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz -> @esbuild-aix-ppc64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.1.tgz -> @esbuild-android-arm-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz -> @esbuild-android-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.1.tgz -> @esbuild-android-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz -> @esbuild-darwin-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz -> @esbuild-darwin-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz -> @esbuild-freebsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz -> @esbuild-freebsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz -> @esbuild-linux-arm-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz -> @esbuild-linux-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz -> @esbuild-linux-ia32-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz -> @esbuild-linux-loong64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz -> @esbuild-linux-mips64el-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz -> @esbuild-linux-ppc64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz -> @esbuild-linux-riscv64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz -> @esbuild-linux-s390x-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz -> @esbuild-linux-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz -> @esbuild-netbsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz -> @esbuild-netbsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz -> @esbuild-openbsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz -> @esbuild-openbsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz -> @esbuild-openharmony-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz -> @esbuild-sunos-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz -> @esbuild-win32-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz -> @esbuild-win32-ia32-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz -> @esbuild-win32-x64-0.27.1.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz -> @eslint-community-eslint-utils-4.9.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz -> @napi-rs-wasm-runtime-1.1.1.tgz https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz -> @opentelemetry-api-logs-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.210.0.tgz -> @opentelemetry-api-logs-0.210.0.tgz https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.4.0.tgz -> @opentelemetry-context-async-hooks-2.4.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.4.0.tgz -> @opentelemetry-core-2.4.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.55.0.tgz -> @opentelemetry-instrumentation-amqplib-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.52.0.tgz -> @opentelemetry-instrumentation-connect-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.26.0.tgz -> @opentelemetry-instrumentation-dataloader-0.26.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.57.0.tgz -> @opentelemetry-instrumentation-express-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.28.0.tgz -> @opentelemetry-instrumentation-fs-0.28.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.52.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.56.0.tgz -> @opentelemetry-instrumentation-graphql-0.56.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.55.0.tgz -> @opentelemetry-instrumentation-hapi-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.208.0.tgz -> @opentelemetry-instrumentation-http-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.56.0.tgz -> @opentelemetry-instrumentation-ioredis-0.56.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.18.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.18.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.53.0.tgz -> @opentelemetry-instrumentation-knex-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.57.0.tgz -> @opentelemetry-instrumentation-koa-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.53.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.61.0.tgz -> @opentelemetry-instrumentation-mongodb-0.61.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.55.0.tgz -> @opentelemetry-instrumentation-mongoose-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.54.0.tgz -> @opentelemetry-instrumentation-mysql-0.54.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.55.0.tgz -> @opentelemetry-instrumentation-mysql2-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.61.0.tgz -> @opentelemetry-instrumentation-pg-0.61.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.57.0.tgz -> @opentelemetry-instrumentation-redis-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.27.0.tgz -> @opentelemetry-instrumentation-tedious-0.27.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.19.0.tgz -> @opentelemetry-instrumentation-undici-0.19.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.208.0.tgz -> @opentelemetry-instrumentation-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.210.0.tgz -> @opentelemetry-instrumentation-0.210.0.tgz https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.4.0.tgz -> @opentelemetry-resources-2.4.0.tgz https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.4.0.tgz -> @opentelemetry-sdk-trace-base-2.4.0.tgz https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.39.0.tgz -> @opentelemetry-semantic-conventions-1.39.0.tgz https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.16.3.tgz -> @oxc-resolver-binding-android-arm-eabi-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.16.3.tgz -> @oxc-resolver-binding-android-arm64-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.16.3.tgz -> @oxc-resolver-binding-darwin-arm64-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.16.3.tgz -> @oxc-resolver-binding-darwin-x64-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.16.3.tgz -> @oxc-resolver-binding-freebsd-x64-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.16.3.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.16.3.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-x64-musl-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.16.3.tgz -> @oxc-resolver-binding-openharmony-arm64-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.16.3.tgz -> @oxc-resolver-binding-wasm32-wasi-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.16.3.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.16.3.tgz https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.19.0.tgz -> @prisma-instrumentation-6.19.0.tgz https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.34.0.tgz -> @sentry-internal-browser-utils-10.34.0.tgz https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.34.0.tgz -> @sentry-internal-feedback-10.34.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.34.0.tgz -> @sentry-internal-replay-canvas-10.34.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.34.0.tgz -> @sentry-internal-replay-10.34.0.tgz https://registry.yarnpkg.com/@sentry/browser/-/browser-10.34.0.tgz -> @sentry-browser-10.34.0.tgz https://registry.yarnpkg.com/@sentry/core/-/core-10.34.0.tgz -> @sentry-core-10.34.0.tgz https://registry.yarnpkg.com/@sentry/electron/-/electron-7.6.0.tgz -> @sentry-electron-7.6.0.tgz https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.34.0.tgz -> @sentry-node-core-10.34.0.tgz https://registry.yarnpkg.com/@sentry/node/-/node-10.34.0.tgz -> @sentry-node-10.34.0.tgz https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.34.0.tgz -> @sentry-opentelemetry-10.34.0.tgz https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.7.0.tgz -> @stylistic-eslint-plugin-5.7.0.tgz https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.7.tgz -> @types-pg-pool-2.0.7.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.16.0.tgz -> @types-pg-8.16.0.tgz https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.53.1.tgz -> @typescript-eslint-eslint-plugin-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.53.1.tgz -> @typescript-eslint-parser-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.53.1.tgz -> @typescript-eslint-project-service-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.53.1.tgz -> @typescript-eslint-scope-manager-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.53.1.tgz -> @typescript-eslint-tsconfig-utils-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.53.1.tgz -> @typescript-eslint-type-utils-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.53.1.tgz -> @typescript-eslint-types-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.53.1.tgz -> @typescript-eslint-typescript-estree-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.53.1.tgz -> @typescript-eslint-utils-8.53.1.tgz https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.53.1.tgz -> @typescript-eslint-visitor-keys-8.53.1.tgz https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.6.0.tgz https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz https://registry.yarnpkg.com/async/-/async-3.2.6.tgz https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz https://registry.yarnpkg.com/atomically/-/atomically-2.1.0.tgz https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.16.tgz https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.1.tgz https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz https://registry.yarnpkg.com/builder-util/-/builder-util-26.4.1.tgz https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001765.tgz https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.47.0.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.6.0.tgz https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.6.0.tgz https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.6.0.tgz https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.6.0.tgz https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz https://registry.yarnpkg.com/electron/-/electron-40.0.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.1.tgz https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.2.tgz https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.0.tgz https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz https://registry.yarnpkg.com/espree/-/espree-11.1.0.tgz https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz https://registry.yarnpkg.com/except/-/except-0.1.3.tgz https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz https://registry.yarnpkg.com/got/-/got-11.8.6.tgz https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-2.0.4.tgz https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz https://registry.yarnpkg.com/knip/-/knip-5.82.1.tgz https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.5.2.tgz https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz https://registry.yarnpkg.com/once/-/once-1.4.0.tgz https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz https://registry.yarnpkg.com/open/-/open-7.4.2.tgz https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.16.3.tgz https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.11.0.tgz https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.1.tgz https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz https://registry.yarnpkg.com/prettier/-/prettier-3.8.0.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.6.0.tgz https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-2.0.0.tgz https://registry.yarnpkg.com/stubborn-utils/-/stubborn-utils-1.0.2.tgz https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz https://registry.yarnpkg.com/tar/-/tar-7.5.3.tgz https://registry.yarnpkg.com/tar/-/tar-7.5.7.tgz https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz https://registry.yarnpkg.com/tsx/-/tsx-4.21.0.tgz https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.5.tgz https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz https://registry.yarnpkg.com/which/-/which-2.0.2.tgz https://registry.yarnpkg.com/which/-/which-5.0.0.tgz https://registry.yarnpkg.com/which/-/which-6.0.0.tgz https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz https://registry.yarnpkg.com/zod/-/zod-4.3.5.tgz ) https://github.com/vector-im/element-desktop/archive/v1.12.10.tar.gz -> element-desktop-1.12.10.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=a2b35912e863f9d88ebcae17e46e701e diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.11 b/metadata/md5-cache/net-im/element-desktop-1.12.11 deleted file mode 100644 index 9c01e5cafef8..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.11 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.11 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-36 electron-37 electron-40 native-modules +build-online -KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.11 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=https://github.com/vector-im/element-desktop/archive/v1.12.11.tar.gz -> element-desktop-1.12.11.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=4e7402a6708e9c3923e9ffeba50710c1 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.12 b/metadata/md5-cache/net-im/element-desktop-1.12.12 deleted file mode 100644 index 5866ce38c4dc..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.12 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.12 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-40 electron-41 native-modules +build-online -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.12 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=https://github.com/vector-im/element-desktop/archive/v1.12.12.tar.gz -> element-desktop-1.12.12.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f87296bcfe9b611424a16b03c8e8c6b2 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.13 b/metadata/md5-cache/net-im/element-desktop-1.12.13 deleted file mode 100644 index 3aca35d082a4..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.13 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.13 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-40 electron-41 native-modules +build-online -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.13 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=https://github.com/vector-im/element-desktop/archive/v1.12.13.tar.gz -> element-desktop-1.12.13.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f87296bcfe9b611424a16b03c8e8c6b2 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.15 b/metadata/md5-cache/net-im/element-desktop-1.12.15 deleted file mode 100644 index 9708d5483c2e..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.15 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.15 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-40 electron-41 native-modules +build-online -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.15 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) !electron-40? ( !electron-41? ( dev-util/electron:39 ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=https://github.com/element-hq/element-web/archive/v1.12.15.tar.gz -> element-web-1.12.15.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=687455a6ade32011cf725527fa5fa79a diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.16 b/metadata/md5-cache/net-im/element-desktop-1.12.16 deleted file mode 100644 index 94117f7dd771..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.16 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.16 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) electron-42? ( dev-util/electron:42 ) !electron-40? ( !electron-41? ( !electron-42? ( dev-util/electron:39 ) ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-40 electron-41 electron-42 native-modules +build-online -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.16 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) electron-42? ( dev-util/electron:42 ) !electron-40? ( !electron-41? ( !electron-42? ( dev-util/electron:39 ) ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=https://github.com/element-hq/element-web/archive/v1.12.16.tar.gz -> element-web-1.12.16.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f2d5b640e6ba0d2a17a126636abc3929 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.3 b/metadata/md5-cache/net-im/element-desktop-1.12.3 new file mode 100644 index 000000000000..f60cb9404ca7 --- /dev/null +++ b/metadata/md5-cache/net-im/element-desktop-1.12.3 @@ -0,0 +1,17 @@ +BDEPEND=sys-apps/yarn || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack +DEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +DESCRIPTION=A glossy Matrix collaboration client for desktop +EAPI=8 +HOMEPAGE=https://element.io +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=unpacker rust xdg +IUSE=+emoji +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +RESTRICT=network-sandbox +SLOT=0 +SRC_URI=https://github.com/element-hq/element-desktop/archive/v1.12.3.tar.gz -> element-desktop-1.12.3.tar.gz https://github.com/element-hq/element-web/archive/v1.12.3.tar.gz -> element-web-1.12.3.tar.gz +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=c716a4b82af332815b8d8d72c8fad28d diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.6 b/metadata/md5-cache/net-im/element-desktop-1.12.6 new file mode 100644 index 000000000000..15da3630a0d2 --- /dev/null +++ b/metadata/md5-cache/net-im/element-desktop-1.12.6 @@ -0,0 +1,17 @@ +BDEPEND=sys-apps/yarn >=net-libs/nodejs-22.18.0 || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack +DEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +DESCRIPTION=A glossy Matrix collaboration client for desktop +EAPI=8 +HOMEPAGE=https://element.io +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=unpacker rust xdg +IUSE=+emoji keyring +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +RESTRICT=network-sandbox +SLOT=0 +SRC_URI=https://github.com/element-hq/element-desktop/archive/v1.12.6.tar.gz -> element-desktop-1.12.6.tar.gz https://github.com/element-hq/element-web/archive/v1.12.6.tar.gz -> element-web-1.12.6.tar.gz +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=97e2bce12cbbb67cd0d4c8e97b9bac55 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.7 b/metadata/md5-cache/net-im/element-desktop-1.12.7 new file mode 100644 index 000000000000..c443b290c707 --- /dev/null +++ b/metadata/md5-cache/net-im/element-desktop-1.12.7 @@ -0,0 +1,17 @@ +BDEPEND=sys-apps/yarn >=net-libs/nodejs-22.18.0 || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +DESCRIPTION=A glossy Matrix collaboration client for desktop +EAPI=8 +HOMEPAGE=https://element.io +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=unpacker rust xdg +IUSE=+emoji keyring +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb 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/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +RESTRICT=network-sandbox +SLOT=0 +SRC_URI=https://github.com/element-hq/element-desktop/archive/v1.12.7.tar.gz -> element-desktop-1.12.7.tar.gz https://github.com/element-hq/element-web/archive/v1.12.7.tar.gz -> element-web-1.12.7.tar.gz +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=89e1eab78347496322378c0663b116b5 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.9 b/metadata/md5-cache/net-im/element-desktop-1.12.9 deleted file mode 100644 index 24596bd3b3a7..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.9 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs sys-apps/yarn -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-1.12.9 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils -IUSE=electron-36 electron-37 electron-40 native-modules build-online -KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=~net-im/element-web-1.12.9 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-40? ( dev-util/electron:40 ) !electron-36? ( !electron-37? ( !electron-40? ( dev-util/electron:39 ) ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -SRC_URI=!build-online? ( https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz https://registry.yarnpkg.com/@emnapi/core/-/core-1.8.1.tgz -> @emnapi-core-1.8.1.tgz https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz -> @emnapi-runtime-1.8.1.tgz https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz -> @esbuild-aix-ppc64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.1.tgz -> @esbuild-android-arm-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz -> @esbuild-android-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.1.tgz -> @esbuild-android-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz -> @esbuild-darwin-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz -> @esbuild-darwin-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz -> @esbuild-freebsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz -> @esbuild-freebsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz -> @esbuild-linux-arm-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz -> @esbuild-linux-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz -> @esbuild-linux-ia32-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz -> @esbuild-linux-loong64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz -> @esbuild-linux-mips64el-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz -> @esbuild-linux-ppc64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz -> @esbuild-linux-riscv64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz -> @esbuild-linux-s390x-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz -> @esbuild-linux-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz -> @esbuild-netbsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz -> @esbuild-netbsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz -> @esbuild-openbsd-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz -> @esbuild-openbsd-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz -> @esbuild-openharmony-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz -> @esbuild-sunos-x64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz -> @esbuild-win32-arm64-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz -> @esbuild-win32-ia32-0.27.1.tgz https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz -> @esbuild-win32-x64-0.27.1.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz -> @eslint-community-eslint-utils-4.9.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz -> @napi-rs-wasm-runtime-1.1.1.tgz https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz -> @opentelemetry-api-logs-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.55.0.tgz -> @opentelemetry-instrumentation-amqplib-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.52.0.tgz -> @opentelemetry-instrumentation-connect-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.26.0.tgz -> @opentelemetry-instrumentation-dataloader-0.26.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.57.0.tgz -> @opentelemetry-instrumentation-express-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.28.0.tgz -> @opentelemetry-instrumentation-fs-0.28.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.52.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.56.0.tgz -> @opentelemetry-instrumentation-graphql-0.56.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.55.0.tgz -> @opentelemetry-instrumentation-hapi-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.208.0.tgz -> @opentelemetry-instrumentation-http-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.56.0.tgz -> @opentelemetry-instrumentation-ioredis-0.56.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.18.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.18.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.53.0.tgz -> @opentelemetry-instrumentation-knex-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.57.0.tgz -> @opentelemetry-instrumentation-koa-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.53.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.61.0.tgz -> @opentelemetry-instrumentation-mongodb-0.61.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.55.0.tgz -> @opentelemetry-instrumentation-mongoose-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.54.0.tgz -> @opentelemetry-instrumentation-mysql-0.54.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.55.0.tgz -> @opentelemetry-instrumentation-mysql2-0.55.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.61.0.tgz -> @opentelemetry-instrumentation-pg-0.61.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.57.0.tgz -> @opentelemetry-instrumentation-redis-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.27.0.tgz -> @opentelemetry-instrumentation-tedious-0.27.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.19.0.tgz -> @opentelemetry-instrumentation-undici-0.19.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.208.0.tgz -> @opentelemetry-instrumentation-0.208.0.tgz https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz -> @opentelemetry-semantic-conventions-1.38.0.tgz https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.16.2.tgz -> @oxc-resolver-binding-android-arm-eabi-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.16.2.tgz -> @oxc-resolver-binding-android-arm64-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.16.2.tgz -> @oxc-resolver-binding-darwin-arm64-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.16.2.tgz -> @oxc-resolver-binding-darwin-x64-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.16.2.tgz -> @oxc-resolver-binding-freebsd-x64-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.16.2.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.16.2.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-x64-musl-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.16.2.tgz -> @oxc-resolver-binding-openharmony-arm64-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.16.2.tgz -> @oxc-resolver-binding-wasm32-wasi-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.16.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.16.2.tgz https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.19.0.tgz -> @prisma-instrumentation-6.19.0.tgz https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.29.0.tgz -> @sentry-internal-browser-utils-10.29.0.tgz https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.29.0.tgz -> @sentry-internal-feedback-10.29.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.29.0.tgz -> @sentry-internal-replay-canvas-10.29.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.29.0.tgz -> @sentry-internal-replay-10.29.0.tgz https://registry.yarnpkg.com/@sentry/browser/-/browser-10.29.0.tgz -> @sentry-browser-10.29.0.tgz https://registry.yarnpkg.com/@sentry/core/-/core-10.29.0.tgz -> @sentry-core-10.29.0.tgz https://registry.yarnpkg.com/@sentry/electron/-/electron-7.5.0.tgz -> @sentry-electron-7.5.0.tgz https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.29.0.tgz -> @sentry-node-core-10.29.0.tgz https://registry.yarnpkg.com/@sentry/node/-/node-10.29.0.tgz -> @sentry-node-10.29.0.tgz https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.29.0.tgz -> @sentry-opentelemetry-10.29.0.tgz https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.6.1.tgz -> @stylistic-eslint-plugin-5.6.1.tgz https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.7.tgz -> @types-pg-pool-2.0.7.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.16.0.tgz -> @types-pg-8.16.0.tgz https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.52.0.tgz -> @typescript-eslint-eslint-plugin-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.52.0.tgz -> @typescript-eslint-parser-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.52.0.tgz -> @typescript-eslint-project-service-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.52.0.tgz -> @typescript-eslint-scope-manager-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.52.0.tgz -> @typescript-eslint-tsconfig-utils-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.52.0.tgz -> @typescript-eslint-type-utils-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.0.tgz -> @typescript-eslint-types-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.52.0.tgz -> @typescript-eslint-types-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.52.0.tgz -> @typescript-eslint-typescript-estree-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.52.0.tgz -> @typescript-eslint-utils-8.52.0.tgz https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.52.0.tgz -> @typescript-eslint-visitor-keys-8.52.0.tgz https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.4.0.tgz https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz https://registry.yarnpkg.com/async/-/async-3.2.6.tgz https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz https://registry.yarnpkg.com/atomically/-/atomically-2.0.5.tgz https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz https://registry.yarnpkg.com/builder-util/-/builder-util-26.3.4.tgz https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.4.0.tgz https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.4.0.tgz https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.4.0.tgz https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.3.4.tgz https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz https://registry.yarnpkg.com/electron/-/electron-39.2.7.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.1.tgz https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz https://registry.yarnpkg.com/except/-/except-0.1.3.tgz https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz https://registry.yarnpkg.com/got/-/got-11.8.6.tgz https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-2.0.1.tgz https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz https://registry.yarnpkg.com/knip/-/knip-5.80.0.tgz https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.5.2.tgz https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz https://registry.yarnpkg.com/node-abi/-/node-abi-4.24.0.tgz https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz https://registry.yarnpkg.com/once/-/once-1.4.0.tgz https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz https://registry.yarnpkg.com/open/-/open-7.4.2.tgz https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.16.2.tgz https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.1.tgz https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz https://registry.yarnpkg.com/prettier/-/prettier-3.7.4.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.6.0.tgz https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-2.0.0.tgz https://registry.yarnpkg.com/stubborn-utils/-/stubborn-utils-1.0.2.tgz https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz https://registry.yarnpkg.com/tar/-/tar-7.5.3.tgz https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz https://registry.yarnpkg.com/tsx/-/tsx-4.21.0.tgz https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.5.tgz https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz https://registry.yarnpkg.com/which/-/which-2.0.2.tgz https://registry.yarnpkg.com/which/-/which-5.0.0.tgz https://registry.yarnpkg.com/which/-/which-6.0.0.tgz https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz https://registry.yarnpkg.com/zod/-/zod-4.3.5.tgz ) https://github.com/vector-im/element-desktop/archive/v1.12.9.tar.gz -> element-desktop-1.12.9.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=32e1cb73709176de7e5127951cdbb0b6 diff --git a/metadata/md5-cache/net-im/element-desktop-9999 b/metadata/md5-cache/net-im/element-desktop-9999 deleted file mode 100644 index c09f555f8fbb..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-9999 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs[corepack] >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile install postinst postrm setup unpack -DEPEND=~net-im/element-web-9999 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) electron-42? ( dev-util/electron:42 ) !electron-40? ( !electron-41? ( !electron-42? ( dev-util/electron:39 ) ) ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils git-r3 -IUSE=electron-40 electron-41 electron-42 native-modules +build-online -LICENSE=Apache-2.0 -PROPERTIES=live -RDEPEND=~net-im/element-web-9999 native-modules? ( dev-db/sqlcipher ) electron-40? ( dev-util/electron:40 ) electron-41? ( dev-util/electron:41 ) electron-42? ( dev-util/electron:42 ) !electron-40? ( !electron-41? ( !electron-42? ( dev-util/electron:39 ) ) ) -REQUIRED_USE=native-modules? ( build-online ) -RESTRICT=mirror build-online? ( network-sandbox ) -SLOT=0 -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f2d5b640e6ba0d2a17a126636abc3929 diff --git a/metadata/md5-cache/net-im/synapse-1.150.0 b/metadata/md5-cache/net-im/synapse-1.150.0 index 2cbd2938c6a8..5896551beb83 100644 --- a/metadata/md5-cache/net-im/synapse-1.150.0 +++ b/metadata/md5-cache/net-im/synapse-1.150.0 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://matrix.org/ https://github.com/element-hq/synapse INHERIT=cargo distutils-r1 multiprocessing optfeature systemd IUSE=postgres selinux systemd test debug python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug -KEYWORDS=~amd64 ~arm64 ~ppc64 +KEYWORDS=amd64 ~arm64 ~ppc64 LICENSE=|| ( AGPL-3+ Element-Commercial ) Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT Unicode-3.0 RDEPEND=acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bcrypt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bleach[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/canonicaljson-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] 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/ijson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/immutabledict[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jinja2-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/msgpack[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/netaddr[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/phonenumbers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pillow-10.0.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,webp] dev-python/prometheus-client[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1-modules[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pymacaroons[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyopenssl[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/python-multipart-0.0.12-r100[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/service-identity[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/signedjson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/sortedcontainers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/treq[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/twisted[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/unpaddedbase64[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) selinux? ( sec-policy/selinux-matrixd ) systemd? ( dev-python/python-systemd[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 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/element-hq/synapse/archive/v1.150.0.tar.gz -> synapse-1.150.0.gh.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anyhow/1.0.102/download -> anyhow-1.0.102.crate https://crates.io/api/v1/crates/arc-swap/1.7.1/download -> arc-swap-1.7.1.crate https://crates.io/api/v1/crates/atomic-waker/1.1.2/download -> atomic-waker-1.1.2.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.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.1/download -> bitflags-2.9.1.crate https://crates.io/api/v1/crates/blake2/0.10.6/download -> blake2-0.10.6.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/bumpalo/3.19.0/download -> bumpalo-3.19.0.crate https://crates.io/api/v1/crates/bytes/1.11.1/download -> bytes-1.11.1.crate https://crates.io/api/v1/crates/cc/1.2.30/download -> cc-1.2.30.crate https://crates.io/api/v1/crates/cfg-if/1.0.1/download -> cfg-if-1.0.1.crate https://crates.io/api/v1/crates/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/core-foundation/0.10.1/download -> core-foundation-0.10.1.crate https://crates.io/api/v1/crates/core_maths/0.1.1/download -> core_maths-0.1.1.crate https://crates.io/api/v1/crates/cpufeatures/0.2.17/download -> cpufeatures-0.2.17.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/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/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.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/futures-channel/0.3.32/download -> futures-channel-0.3.32.crate https://crates.io/api/v1/crates/futures-core/0.3.32/download -> futures-core-0.3.32.crate https://crates.io/api/v1/crates/futures-executor/0.3.32/download -> futures-executor-0.3.32.crate https://crates.io/api/v1/crates/futures-io/0.3.32/download -> futures-io-0.3.32.crate https://crates.io/api/v1/crates/futures-macro/0.3.32/download -> futures-macro-0.3.32.crate https://crates.io/api/v1/crates/futures-sink/0.3.32/download -> futures-sink-0.3.32.crate https://crates.io/api/v1/crates/futures-task/0.3.32/download -> futures-task-0.3.32.crate https://crates.io/api/v1/crates/futures-util/0.3.32/download -> futures-util-0.3.32.crate https://crates.io/api/v1/crates/futures/0.3.32/download -> futures-0.3.32.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.2.16/download -> getrandom-0.2.16.crate https://crates.io/api/v1/crates/getrandom/0.3.3/download -> getrandom-0.3.3.crate https://crates.io/api/v1/crates/h2/0.4.11/download -> h2-0.4.11.crate https://crates.io/api/v1/crates/hashbrown/0.15.4/download -> hashbrown-0.15.4.crate https://crates.io/api/v1/crates/headers-core/0.3.0/download -> headers-core-0.3.0.crate https://crates.io/api/v1/crates/headers/0.4.1/download -> headers-0.4.1.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/http-body-util/0.1.3/download -> http-body-util-0.1.3.crate https://crates.io/api/v1/crates/http-body/1.0.1/download -> http-body-1.0.1.crate https://crates.io/api/v1/crates/http/1.4.0/download -> http-1.4.0.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/hyper-rustls/0.27.7/download -> hyper-rustls-0.27.7.crate https://crates.io/api/v1/crates/hyper-util/0.1.16/download -> hyper-util-0.1.16.crate https://crates.io/api/v1/crates/hyper/1.6.0/download -> hyper-1.6.0.crate https://crates.io/api/v1/crates/icu_collections/2.0.0/download -> icu_collections-2.0.0.crate https://crates.io/api/v1/crates/icu_locale/2.0.0/download -> icu_locale-2.0.0.crate https://crates.io/api/v1/crates/icu_locale_core/2.0.0/download -> icu_locale_core-2.0.0.crate https://crates.io/api/v1/crates/icu_locale_data/2.0.0/download -> icu_locale_data-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer/2.0.0/download -> icu_normalizer-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer_data/2.0.0/download -> icu_normalizer_data-2.0.0.crate https://crates.io/api/v1/crates/icu_properties/2.0.1/download -> icu_properties-2.0.1.crate https://crates.io/api/v1/crates/icu_properties_data/2.0.1/download -> icu_properties_data-2.0.1.crate https://crates.io/api/v1/crates/icu_provider/2.0.0/download -> icu_provider-2.0.0.crate https://crates.io/api/v1/crates/icu_segmenter/2.0.1/download -> icu_segmenter-2.0.1.crate https://crates.io/api/v1/crates/icu_segmenter_data/2.0.0/download -> icu_segmenter_data-2.0.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.1/download -> idna_adapter-1.2.1.crate https://crates.io/api/v1/crates/indexmap/2.10.0/download -> indexmap-2.10.0.crate https://crates.io/api/v1/crates/indoc/2.0.6/download -> indoc-2.0.6.crate https://crates.io/api/v1/crates/ipnet/2.11.0/download -> ipnet-2.11.0.crate https://crates.io/api/v1/crates/iri-string/0.7.8/download -> iri-string-0.7.8.crate https://crates.io/api/v1/crates/itoa/1.0.15/download -> itoa-1.0.15.crate https://crates.io/api/v1/crates/js-sys/0.3.77/download -> js-sys-0.3.77.crate https://crates.io/api/v1/crates/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/libc/0.2.174/download -> libc-0.2.174.crate https://crates.io/api/v1/crates/libm/0.2.15/download -> libm-0.2.15.crate https://crates.io/api/v1/crates/litemap/0.8.0/download -> litemap-0.8.0.crate https://crates.io/api/v1/crates/log/0.4.29/download -> log-0.4.29.crate https://crates.io/api/v1/crates/lru-slab/0.1.2/download -> lru-slab-0.1.2.crate https://crates.io/api/v1/crates/memchr/2.7.5/download -> memchr-2.7.5.crate https://crates.io/api/v1/crates/memoffset/0.9.1/download -> memoffset-0.9.1.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/mio/1.0.4/download -> mio-1.0.4.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/openssl-probe/0.1.6/download -> openssl-probe-0.1.6.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/pin-project-lite/0.2.16/download -> pin-project-lite-0.2.16.crate https://crates.io/api/v1/crates/portable-atomic/1.11.1/download -> portable-atomic-1.11.1.crate https://crates.io/api/v1/crates/potential_utf/0.1.2/download -> potential_utf-0.1.2.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/proc-macro2/1.0.95/download -> proc-macro2-1.0.95.crate https://crates.io/api/v1/crates/pyo3-build-config/0.27.2/download -> pyo3-build-config-0.27.2.crate https://crates.io/api/v1/crates/pyo3-ffi/0.27.2/download -> pyo3-ffi-0.27.2.crate https://crates.io/api/v1/crates/pyo3-log/0.13.3/download -> pyo3-log-0.13.3.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.27.2/download -> pyo3-macros-backend-0.27.2.crate https://crates.io/api/v1/crates/pyo3-macros/0.27.2/download -> pyo3-macros-0.27.2.crate https://crates.io/api/v1/crates/pyo3/0.27.2/download -> pyo3-0.27.2.crate https://crates.io/api/v1/crates/pythonize/0.27.0/download -> pythonize-0.27.0.crate https://crates.io/api/v1/crates/quinn-proto/0.11.14/download -> quinn-proto-0.11.14.crate https://crates.io/api/v1/crates/quinn-udp/0.5.13/download -> quinn-udp-0.5.13.crate https://crates.io/api/v1/crates/quinn/0.11.8/download -> quinn-0.11.8.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.3.0/download -> r-efi-5.3.0.crate https://crates.io/api/v1/crates/rand/0.9.2/download -> rand-0.9.2.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.9.3/download -> rand_core-0.9.3.crate https://crates.io/api/v1/crates/regex-automata/0.4.13/download -> regex-automata-0.4.13.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.12.3/download -> regex-1.12.3.crate https://crates.io/api/v1/crates/reqwest/0.12.28/download -> reqwest-0.12.28.crate https://crates.io/api/v1/crates/ring/0.17.14/download -> ring-0.17.14.crate https://crates.io/api/v1/crates/rustc-hash/2.1.1/download -> rustc-hash-2.1.1.crate https://crates.io/api/v1/crates/rustls-native-certs/0.8.1/download -> rustls-native-certs-0.8.1.crate https://crates.io/api/v1/crates/rustls-pki-types/1.12.0/download -> rustls-pki-types-1.12.0.crate https://crates.io/api/v1/crates/rustls-webpki/0.103.4/download -> rustls-webpki-0.103.4.crate https://crates.io/api/v1/crates/rustls/0.23.31/download -> rustls-0.23.31.crate https://crates.io/api/v1/crates/rustversion/1.0.21/download -> rustversion-1.0.21.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/schannel/0.1.27/download -> schannel-0.1.27.crate https://crates.io/api/v1/crates/security-framework-sys/2.14.0/download -> security-framework-sys-2.14.0.crate https://crates.io/api/v1/crates/security-framework/3.2.0/download -> security-framework-3.2.0.crate https://crates.io/api/v1/crates/serde/1.0.228/download -> serde-1.0.228.crate https://crates.io/api/v1/crates/serde_core/1.0.228/download -> serde_core-1.0.228.crate https://crates.io/api/v1/crates/serde_derive/1.0.228/download -> serde_derive-1.0.228.crate https://crates.io/api/v1/crates/serde_json/1.0.149/download -> serde_json-1.0.149.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/sha2/0.10.9/download -> sha2-0.10.9.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/slab/0.4.11/download -> slab-0.4.11.crate https://crates.io/api/v1/crates/smallvec/1.15.1/download -> smallvec-1.15.1.crate https://crates.io/api/v1/crates/socket2/0.5.10/download -> socket2-0.5.10.crate https://crates.io/api/v1/crates/socket2/0.6.0/download -> socket2-0.6.0.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/subtle/2.6.1/download -> subtle-2.6.1.crate https://crates.io/api/v1/crates/syn/2.0.104/download -> syn-2.0.104.crate https://crates.io/api/v1/crates/sync_wrapper/1.0.2/download -> sync_wrapper-1.0.2.crate https://crates.io/api/v1/crates/synstructure/0.13.2/download -> synstructure-0.13.2.crate https://crates.io/api/v1/crates/target-lexicon/0.13.2/download -> target-lexicon-0.13.2.crate https://crates.io/api/v1/crates/thiserror-impl/2.0.12/download -> thiserror-impl-2.0.12.crate https://crates.io/api/v1/crates/thiserror/2.0.12/download -> thiserror-2.0.12.crate https://crates.io/api/v1/crates/tinystr/0.8.1/download -> tinystr-0.8.1.crate https://crates.io/api/v1/crates/tinyvec/1.9.0/download -> tinyvec-1.9.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/tokio-rustls/0.26.2/download -> tokio-rustls-0.26.2.crate https://crates.io/api/v1/crates/tokio-util/0.7.15/download -> tokio-util-0.7.15.crate https://crates.io/api/v1/crates/tokio/1.49.0/download -> tokio-1.49.0.crate https://crates.io/api/v1/crates/tower-http/0.6.8/download -> tower-http-0.6.8.crate https://crates.io/api/v1/crates/tower-layer/0.3.3/download -> tower-layer-0.3.3.crate https://crates.io/api/v1/crates/tower-service/0.3.3/download -> tower-service-0.3.3.crate https://crates.io/api/v1/crates/tower/0.5.2/download -> tower-0.5.2.crate https://crates.io/api/v1/crates/tracing-core/0.1.34/download -> tracing-core-0.1.34.crate https://crates.io/api/v1/crates/tracing/0.1.41/download -> tracing-0.1.41.crate https://crates.io/api/v1/crates/try-lock/0.2.5/download -> try-lock-0.2.5.crate https://crates.io/api/v1/crates/typenum/1.18.0/download -> typenum-1.18.0.crate https://crates.io/api/v1/crates/ulid/1.2.1/download -> ulid-1.2.1.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/unindent/0.2.4/download -> unindent-0.2.4.crate https://crates.io/api/v1/crates/untrusted/0.9.0/download -> untrusted-0.9.0.crate https://crates.io/api/v1/crates/url/2.5.4/download -> url-2.5.4.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/version_check/0.9.5/download -> version_check-0.9.5.crate https://crates.io/api/v1/crates/want/0.3.1/download -> want-0.3.1.crate https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download -> wasi-0.11.1+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/wasm-bindgen-backend/0.2.100/download -> wasm-bindgen-backend-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.50/download -> wasm-bindgen-futures-0.4.50.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.100/download -> wasm-bindgen-macro-support-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.100/download -> wasm-bindgen-macro-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.100/download -> wasm-bindgen-shared-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.100/download -> wasm-bindgen-0.2.100.crate https://crates.io/api/v1/crates/wasm-streams/0.4.2/download -> wasm-streams-0.4.2.crate https://crates.io/api/v1/crates/web-sys/0.3.77/download -> web-sys-0.3.77.crate https://crates.io/api/v1/crates/web-time/1.1.0/download -> web-time-1.1.0.crate https://crates.io/api/v1/crates/windows-link/0.2.1/download -> windows-link-0.2.1.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-sys/0.61.2/download -> windows-sys-0.61.2.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/writeable/0.6.1/download -> writeable-0.6.1.crate https://crates.io/api/v1/crates/yoke-derive/0.8.0/download -> yoke-derive-0.8.0.crate https://crates.io/api/v1/crates/yoke/0.8.0/download -> yoke-0.8.0.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.26/download -> zerocopy-derive-0.8.26.crate https://crates.io/api/v1/crates/zerocopy/0.8.26/download -> zerocopy-0.8.26.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/zeroize/1.8.1/download -> zeroize-1.8.1.crate https://crates.io/api/v1/crates/zerotrie/0.2.2/download -> zerotrie-0.2.2.crate https://crates.io/api/v1/crates/zerovec-derive/0.11.1/download -> zerovec-derive-0.11.1.crate https://crates.io/api/v1/crates/zerovec/0.11.2/download -> zerovec-0.11.2.crate https://crates.io/api/v1/crates/zmij/1.0.19/download -> zmij-1.0.19.crate _eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=7593f35b3736aea9d867b3d986253ab1 +_md5_=a678d2f550f466cb1db1a7ca1f0c9ff4 diff --git a/metadata/md5-cache/net-libs/gnutls-3.8.13 b/metadata/md5-cache/net-libs/gnutls-3.8.13 new file mode 100644 index 000000000000..da60116c78ec --- /dev/null +++ b/metadata/md5-cache/net-libs/gnutls-3.8.13 @@ -0,0 +1,17 @@ +BDEPEND=dev-build/gtk-doc-am app-arch/brotli >=virtual/pkgconfig-0-r1 doc? ( dev-util/gtk-doc ) nls? ( sys-devel/gettext ) test-full? ( app-crypt/dieharder || ( sys-libs/libfaketime >=app-misc/datefudge-1.22 ) dev-libs/softhsm:2[-bindist(-)] net-dialup/ppp net-misc/socat ) verify-sig? ( >=sec-keys/openpgp-keys-gnutls-20240415 ) >=app-portage/elt-patches-20250306 verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-libs/libtasn1-4.9:=[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/libunistring:=[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/nettle-3.10:=[gmp,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/gmp-5.1.3-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(-)?] brotli? ( >=app-arch/brotli-1.0.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(-)?] ) dane? ( >=net-dns/unbound-1.4.20:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( >=virtual/libintl-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(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) post-quantum? ( >=dev-libs/leancrypto-1.2.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(-)?] ) idn? ( >=net-dns/libidn2-0.16-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(-)?] ) zlib? ( virtual/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(-)?] ) zstd? ( >=app-arch/zstd-1.3.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(-)?] ) test-full? ( sys-libs/libseccomp ) systemtap? ( dev-debug/systemtap ) +DESCRIPTION=Secure communications library implementing the SSL, TLS and DTLS protocols +EAPI=8 +HOMEPAGE=https://www.gnutls.org/ +INHERIT=libtool multilib-minimal verify-sig +IUSE=brotli +cxx dane doc examples +idn nls +openssl pkcs11 +post-quantum sslv2 sslv3 systemtap static-libs test test-full +tls-heartbeat tools zlib 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 ~m68k ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-3 LGPL-2.1+ +RDEPEND=>=dev-libs/libtasn1-4.9:=[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/libunistring:=[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/nettle-3.10:=[gmp,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/gmp-5.1.3-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(-)?] brotli? ( >=app-arch/brotli-1.0.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(-)?] ) dane? ( >=net-dns/unbound-1.4.20:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( >=virtual/libintl-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(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) post-quantum? ( >=dev-libs/leancrypto-1.2.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(-)?] ) idn? ( >=net-dns/libidn2-0.16-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(-)?] ) zlib? ( virtual/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(-)?] ) zstd? ( >=app-arch/zstd-1.3.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(-)?] ) +REQUIRED_USE=test-full? ( cxx dane doc examples idn nls openssl pkcs11 tls-heartbeat tools ) +RESTRICT=!test? ( test ) +SLOT=0/30.30 +SRC_URI=mirror://gnupg/gnutls/v3.8/gnutls-3.8.13.tar.xz verify-sig? ( mirror://gnupg/gnutls/v3.8/gnutls-3.8.13.tar.xz.sig ) +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=1838a3b68ab6c1ffa8a15a02534e8688 diff --git a/metadata/md5-cache/net-libs/libhackrf-2024.02.1-r1 b/metadata/md5-cache/net-libs/libhackrf-2024.02.1-r1 index ba5778fc6f64..647c67708cae 100644 --- a/metadata/md5-cache/net-libs/libhackrf-2024.02.1-r1 +++ b/metadata/md5-cache/net-libs/libhackrf-2024.02.1-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 SLOT=0/2024.02.1 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2024.02.1/hackrf-2024.02.1.tar.xz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a460dca1787c2ff11716783c349c2b32 diff --git a/metadata/md5-cache/net-libs/libhackrf-2026.01.3 b/metadata/md5-cache/net-libs/libhackrf-2026.01.3 index 361d747a478f..6aa1d6cdd198 100644 --- a/metadata/md5-cache/net-libs/libhackrf-2026.01.3 +++ b/metadata/md5-cache/net-libs/libhackrf-2026.01.3 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 SLOT=0/2026.01.3 SRC_URI=https://github.com/greatscottgadgets/hackrf/releases/download/v2026.01.3/hackrf-2026.01.3.tar.xz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c0278943acc8bcb91e25c62476f52c4f diff --git a/metadata/md5-cache/net-libs/libhackrf-9999 b/metadata/md5-cache/net-libs/libhackrf-9999 index 06c670a7aab9..aedb62e79981 100644 --- a/metadata/md5-cache/net-libs/libhackrf-9999 +++ b/metadata/md5-cache/net-libs/libhackrf-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=virtual/libusb:1 SLOT=0/9999 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c0278943acc8bcb91e25c62476f52c4f diff --git a/metadata/md5-cache/net-libs/libiio-0.26-r2 b/metadata/md5-cache/net-libs/libiio-0.26-r2 index 193b84659646..dcae19601cf4 100644 --- a/metadata/md5-cache/net-libs/libiio-0.26-r2 +++ b/metadata/md5-cache/net-libs/libiio-0.26-r2 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) pyth 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 ) ) SLOT=0/0.26 SRC_URI=https://github.com/analogdevicesinc/libiio/archive/v0.26.tar.gz -> libiio-0.26.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1e7b5b1ed046713b20dc7ec39e8f6e7e diff --git a/metadata/md5-cache/net-libs/libiio-0.26-r3 b/metadata/md5-cache/net-libs/libiio-0.26-r3 index 0381b5d72d91..01a2940490a5 100644 --- a/metadata/md5-cache/net-libs/libiio-0.26-r3 +++ b/metadata/md5-cache/net-libs/libiio-0.26-r3 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) pyth 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 ) ) SLOT=0/0.26 SRC_URI=https://github.com/analogdevicesinc/libiio/archive/v0.26.tar.gz -> libiio-0.26.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=62f966754060397fcf18dd29d40d84ce diff --git a/metadata/md5-cache/net-libs/libiio-0.26-r4 b/metadata/md5-cache/net-libs/libiio-0.26-r4 index de1c69fa2755..d717233be2b6 100644 --- a/metadata/md5-cache/net-libs/libiio-0.26-r4 +++ b/metadata/md5-cache/net-libs/libiio-0.26-r4 @@ -12,5 +12,5 @@ RDEPEND=python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) pyth 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 ) ) SLOT=0/0.26 SRC_URI=https://github.com/analogdevicesinc/libiio/archive/v0.26.tar.gz -> libiio-0.26.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c027dcc9dbccc5407bc6d63805f54d0a diff --git a/metadata/md5-cache/net-libs/libiio-9999 b/metadata/md5-cache/net-libs/libiio-9999 index e93e96bb3894..cbec126a31d6 100644 --- a/metadata/md5-cache/net-libs/libiio-9999 +++ b/metadata/md5-cache/net-libs/libiio-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=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 ) ) dev-libs/libxml2:= virtual/libusb:1 aio? ( dev-libs/libaio ) zeroconf? ( net-dns/avahi[dbus] ) 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 ) ) SLOT=0/9999 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=cc6ed3f6938c00a4c8a7a32a48ddfba4 diff --git a/metadata/md5-cache/net-libs/libqmi-1.32.4-r1 b/metadata/md5-cache/net-libs/libqmi-1.32.4-r1 index 109a2c003962..0a393a973457 100644 --- a/metadata/md5-cache/net-libs/libqmi-1.32.4-r1 +++ b/metadata/md5-cache/net-libs/libqmi-1.32.4-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.56 >=dev-libs/libgudev-232 introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) mbim? ( >=net-libs/libmbim-1.18.0 ) qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= ) SLOT=0/5.9 SRC_URI=https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/1.32.4/libqmi-1.32.4.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6be82b9b4987723cab24e08677322e4e diff --git a/metadata/md5-cache/net-libs/libqmi-1.36.0 b/metadata/md5-cache/net-libs/libqmi-1.36.0 index 6bdc448ddd93..88a3b99a8c97 100644 --- a/metadata/md5-cache/net-libs/libqmi-1.36.0 +++ b/metadata/md5-cache/net-libs/libqmi-1.36.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.56 >=dev-libs/libgudev-232 introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) mbim? ( >=net-libs/libmbim-1.18.0 ) qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= ) SLOT=0/5.11 SRC_URI=https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/1.36.0/libqmi-1.36.0.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=789ef72e0fada986dcd542db509b4a94 diff --git a/metadata/md5-cache/net-libs/libqmi-9999 b/metadata/md5-cache/net-libs/libqmi-9999 index 1bb42a1dbec5..6f82edef10b9 100644 --- a/metadata/md5-cache/net-libs/libqmi-9999 +++ b/metadata/md5-cache/net-libs/libqmi-9999 @@ -10,5 +10,5 @@ LICENSE=LGPL-2 PROPERTIES=live RDEPEND=>=dev-libs/glib-2.56 >=dev-libs/libgudev-232 introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) mbim? ( >=net-libs/libmbim-1.18.0 ) qrtr? ( >=net-libs/libqrtr-glib-1.0.0:= ) SLOT=0/5.11 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=dd6f908efeafe0f27f46684956bfb9e1 diff --git a/metadata/md5-cache/net-libs/libupnp-1.14.31 b/metadata/md5-cache/net-libs/libupnp-1.14.31 new file mode 100644 index 000000000000..e56e239da15a --- /dev/null +++ b/metadata/md5-cache/net-libs/libupnp-1.14.31 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 +DEFINED_PHASES=configure install prepare +DEPEND=ssl? ( dev-libs/openssl:0= ) +DESCRIPTION=An Portable Open Source UPnP Development Kit +EAPI=8 +HOMEPAGE=http://pupnp.sourceforge.net/ +INHERIT=autotools +IUSE=blocking-tcp debug doc +reuseaddr samples +ssl static-libs +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=BSD +RDEPEND=ssl? ( dev-libs/openssl:0= ) +SLOT=0/17 +SRC_URI=https://github.com/pupnp/pupnp/archive/release-1.14.31.tar.gz -> libupnp-1.14.31.tar.gz +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=0f89bbc78e1d778d2de0828c279250ac diff --git a/metadata/md5-cache/net-libs/libupnp-1.18.4 b/metadata/md5-cache/net-libs/libupnp-1.18.5 index 2b78ec732fb6..b4b0a39d6865 100644 --- a/metadata/md5-cache/net-libs/libupnp-1.18.4 +++ b/metadata/md5-cache/net-libs/libupnp-1.18.5 @@ -10,6 +10,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc LICENSE=BSD RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0/20 -SRC_URI=https://github.com/pupnp/pupnp/archive/release-1.18.4.tar.gz -> libupnp-1.18.4.tar.gz +SRC_URI=https://github.com/pupnp/pupnp/archive/release-1.18.5.tar.gz -> libupnp-1.18.5.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=de43590ec980c1fda466248fb58b3d45 +_md5_=f91f4a13c1e7e45f6a430c516c635310 diff --git a/metadata/md5-cache/net-libs/phodav-3.0-r1 b/metadata/md5-cache/net-libs/phodav-3.0-r1 index f8c4e7c8086c..db7529d65aed 100644 --- a/metadata/md5-cache/net-libs/phodav-3.0-r1 +++ b/metadata/md5-cache/net-libs/phodav-3.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.51.2:2 >=net-libs/libsoup-3.0.0:3.0 dev-libs/libxml2:= RESTRICT=!test? ( test ) SLOT=3.0 SRC_URI=mirror://gnome/sources/phodav/3.0/phodav-3.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fdeb16cd31a6a5ed8b39f8f67fd609fa diff --git a/metadata/md5-cache/net-misc/casync-2_p20250922 b/metadata/md5-cache/net-misc/casync-2_p20250922 index daa7f68dae97..3503d06efbc3 100644 --- a/metadata/md5-cache/net-misc/casync-2_p20250922 +++ b/metadata/md5-cache/net-misc/casync-2_p20250922 @@ -12,5 +12,5 @@ RDEPEND=app-arch/xz-utils:= app-arch/zstd:= dev-libs/openssl:0= net-misc/curl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/casync/archive/b4b7e5606f785572b78a43626a27a45fe3df2fbd.tar.gz -> casync-2_p20250922.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d4c98db5ecaccf755b45555b792263b1 diff --git a/metadata/md5-cache/net-misc/cgminer-4.10.0-r1 b/metadata/md5-cache/net-misc/cgminer-4.10.0-r1 index 2f74ef40a434..c1cbd4a9235d 100644 --- a/metadata/md5-cache/net-misc/cgminer-4.10.0-r1 +++ b/metadata/md5-cache/net-misc/cgminer-4.10.0-r1 @@ -12,5 +12,5 @@ RDEPEND=net-misc/curl >=dev-libs/jansson-2.6:= virtual/libusb:1[udev] ncurses? ( REQUIRED_USE=|| ( ants1 ants2 ants3 avalon avalon2 avalon4 avalon7 avalon-miner bab bflsc bitforce bitfury bitmine_A1 blockerupter cointerra drillbit hashfast hashratio icarus klondike knc minion modminer sp10 sp30 ) SLOT=0 SRC_URI=http://ck.kolivas.org/apps/cgminer/cgminer-4.10.0.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7e4f29a3b7127fba4e20038bb9f4e86f diff --git a/metadata/md5-cache/net-misc/frr-10.2.2 b/metadata/md5-cache/net-misc/frr-10.1.5 index c4544aaac349..449c42a29624 100644 --- a/metadata/md5-cache/net-misc/frr-10.2.2 +++ b/metadata/md5-cache/net-misc/frr-10.1.5 @@ -6,12 +6,12 @@ EAPI=8 HOMEPAGE=https://frrouting.org/ INHERIT=autotools pam python-single-r1 systemd IUSE=doc fpm grpc nhrp ospfapi pam rpki snmp 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 ~arm64 ~x86 +KEYWORDS=~amd64 ~arm64 ~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 ) acct-user/frr dev-libs/json-c:0= dev-libs/protobuf-c:0= >=net-libs/libyang-2.1.128 sys-libs/libcap sys-libs/readline:0= virtual/libcrypt:= grpc? ( net-libs/grpc:= ) nhrp? ( net-dns/c-ares:0= ) pam? ( sys-libs/pam ) rpki? ( >=net-libs/rtrlib-0.8.0[ssh] ) snmp? ( net-analyzer/net-snmp:= ) 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/10.2 -SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.2.2.tar.gz +SLOT=0/10.1 +SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.1.5.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=5de747b39659a8e2e22246ab324a14d1 +_md5_=48cd4db744d839732e47469aaa7d4bfa diff --git a/metadata/md5-cache/net-misc/frr-10.3.4 b/metadata/md5-cache/net-misc/frr-10.3.4 new file mode 100644 index 000000000000..9f8d22a1254e --- /dev/null +++ b/metadata/md5-cache/net-misc/frr-10.3.4 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/flex app-alternatives/yacc dev-libs/elfutils doc? ( dev-python/sphinx ) grpc? ( sys-apps/which ) sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 virtual/pkgconfig +DEFINED_PHASES=compile configure install 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 ) acct-user/frr dev-libs/json-c:0= dev-libs/protobuf-c:0= >=net-libs/libyang-2.1.128 sys-libs/libcap sys-libs/readline:0= virtual/libcrypt:= grpc? ( net-libs/grpc:= ) nhrp? ( net-dns/c-ares:0= ) pam? ( sys-libs/pam ) rpki? ( >=net-libs/rtrlib-0.8.0[ssh] ) snmp? ( net-analyzer/net-snmp:= ) elibc_musl? ( sys-libs/queue-standalone ) test? ( python_single_target_python3_10? ( dev-python/pytest[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pytest[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pytest[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pytest[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pytest[python_targets_python3_14(-)] ) dev-util/cunit ) +DESCRIPTION=The FRRouting Protocol Suite +EAPI=8 +HOMEPAGE=https://frrouting.org/ +INHERIT=out-of-source autotools pam python-single-r1 systemd +IUSE=doc fpm grpc nhrp ospfapi pam rpki snmp 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 ~arm64 ~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 ) acct-user/frr dev-libs/json-c:0= dev-libs/protobuf-c:0= >=net-libs/libyang-2.1.128 sys-libs/libcap sys-libs/readline:0= virtual/libcrypt:= grpc? ( net-libs/grpc:= ) nhrp? ( net-dns/c-ares:0= ) pam? ( sys-libs/pam ) rpki? ( >=net-libs/rtrlib-0.8.0[ssh] ) snmp? ( net-analyzer/net-snmp:= ) +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/10.3 +SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.3.4.tar.gz +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source 6b6854c4199b5eeb2cf123b7530b6b4e pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=c9661468335a6d7eb9246a5118ce1eb8 diff --git a/metadata/md5-cache/net-misc/frr-10.4.1 b/metadata/md5-cache/net-misc/frr-10.4.4 index 199a914b94c2..5ea56b6d3b3e 100644 --- a/metadata/md5-cache/net-misc/frr-10.4.1 +++ b/metadata/md5-cache/net-misc/frr-10.4.4 @@ -12,6 +12,6 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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/10.4 -SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.4.1.tar.gz +SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.4.4.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source 6b6854c4199b5eeb2cf123b7530b6b4e pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=24ebde1f61507a795e9b6109d6572a5e +_md5_=318ab7e3f87b9307e93288d4cc763a29 diff --git a/metadata/md5-cache/net-misc/frr-10.5.0 b/metadata/md5-cache/net-misc/frr-10.5.4 index fdb3462a1149..ef8d02dc9d7f 100644 --- a/metadata/md5-cache/net-misc/frr-10.5.0 +++ b/metadata/md5-cache/net-misc/frr-10.5.4 @@ -12,6 +12,6 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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/10.5 -SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.5.0.tar.gz +SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.5.4.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source 6b6854c4199b5eeb2cf123b7530b6b4e pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=24ebde1f61507a795e9b6109d6572a5e +_md5_=318ab7e3f87b9307e93288d4cc763a29 diff --git a/metadata/md5-cache/net-misc/frr-10.6.0-r1 b/metadata/md5-cache/net-misc/frr-10.6.1 index a637b8678465..770540ae95cc 100644 --- a/metadata/md5-cache/net-misc/frr-10.6.0-r1 +++ b/metadata/md5-cache/net-misc/frr-10.6.1 @@ -12,6 +12,6 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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/10.6 -SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.6.0.tar.gz +SRC_URI=https://github.com/FRRouting/frr/archive/frr-10.6.1.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source 6b6854c4199b5eeb2cf123b7530b6b4e pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 _md5_=318ab7e3f87b9307e93288d4cc763a29 diff --git a/metadata/md5-cache/net-misc/modemmanager-1.20.6 b/metadata/md5-cache/net-misc/modemmanager-1.20.6 index a014f701e364..8a4166ab1290 100644 --- a/metadata/md5-cache/net-misc/modemmanager-1.20.6 +++ b/metadata/md5-cache/net-misc/modemmanager-1.20.6 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( elogind systemd ) qrtr? ( qmi ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/archive/1.20.6/ModemManager-1.20.6.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=7fb275285549deb6690402b186af2d11 diff --git a/metadata/md5-cache/net-misc/modemmanager-1.24.0 b/metadata/md5-cache/net-misc/modemmanager-1.24.0 index e4ac3fd2dc2d..2da1e4600e73 100644 --- a/metadata/md5-cache/net-misc/modemmanager-1.24.0 +++ b/metadata/md5-cache/net-misc/modemmanager-1.24.0 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( elogind systemd ) qrtr? ( qmi ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/archive/1.24.0/ModemManager-1.24.0.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d24b8d572bc4d406c475395fe2556bd6 diff --git a/metadata/md5-cache/net-misc/modemmanager-1.24.2 b/metadata/md5-cache/net-misc/modemmanager-1.24.2 index e72f9b5e5d9a..19dd3ec738c7 100644 --- a/metadata/md5-cache/net-misc/modemmanager-1.24.2 +++ b/metadata/md5-cache/net-misc/modemmanager-1.24.2 @@ -14,5 +14,5 @@ REQUIRED_USE=?? ( elogind systemd ) qrtr? ( qmi ) vala? ( introspection ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/archive/1.24.2/ModemManager-1.24.2.tar.bz2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=7a6689bc568e8e6ce0d30a0f9bcc4ce9 diff --git a/metadata/md5-cache/net-misc/netifrc-0.7.13 b/metadata/md5-cache/net-misc/netifrc-0.7.13 index 1207a3ce4c98..64689375652b 100644 --- a/metadata/md5-cache/net-misc/netifrc-0.7.13 +++ b/metadata/md5-cache/net-misc/netifrc-0.7.13 @@ -10,5 +10,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=sys-apps/gentoo-functions >=sys-apps/openrc-0.15 dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] sys-apps/busybox ) ) SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/netifrc.git/snapshot/netifrc-0.7.13.tar.bz2 -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=86124d429a24e52f1c961bc3b1172226 diff --git a/metadata/md5-cache/net-misc/netifrc-0.7.14 b/metadata/md5-cache/net-misc/netifrc-0.7.14 index b24a913c83f0..ee87a760742b 100644 --- a/metadata/md5-cache/net-misc/netifrc-0.7.14 +++ b/metadata/md5-cache/net-misc/netifrc-0.7.14 @@ -10,5 +10,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=sys-apps/gentoo-functions >=sys-apps/openrc-0.15 dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] sys-apps/busybox ) ) SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/netifrc.git/snapshot/netifrc-0.7.14.tar.bz2 -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=685fa598619dcb85dcb7ce1cc0bc828b diff --git a/metadata/md5-cache/net-misc/netifrc-9999 b/metadata/md5-cache/net-misc/netifrc-9999 index 36cba8ba1ea5..b14fe76d415f 100644 --- a/metadata/md5-cache/net-misc/netifrc-9999 +++ b/metadata/md5-cache/net-misc/netifrc-9999 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-2 PROPERTIES=live RDEPEND=sys-apps/gentoo-functions >=sys-apps/openrc-0.15 dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] sys-apps/busybox ) ) SLOT=0 -_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=git-r3 7b584b5dc33e3bc66ff5b9271bf41764 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6c6205de2f7c2e448ad702b04019eeee diff --git a/metadata/md5-cache/net-misc/networkmanager-1.52.1 b/metadata/md5-cache/net-misc/networkmanager-1.52.1 index d30f229b2018..369277a439a7 100644 --- a/metadata/md5-cache/net-misc/networkmanager-1.52.1 +++ b/metadata/md5-cache/net-misc/networkmanager-1.52.1 @@ -13,5 +13,5 @@ REQUIRED_USE=bluetooth? ( modemmanager ) connection-sharing? ( || ( iptables nft RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/releases/1.52.1/downloads/NetworkManager-1.52.1.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 _md5_=bb761d4d46ff5f6996b28d81e14f517c diff --git a/metadata/md5-cache/net-misc/networkmanager-1.54.1 b/metadata/md5-cache/net-misc/networkmanager-1.54.1 index 577a71da2f4d..43cadd9c3adb 100644 --- a/metadata/md5-cache/net-misc/networkmanager-1.54.1 +++ b/metadata/md5-cache/net-misc/networkmanager-1.54.1 @@ -13,5 +13,5 @@ REQUIRED_USE=bluetooth? ( modemmanager ) connection-sharing? ( || ( iptables nft RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/releases/1.54.1/downloads/NetworkManager-1.54.1.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 _md5_=12a672b9b7922db5a9fded596597b305 diff --git a/metadata/md5-cache/net-misc/networkmanager-1.54.3 b/metadata/md5-cache/net-misc/networkmanager-1.54.3 index c5af93b54322..958351053e8b 100644 --- a/metadata/md5-cache/net-misc/networkmanager-1.54.3 +++ b/metadata/md5-cache/net-misc/networkmanager-1.54.3 @@ -13,5 +13,5 @@ REQUIRED_USE=bluetooth? ( modemmanager ) connection-sharing? ( || ( iptables nft RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/releases/1.54.3/downloads/NetworkManager-1.54.3.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 _md5_=728d8e885909e12cf82d93d85e2ee4c7 diff --git a/metadata/md5-cache/net-misc/networkmanager-1.56.0 b/metadata/md5-cache/net-misc/networkmanager-1.56.0 index 9c551813eacf..8d73502c7311 100644 --- a/metadata/md5-cache/net-misc/networkmanager-1.56.0 +++ b/metadata/md5-cache/net-misc/networkmanager-1.56.0 @@ -13,5 +13,5 @@ REQUIRED_USE=bluetooth? ( modemmanager ) connection-sharing? ( || ( iptables nft RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/releases/1.56.0/downloads/NetworkManager-1.56.0.tar.xz -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 virtualx 9741d451eb64ea8bb9faee90d68a9b68 _md5_=56a6d19cf5963c758f79b07b2c0143c9 diff --git a/metadata/md5-cache/net-misc/r8152-2.20.1-r1 b/metadata/md5-cache/net-misc/r8152-2.20.1-r1 index d5f88836c3b7..e5eb40d44936 100644 --- a/metadata/md5-cache/net-misc/r8152-2.20.1-r1 +++ b/metadata/md5-cache/net-misc/r8152-2.20.1-r1 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://github.com/jayofdoom/realtek-r8152-unchanged/archive/refs/tags/v2.20.1.tar.gz -> r8152-2.20.1.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7afcc18374c3d12754b9d5c3eb7580c3 diff --git a/metadata/md5-cache/net-misc/r8152-2.21.4 b/metadata/md5-cache/net-misc/r8152-2.21.4 index 9a31d211b37f..7f4ac379e420 100644 --- a/metadata/md5-cache/net-misc/r8152-2.21.4 +++ b/metadata/md5-cache/net-misc/r8152-2.21.4 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://github.com/jayofdoom/realtek-r8152-unchanged/archive/refs/tags/v2.21.4.tar.gz -> r8152-2.21.4.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=16f4b0ba8c230c6898239331f25997f4 diff --git a/metadata/md5-cache/net-misc/sunshine-2025.924.154138 b/metadata/md5-cache/net-misc/sunshine-2025.924.154138 index 2c0e885e16f6..9eb9e61542a3 100644 --- a/metadata/md5-cache/net-misc/sunshine-2025.924.154138 +++ b/metadata/md5-cache/net-misc/sunshine-2025.924.154138 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/libevdev dev-libs/openssl:= media-libs/opus net-libs/miniupnpc: REQUIRED_USE=arm64? ( cpu_flags_arm_v8 ) cpu_flags_arm_v8? ( cpu_flags_arm_vfpv3 cpu_flags_arm_neon ) cpu_flags_arm_neon? ( cpu_flags_arm_vfp arm? ( cpu_flags_arm_thumb2 ) ) cpu_flags_arm_vfpv3? ( cpu_flags_arm_vfp ) cpu_flags_arm_thumb2? ( cpu_flags_arm_v6 ) cpu_flags_arm_v6? ( arm? ( cpu_flags_arm_thumb ) ) cpu_flags_ppc_vsx? ( cpu_flags_ppc_altivec ) cpu_flags_ppc_vsx2? ( cpu_flags_ppc_vsx ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) || ( cuda libdrm wayland X ) SLOT=0 SRC_URI=https://github.com/LizardByte/Sunshine/archive/refs/tags/v2025.924.154138.tar.gz -> sunshine-2025.924.154138.tar.gz https://github.com/LizardByte/build-deps/archive/e87b7cec9c3a01cb671cdd8ba19fe443105412d4.tar.gz -> LizardByte-build-deps-e87b7cec9c3a01cb671cdd8ba19fe443105412d4.tar.gz https://github.com/LizardByte/libdisplaydevice/archive/v2025.612.225826.tar.gz -> libdisplaydevice-2025.612.225826.tar.gz https://github.com/cgutman/enet/archive/115a10baa1d7f291ff5b870765610fd3b4a6e43c.tar.gz -> moonlight-enet-115a10baa1d7f291ff5b870765610fd3b4a6e43c.tar.gz https://github.com/games-on-whales/inputtino/archive/504f0abc7da8ebc351f8300fb2ed98db5438ee48.tar.gz -> inputtino-504f0abc7da8ebc351f8300fb2ed98db5438ee48.tar.gz https://github.com/moonlight-stream/moonlight-common-c/archive/5f2280183cb62cba1052894d76e64e5f4153377d.tar.gz -> moonlight-common-c-5f2280183cb62cba1052894d76e64e5f4153377d.tar.gz https://github.com/sleepybishop/nanors/archive/19f07b513e924e471cadd141943c1ec4adc8d0e0.tar.gz -> nanors-19f07b513e924e471cadd141943c1ec4adc8d0e0.tar.gz https://github.com/LizardByte/tray/archive/0309a7cb84aad25079b60c40d1eae0bacd05b26d.tar.gz -> LizardByte-tray-0309a7cb84aad25079b60c40d1eae0bacd05b26d.tar.gz https://gitlab.com/eidheim/Simple-Web-Server/-/archive/187f798d54a9c6cee742f2eb2c54e9ba26f5a385/Simple-Web-Server-187f798d54a9c6cee742f2eb2c54e9ba26f5a385.tar.bz2 https://gitlab.freedesktop.org/wlroots/wlr-protocols/-/archive/a741f0ac5d655338a5100fc34bc8cec87d237346/wlr-protocols-a741f0ac5d655338a5100fc34bc8cec87d237346.tar.bz2 https://ffmpeg.org/releases/ffmpeg-8.0.tar.xz https://dev.gentoo.org/~chewi/distfiles/sunshine-assets-2025.924.154138.tar.xz https://github.com/boostorg/boost/releases/download/boost-1.87.0/boost-1.87.0-cmake.tar.xz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=259061155b3815b167f08faccf0de934 diff --git a/metadata/md5-cache/net-misc/sunshine-9999 b/metadata/md5-cache/net-misc/sunshine-9999 index 9acf89838cfa..246f6849aa2c 100644 --- a/metadata/md5-cache/net-misc/sunshine-9999 +++ b/metadata/md5-cache/net-misc/sunshine-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=>=dev-libs/boost-1.89:=[nls] dev-libs/libevdev dev-libs/openssl:= media-libs/opus net-libs/miniupnpc:= net-misc/curl || ( media-libs/libpulse media-sound/apulse[sdk] ) libdrm? ( sys-libs/libcap x11-libs/libdrm ) svt-av1? ( media-libs/svt-av1:= ) trayicon? ( dev-libs/libayatana-appindicator x11-libs/libnotify ) vaapi? ( media-libs/libva:=[wayland?,X?] ) wayland? ( dev-libs/wayland x11-libs/libdrm ) X? ( x11-libs/libX11 ) x264? ( media-libs/x264:= ) x265? ( media-libs/x265:= ) media-libs/mesa[vaapi?] cuda? ( x11-drivers/nvidia-drivers ) vulkan? ( media-libs/vulkan-loader ) X? ( x11-libs/libxcb x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst ) REQUIRED_USE=arm64? ( cpu_flags_arm_v8 ) cpu_flags_arm_v8? ( cpu_flags_arm_vfpv3 cpu_flags_arm_neon ) cpu_flags_arm_neon? ( cpu_flags_arm_vfp arm? ( cpu_flags_arm_thumb2 ) ) cpu_flags_arm_vfpv3? ( cpu_flags_arm_vfp ) cpu_flags_arm_thumb2? ( cpu_flags_arm_v6 ) cpu_flags_arm_v6? ( arm? ( cpu_flags_arm_thumb ) ) cpu_flags_ppc_vsx? ( cpu_flags_ppc_altivec ) cpu_flags_ppc_vsx2? ( cpu_flags_ppc_vsx ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) || ( cuda libdrm wayland X ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=cc2da4e87d1a571120dc4bb8f1873328 diff --git a/metadata/md5-cache/net-p2p/trezord-go-2.0.33 b/metadata/md5-cache/net-p2p/trezord-go-2.0.33 index 460b33d76f86..0ca5143cac1b 100644 --- a/metadata/md5-cache/net-p2p/trezord-go-2.0.33 +++ b/metadata/md5-cache/net-p2p/trezord-go-2.0.33 @@ -11,5 +11,5 @@ LICENSE=LGPL-3 RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/trezor/trezord-go/archive/refs/tags/v2.0.33.tar.gz -> trezord-go-2.0.33.tar.gz mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/felixge/httpsnoop/@v/v1.0.1.zip -> github.com%2Ffelixge%2Fhttpsnoop%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/felixge/httpsnoop/@v/v1.0.1.mod -> github.com%2Ffelixge%2Fhttpsnoop%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/gorilla/csrf/@v/v1.7.0.zip -> github.com%2Fgorilla%2Fcsrf%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/gorilla/csrf/@v/v1.7.0.mod -> github.com%2Fgorilla%2Fcsrf%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/gorilla/handlers/@v/v1.5.1.zip -> github.com%2Fgorilla%2Fhandlers%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/gorilla/handlers/@v/v1.5.1.mod -> github.com%2Fgorilla%2Fhandlers%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/gorilla/mux/@v/v1.8.0.zip -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/gorilla/mux/@v/v1.8.0.mod -> github.com%2Fgorilla%2Fmux%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/gorilla/securecookie/@v/v1.1.1.zip -> github.com%2Fgorilla%2Fsecurecookie%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/gorilla/securecookie/@v/v1.1.1.mod -> github.com%2Fgorilla%2Fsecurecookie%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.zip mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/natefinch/lumberjack.v2/@v/v2.0.0.zip -> gopkg.in%2Fnatefinch%2Flumberjack.v2%2F@v%2Fv2.0.0.zip mirror://goproxy//gopkg.in/natefinch/lumberjack.v2/@v/v2.0.0.mod -> gopkg.in%2Fnatefinch%2Flumberjack.v2%2F@v%2Fv2.0.0.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.4.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=483f7706aa59056596a323f90fc980d6 diff --git a/metadata/md5-cache/net-print/hplip-3.25.8 b/metadata/md5-cache/net-print/hplip-3.25.8 index d95d26a2ce50..0ecd25cedbf0 100644 --- a/metadata/md5-cache/net-print/hplip-3.25.8 +++ b/metadata/md5-cache/net-print/hplip-3.25.8 @@ -12,5 +12,5 @@ RDEPEND=net-print/cups media-libs/libjpeg-turbo:0 hpijs? ( net-print/cups-filter 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://downloads.sourceforge.net/project/hplip/hplip/3.25.8/hplip-3.25.8.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.25.6-patches-2.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fc65602fcb12f3108b001c587541c50e diff --git a/metadata/md5-cache/net-print/hplip-3.25.8-r1 b/metadata/md5-cache/net-print/hplip-3.25.8-r1 index a331a9e40c56..51a1dd8b229a 100644 --- a/metadata/md5-cache/net-print/hplip-3.25.8-r1 +++ b/metadata/md5-cache/net-print/hplip-3.25.8-r1 @@ -12,5 +12,5 @@ RDEPEND=net-print/cups media-libs/libjpeg-turbo:0 hpijs? ( net-print/cups-filter 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://downloads.sourceforge.net/project/hplip/hplip/3.25.8/hplip-3.25.8.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.25.6-patches-2.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=42a96c9208ea55752fac590e310b049d diff --git a/metadata/md5-cache/net-wireless/aic8800-1.0.3 b/metadata/md5-cache/net-wireless/aic8800-1.0.3 index fe34dfade4ce..c523c0b4696e 100644 --- a/metadata/md5-cache/net-wireless/aic8800-1.0.3 +++ b/metadata/md5-cache/net-wireless/aic8800-1.0.3 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ firmware? ( freedist ) RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://linux.brostrend.com/aic8800-dkms.deb -> aic8800-1.0.3.deb -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=0382443488723759ce57ee9df77752c6 diff --git a/metadata/md5-cache/net-wireless/aic8800-1.0.5 b/metadata/md5-cache/net-wireless/aic8800-1.0.5 index b4c24e5bb35c..1b00d6788fc1 100644 --- a/metadata/md5-cache/net-wireless/aic8800-1.0.5 +++ b/metadata/md5-cache/net-wireless/aic8800-1.0.5 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ firmware? ( freedist ) RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://linux.brostrend.com/aic8800-dkms.deb -> aic8800-1.0.5.deb -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=0382443488723759ce57ee9df77752c6 diff --git a/metadata/md5-cache/net-wireless/aic8800-1.0.6 b/metadata/md5-cache/net-wireless/aic8800-1.0.6 index af0b528860a0..ad3232a34b15 100644 --- a/metadata/md5-cache/net-wireless/aic8800-1.0.6 +++ b/metadata/md5-cache/net-wireless/aic8800-1.0.6 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ firmware? ( freedist ) RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://linux.brostrend.com/aic8800-dkms.deb -> aic8800-1.0.6.deb -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=b4a4d72f9de830b267ec5a89a2acb637 diff --git a/metadata/md5-cache/net-wireless/airspy-1.0.10 b/metadata/md5-cache/net-wireless/airspy-1.0.10 index 6eda0c5cbe4a..394344433294 100644 --- a/metadata/md5-cache/net-wireless/airspy-1.0.10 +++ b/metadata/md5-cache/net-wireless/airspy-1.0.10 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/udev virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/airspy/host/archive/v1.0.10.tar.gz -> airspy-1.0.10.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b917ca422f555ef4ab966736fe5451b4 diff --git a/metadata/md5-cache/net-wireless/airspy-9999 b/metadata/md5-cache/net-wireless/airspy-9999 index 279d5b7ebc68..bf738f5f3756 100644 --- a/metadata/md5-cache/net-wireless/airspy-9999 +++ b/metadata/md5-cache/net-wireless/airspy-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=virtual/udev virtual/libusb:1 SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=adb709cdec244340ee515b620c5413fb diff --git a/metadata/md5-cache/net-wireless/airspyhf-1.6.8 b/metadata/md5-cache/net-wireless/airspyhf-1.6.8 index 6e6afc2a3cc0..8211722031e5 100644 --- a/metadata/md5-cache/net-wireless/airspyhf-1.6.8 +++ b/metadata/md5-cache/net-wireless/airspyhf-1.6.8 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-libs/libusb udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/airspy/airspyhf/archive/refs/tags/1.6.8.tar.gz -> airspyhf-1.6.8.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=25b5cb2a62de9806c058ffd19f797920 diff --git a/metadata/md5-cache/net-wireless/bladerf-2023.02-r1 b/metadata/md5-cache/net-wireless/bladerf-2023.02-r1 index ebeac62861b3..56a2eb740d84 100644 --- a/metadata/md5-cache/net-wireless/bladerf-2023.02-r1 +++ b/metadata/md5-cache/net-wireless/bladerf-2023.02-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/libusb-1.0.16:1 tecla? ( dev-libs/libtecla ) >=net-wireless/bladerf-firmware-2.4.0 >=net-wireless/bladerf-fpga-0.15.0 SLOT=0/2023.02 SRC_URI=https://github.com/Nuand/bladeRF/archive/2023.02.tar.gz -> bladerf-2023.02.tar.gz https://github.com/analogdevicesinc/no-OS/archive/0bba46e6f6f75785a65d425ece37d0a04daf6157.tar.gz -> analogdevices-no-OS-0bba46.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=3ae93011e390cc9b388f7eac3468e6dc diff --git a/metadata/md5-cache/net-wireless/bladerf-2025.10 b/metadata/md5-cache/net-wireless/bladerf-2025.10 index dfa6dca1877a..1bf5feb6ec93 100644 --- a/metadata/md5-cache/net-wireless/bladerf-2025.10 +++ b/metadata/md5-cache/net-wireless/bladerf-2025.10 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/libusb-1.0.16:1 net-misc/curl sys-libs/ncurses:= tecla? ( dev-libs/libtecla ) >=net-wireless/bladerf-firmware-2.4.0 >=net-wireless/bladerf-fpga-0.15.0 SLOT=0/2025.10 SRC_URI=https://github.com/Nuand/bladeRF/archive/2025.10.tar.gz -> bladerf-2025.10.tar.gz https://github.com/analogdevicesinc/no-OS/archive/0bba46e6f6f75785a65d425ece37d0a04daf6157.tar.gz -> analogdevices-no-OS-0bba46.tar.gz https://github.com/Nuand/bladeRF-fsk/archive/fb903684036217b9db9dcd6be8007548e12a377e.tar.gz -> bladerf-fsk-fb90368.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f6f9f1b271603d61fbce9e6d709867e5 diff --git a/metadata/md5-cache/net-wireless/bladerf-9999 b/metadata/md5-cache/net-wireless/bladerf-9999 index 6354714f4941..ec87bb692cbf 100644 --- a/metadata/md5-cache/net-wireless/bladerf-9999 +++ b/metadata/md5-cache/net-wireless/bladerf-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ LGPL-2.1+ PROPERTIES=live RDEPEND=>=dev-libs/libusb-1.0.16:1 net-misc/curl sys-libs/ncurses:= tecla? ( dev-libs/libtecla ) >=net-wireless/bladerf-firmware-2.4.0 >=net-wireless/bladerf-fpga-0.15.0 SLOT=0/9999 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b0fc73efe18c1d81b0a305c096a3ea50 diff --git a/metadata/md5-cache/net-wireless/bluez-5.86 b/metadata/md5-cache/net-wireless/bluez-5.86 index cd23fa796dcb..a9da0bf73438 100644 --- a/metadata/md5-cache/net-wireless/bluez-5.86 +++ b/metadata/md5-cache/net-wireless/bluez-5.86 @@ -13,5 +13,5 @@ REQUIRED_USE=btpclient? ( mesh ) extra-tools? ( deprecated readline ) test? ( ^^ RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.86.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=90609eec4a5cffcc7fc2d1ad6d22ad89 diff --git a/metadata/md5-cache/net-wireless/bluez-5.86-r1 b/metadata/md5-cache/net-wireless/bluez-5.86-r1 index 99eb198222e7..5bcc887e4631 100644 --- a/metadata/md5-cache/net-wireless/bluez-5.86-r1 +++ b/metadata/md5-cache/net-wireless/bluez-5.86-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=btpclient? ( mesh ) extra-tools? ( deprecated readline ) test? ( ^^ RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.86.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7480411b4ca6317bed7580c99eecb6c3 diff --git a/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602-r1 b/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602-r1 index 2da4a362ce9e..b3595ea4071d 100644 --- a/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602-r1 +++ b/metadata/md5-cache/net-wireless/gr-scopy-0.0_p20220602-r1 @@ -13,4 +13,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 SLOT=0 SRC_URI=https://github.com/analogdevicesinc/gr-scopy/archive/a69ccb22578621a69acc187fc0d006b5a030a744.tar.gz -> gr-scopy-0.0_p20220602.tar.gz _eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=b197f90fee3cd9ba6c559219e6ef8d83 +_md5_=b7b122ad347abad6ba79d7a3d2c9aa0b diff --git a/metadata/md5-cache/net-wireless/gr-scopy-9999 b/metadata/md5-cache/net-wireless/gr-scopy-9999 index e592fb317395..0b1ba1979ddc 100644 --- a/metadata/md5-cache/net-wireless/gr-scopy-9999 +++ b/metadata/md5-cache/net-wireless/gr-scopy-9999 @@ -12,4 +12,4 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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 _eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=b197f90fee3cd9ba6c559219e6ef8d83 +_md5_=b7b122ad347abad6ba79d7a3d2c9aa0b diff --git a/metadata/md5-cache/net-wireless/kismet-2023.07.2 b/metadata/md5-cache/net-wireless/kismet-2023.07.2 index 6743008903b3..9015b96b9d14 100644 --- a/metadata/md5-cache/net-wireless/kismet-2023.07.2 +++ b/metadata/md5-cache/net-wireless/kismet-2023.07.2 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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/2023.07.2 SRC_URI=https://www.kismetwireless.net/code/kismet-2023-07-R2.tar.xz https://dev.gentoo.org/~zerochaos/distfiles/kismet-2023.07.1-stdint-fix.patch -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=cd379651338dad9d5a760978fa68f455 diff --git a/metadata/md5-cache/net-wireless/kismet-2025.09.1 b/metadata/md5-cache/net-wireless/kismet-2025.09.1 index cbb0429c7922..c295f96239c0 100644 --- a/metadata/md5-cache/net-wireless/kismet-2025.09.1 +++ b/metadata/md5-cache/net-wireless/kismet-2025.09.1 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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/2025.09.1 SRC_URI=https://www.kismetwireless.net/code/kismet-2025-09-R1.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=36e3b549fb06eeba63b8a57a9ee9a8db diff --git a/metadata/md5-cache/net-wireless/kismet-9999 b/metadata/md5-cache/net-wireless/kismet-9999 index ef68930d91aa..3d816341d19c 100644 --- a/metadata/md5-cache/net-wireless/kismet-9999 +++ b/metadata/md5-cache/net-wireless/kismet-9999 @@ -11,5 +11,5 @@ 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 ) mqtt? ( app-misc/mosquitto ) networkmanager? ( net-misc/networkmanager ) dev-libs/glib:2 dev-libs/elfutils dev-libs/openssl:= virtual/zlib:= dev-db/sqlite:3 net-libs/libwebsockets:=[client,lejp] kernel_linux? ( sys-libs/libcap dev-libs/libnl:3 net-libs/libpcap ) libusb? ( virtual/libusb:1 ) protobuf? ( dev-libs/protobuf-c:= <dev-libs/protobuf-26:= ) python_single_target_python3_10? ( protobuf? ( dev-python/protobuf[python_targets_python3_10(-)] ) dev-python/websockets[python_targets_python3_10(-)] ) python_single_target_python3_11? ( protobuf? ( dev-python/protobuf[python_targets_python3_11(-)] ) dev-python/websockets[python_targets_python3_11(-)] ) python_single_target_python3_12? ( protobuf? ( dev-python/protobuf[python_targets_python3_12(-)] ) dev-python/websockets[python_targets_python3_12(-)] ) python_single_target_python3_13? ( protobuf? ( dev-python/protobuf[python_targets_python3_13(-)] ) dev-python/websockets[python_targets_python3_13(-)] ) python_single_target_python3_14? ( protobuf? ( dev-python/protobuf[python_targets_python3_14(-)] ) dev-python/websockets[python_targets_python3_14(-)] ) lm-sensors? ( sys-apps/lm-sensors:= ) pcre? ( dev-libs/libpcre2:= ) suid? ( sys-libs/libcap ) ubertooth? ( net-wireless/ubertooth ) acct-user/kismet acct-group/kismet python_single_target_python3_10? ( dev-python/pyserial[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyserial[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyserial[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyserial[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pyserial[python_targets_python3_14(-)] ) rtlsdr? ( python_single_target_python3_10? ( dev-python/numpy[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/numpy[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/numpy[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/numpy[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/numpy[python_targets_python3_14(-)] ) net-wireless/rtl-sdr:= ) selinux? ( sec-policy/selinux-kismet ) 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/9999 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=36e3b549fb06eeba63b8a57a9ee9a8db diff --git a/metadata/md5-cache/net-wireless/osmo-fl2k-0.2.0 b/metadata/md5-cache/net-wireless/osmo-fl2k-0.2.0 index b28f2f0eb538..4ca144720a24 100644 --- a/metadata/md5-cache/net-wireless/osmo-fl2k-0.2.0 +++ b/metadata/md5-cache/net-wireless/osmo-fl2k-0.2.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/libusb:1 media-sound/sox sys-apps/pv SLOT=0 SRC_URI=https://gitea.osmocom.org/sdr/osmo-fl2k/archive/v0.2.0.tar.gz -> osmo-fl2k-0.2.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a44c3e53c9b0d7d8ce85ee0646b7168e diff --git a/metadata/md5-cache/net-wireless/osmo-fl2k-9999 b/metadata/md5-cache/net-wireless/osmo-fl2k-9999 index 8126f1092961..df32380eebc8 100644 --- a/metadata/md5-cache/net-wireless/osmo-fl2k-9999 +++ b/metadata/md5-cache/net-wireless/osmo-fl2k-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=virtual/libusb:1 media-sound/sox sys-apps/pv SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a44c3e53c9b0d7d8ce85ee0646b7168e diff --git a/metadata/md5-cache/net-wireless/qdmr-0.13.3 b/metadata/md5-cache/net-wireless/qdmr-0.13.3 index 8be83d694bc7..93138415baa4 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.13.3 +++ b/metadata/md5-cache/net-wireless/qdmr-0.13.3 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtbase:6[gui,network,widgets] dev-qt/qtpositio RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.13.3.tar.gz -> qdmr-0.13.3.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b0f0af990a2f9a8e0bf24ea28bcf77c4 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.14.0 b/metadata/md5-cache/net-wireless/qdmr-0.14.0 index b8e35b8b6f70..29c9e06cf50e 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.14.0 +++ b/metadata/md5-cache/net-wireless/qdmr-0.14.0 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtbase:6[gui,network,widgets] dev-qt/qtpositio RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.14.0.tar.gz -> qdmr-0.14.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=351b2e62d76183340b03d5b9aba694c0 diff --git a/metadata/md5-cache/net-wireless/qdmr-0.14.1 b/metadata/md5-cache/net-wireless/qdmr-0.14.1 index ebccaefb77ac..7c3f90200a4b 100644 --- a/metadata/md5-cache/net-wireless/qdmr-0.14.1 +++ b/metadata/md5-cache/net-wireless/qdmr-0.14.1 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtbase:6[gui,network,widgets] dev-qt/qtpositio RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hmatuschek/qdmr/archive/refs/tags/v0.14.1.tar.gz -> qdmr-0.14.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=351b2e62d76183340b03d5b9aba694c0 diff --git a/metadata/md5-cache/net-wireless/qdmr-9999 b/metadata/md5-cache/net-wireless/qdmr-9999 index 11ae5392e2c4..9c738e25bca1 100644 --- a/metadata/md5-cache/net-wireless/qdmr-9999 +++ b/metadata/md5-cache/net-wireless/qdmr-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-cpp/yaml-cpp:= dev-qt/qtbase:6[gui,network,widgets] dev-qt/qtpositioning:6 dev-qt/qtserialport:6 dev-qt/qttools[designer,linguist] virtual/libusb:1 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4ff733c50036dca4ad69f3aa7c303dcb diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r3 b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r3 index 8980bb90a55a..975aa638d67e 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r3 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=virtual/libusb:1 acct-group/plugdev !net-wireless/rtl-sdr-blog SLOT=0/0.1 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/refs/tags/v2.0.2.tar.gz -> rtl-sdr-2.0.2.gh.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=580f1f576fac92d4015d2e9c7b266dcc diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-9999 b/metadata/md5-cache/net-wireless/rtl-sdr-9999 index f29de5a188d8..088e58293302 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-9999 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ PROPERTIES=live RDEPEND=virtual/libusb:1 acct-group/plugdev !net-wireless/rtl-sdr-blog SLOT=0/0.1 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f890e7b57a9bbbaf25afcb3e4f8fd02e diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r2 b/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r2 index 3bf99ce18959..94f173ef3bdc 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r2 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=virtual/libusb:1 acct-group/plugdev !net-wireless/rtl-sdr SLOT=0 SRC_URI=https://github.com/rtlsdrblog/rtl-sdr-blog/archive/refs/tags/v1.3.6.tar.gz -> rtl-sdr-blog-1.3.6.gh.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=fdbd58e20987ac582a390a3bc56b7db7 diff --git a/metadata/md5-cache/net-wireless/sdrplay-3.07.1 b/metadata/md5-cache/net-wireless/sdrplay-3.07.1 index cda501de7207..c69a84925503 100644 --- a/metadata/md5-cache/net-wireless/sdrplay-3.07.1 +++ b/metadata/md5-cache/net-wireless/sdrplay-3.07.1 @@ -12,5 +12,5 @@ RDEPEND=virtual/libusb:1 virtual/udev systemd? ( sys-apps/systemd ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) SLOT=0 SRC_URI=https://www.sdrplay.com/software/SDRplay_RSP_API-Linux-3.07.1.run -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=1030f2a410259a7beb1d75c085622000 diff --git a/metadata/md5-cache/net-wireless/sdrplay-3.15.2 b/metadata/md5-cache/net-wireless/sdrplay-3.15.2 index 9f9c62ce49ad..cf51b380ea62 100644 --- a/metadata/md5-cache/net-wireless/sdrplay-3.15.2 +++ b/metadata/md5-cache/net-wireless/sdrplay-3.15.2 @@ -11,5 +11,5 @@ LICENSE=SDRplay RDEPEND=virtual/libusb:1 virtual/udev systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=https://www.sdrplay.com/software/SDRplay_RSP_API-Linux-3.15.2.run -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 _md5_=06201d1183bfa444f11aaada469a61a9 diff --git a/metadata/md5-cache/net-wireless/ubertooth-2020.12.1-r1 b/metadata/md5-cache/net-wireless/ubertooth-2020.12.1-r1 index 3a898c80b199..78313cb8d32e 100644 --- a/metadata/md5-cache/net-wireless/ubertooth-2020.12.1-r1 +++ b/metadata/md5-cache/net-wireless/ubertooth-2020.12.1-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-2020.12.1:=[static-libs?] static-libs? ( dev-libs/libusb[static-libs] ) virtual/libusb:1 udev? ( virtual/udev ) SLOT=0 SRC_URI=https://github.com/greatscottgadgets/ubertooth/releases/download/2020-12-R1/ubertooth-2020-12-R1.tar.xz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a5c8db8b0f57f153b036dca9c776d8b4 diff --git a/metadata/md5-cache/net-wireless/ubertooth-9999 b/metadata/md5-cache/net-wireless/ubertooth-9999 index a624da0688e3..8770fb5c0293 100644 --- a/metadata/md5-cache/net-wireless/ubertooth-9999 +++ b/metadata/md5-cache/net-wireless/ubertooth-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=bluez? ( net-wireless/bluez:= ) >=net-libs/libbtbb-9999:=[static-libs?] static-libs? ( dev-libs/libusb[static-libs] ) virtual/libusb:1 udev? ( virtual/udev ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=690c780f51a4320b371611037dcd3865 diff --git a/metadata/md5-cache/net-wireless/uhd-4.9.0.1 b/metadata/md5-cache/net-wireless/uhd-4.9.0.1 index 4851cb05473a..a7d7e3bc4dec 100644 --- a/metadata/md5-cache/net-wireless/uhd-4.9.0.1 +++ b/metadata/md5-cache/net-wireless/uhd-4.9.0.1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0/4.9.0 SRC_URI=https://github.com/EttusResearch/uhd/archive/v4.9.0.1.tar.gz -> EttusResearch-UHD-4.9.0.1.tar.gz https://github.com/EttusResearch/uhd/releases/download/v4.9.0.0/uhd-images_4.9.0.0.tar.xz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b5c8a83cc565a64398dfb9707fad3845 diff --git a/metadata/md5-cache/net-wireless/unifi-10.3.58 b/metadata/md5-cache/net-wireless/unifi-10.3.58 new file mode 100644 index 000000000000..f454f1bafe25 --- /dev/null +++ b/metadata/md5-cache/net-wireless/unifi-10.3.58 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install postinst preinst prepare setup +DEPEND=>=dev-java/java-config-2.2.0-r3 +DESCRIPTION=A Management Controller for Ubiquiti Networks UniFi APs +EAPI=8 +HOMEPAGE=https://www.ubnt.com +INHERIT=java-pkg-2 readme.gentoo-r1 systemd +IUSE=systemd system-mongodb +KEYWORDS=-* ~amd64 ~arm64 +LICENSE=Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 MIT ubiquiti +RDEPEND=acct-group/unifi acct-user/unifi dev-db/mongodb virtual/jre:25 >=dev-java/java-config-2.2.0-r3 +RESTRICT=bindist mirror +SLOT=0/10.3 +SRC_URI=https://dl.ui.com/unifi/10.3.58/UniFi.unix.zip -> unifi-10.3.58.zip +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd java-pkg-2 438c2725ea326202d7fc1eb31af76813 java-utils-2 b41327d85d12ce816943cf4d344add19 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=932e07459b55c945e0f1d9efefe4404a diff --git a/metadata/md5-cache/sci-electronics/dsview-1.3.0 b/metadata/md5-cache/sci-electronics/dsview-1.3.0 index a35f9dfe68aa..7a3138ca392a 100644 --- a/metadata/md5-cache/sci-electronics/dsview-1.3.0 +++ b/metadata/md5-cache/sci-electronics/dsview-1.3.0 @@ -13,5 +13,5 @@ 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 SRC_URI=https://github.com/DreamSourceLab/DSView/archive/v1.3.0.tar.gz -> dsview-1.3.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=aafe4e7f0ce29e5cf2ecaf9ffca74fc9 diff --git a/metadata/md5-cache/sci-electronics/dsview-1.3.2 b/metadata/md5-cache/sci-electronics/dsview-1.3.2 index ab1adc4b5794..3bd7a0df032f 100644 --- a/metadata/md5-cache/sci-electronics/dsview-1.3.2 +++ b/metadata/md5-cache/sci-electronics/dsview-1.3.2 @@ -13,5 +13,5 @@ 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 SRC_URI=https://github.com/DreamSourceLab/DSView/archive/v1.3.2.tar.gz -> dsview-1.3.2.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0c5751e9853ec36654932b5e4f66d499 diff --git a/metadata/md5-cache/sci-electronics/dsview-9999 b/metadata/md5-cache/sci-electronics/dsview-9999 index 81bd125b18a7..453c0c9956a8 100644 --- a/metadata/md5-cache/sci-electronics/dsview-9999 +++ b/metadata/md5-cache/sci-electronics/dsview-9999 @@ -12,5 +12,5 @@ PROPERTIES=live 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 ) dev-cpp/glibmm:2 dev-libs/boost dev-libs/glib dev-libs/libzip dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtsvg:5 dev-qt/qtconcurrent:5 sci-libs/fftw:3.0 virtual/libusb:1 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_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=88c3f10bd42f9ad37263a2edf0300aaa diff --git a/metadata/md5-cache/sci-electronics/labone-21.08.20515-r2 b/metadata/md5-cache/sci-electronics/labone-21.08.20515-r2 index bdb2df0fff7f..317b233c37ea 100644 --- a/metadata/md5-cache/sci-electronics/labone-21.08.20515-r2 +++ b/metadata/md5-cache/sci-electronics/labone-21.08.20515-r2 @@ -11,5 +11,5 @@ LICENSE=zi-labone RESTRICT=mirror bindist SLOT=0 SRC_URI=https://www.zhinst.com/sites/default/files/media/release_file/2021-09/LabOneLinux64-21.08.20515.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d3b8bc6cab39df4d4ee62d8d9fa0bdcc diff --git a/metadata/md5-cache/sci-electronics/labone-23.02.42414 b/metadata/md5-cache/sci-electronics/labone-23.02.42414 index 8623b29478c4..97333d59b033 100644 --- a/metadata/md5-cache/sci-electronics/labone-23.02.42414 +++ b/metadata/md5-cache/sci-electronics/labone-23.02.42414 @@ -11,5 +11,5 @@ LICENSE=zi-labone RESTRICT=mirror bindist SLOT=0 SRC_URI=https://pub-a579c9a7a5ee41a2ba57327584974c85.r2.dev/23.02.42414/LabOneLinux64-23.02.42414.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=87d95a19fb3ebe4187414c5a0c952403 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.26.1-r1 b/metadata/md5-cache/sci-geosciences/gpsd-3.26.1-r1 index e8671e8b9477..2d548df80170 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.26.1-r1 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.26.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) || ( python_targe RESTRICT=!test? ( test ) SLOT=0/31 SRC_URI=mirror://nongnu/gpsd/gpsd-3.26.1.tar.xz -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=319537813fe1ef90afc63378d64401af diff --git a/metadata/md5-cache/sci-geosciences/gpsd-3.27.5 b/metadata/md5-cache/sci-geosciences/gpsd-3.27.5 index 118396a25c56..92a92c5b2764 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-3.27.5 +++ b/metadata/md5-cache/sci-geosciences/gpsd-3.27.5 @@ -13,5 +13,5 @@ REQUIRED_USE=gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) || ( python_targe RESTRICT=!test? ( test ) SLOT=0/31 SRC_URI=mirror://nongnu/gpsd/gpsd-3.27.5.tar.xz verify-sig? ( mirror://nongnu/gpsd/gpsd-3.27.5.tar.xz.sig ) -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=8614941c2847a8fd9f9baf8e5e7aff14 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-9999 b/metadata/md5-cache/sci-geosciences/gpsd-9999 index 6a8aea194f9f..f968a4bb6c01 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-9999 +++ b/metadata/md5-cache/sci-geosciences/gpsd-9999 @@ -12,5 +12,5 @@ RDEPEND=acct-user/gpsd acct-group/dialout >=net-misc/pps-tools-0.0.20120407 blue REQUIRED_USE=gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) qt6? ( cxx ) RESTRICT=!test? ( test ) SLOT=0/31 -_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=8614941c2847a8fd9f9baf8e5e7aff14 diff --git a/metadata/md5-cache/sci-libs/indilib-2.1.9 b/metadata/md5-cache/sci-libs/indilib-2.1.9 index bf6adca67400..25b96faadef9 100644 --- a/metadata/md5-cache/sci-libs/indilib-2.1.9 +++ b/metadata/md5-cache/sci-libs/indilib-2.1.9 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/cpp-httplib:= dev-cpp/nlohmann_json dev-libs/hidapi dev-libs/lib RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/indilib/indi/archive/v2.1.9.tar.gz -> indilib-2.1.9.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a6e2d48788e4726fd26861e3ebe75954 diff --git a/metadata/md5-cache/sci-libs/indilib-2.2.0 b/metadata/md5-cache/sci-libs/indilib-2.2.0 index fe6594cbc047..6f9479c0d8f7 100644 --- a/metadata/md5-cache/sci-libs/indilib-2.2.0 +++ b/metadata/md5-cache/sci-libs/indilib-2.2.0 @@ -12,5 +12,5 @@ RDEPEND=dev-cpp/cpp-httplib:= dev-cpp/nlohmann_json dev-libs/hidapi dev-libs/lib RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/indilib/indi/archive/v2.2.0.tar.gz -> indilib-2.2.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=5af96b23ed3e995c007ef4d22c44b2c2 diff --git a/metadata/md5-cache/sci-libs/libsigrok-0.6.0_pre20241020 b/metadata/md5-cache/sci-libs/libsigrok-0.6.0_pre20241020 index e9990c68d43f..af363dc9c475 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-0.6.0_pre20241020 +++ b/metadata/md5-cache/sci-libs/libsigrok-0.6.0_pre20241020 @@ -13,5 +13,5 @@ REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_10 python_t RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://sigrok.org/gitweb/?p=libsigrok.git;a=snapshot;h=f06f788118191d19fdbbb37046d3bd5cec91adb1;sf=zip -> libsigrok-f06f788.zip -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 ruby-ng 705ab926556cb5cb4811999dd0c670b0 ruby-utils 70349884e22849da218b0f0c4a32da54 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 ruby-ng 705ab926556cb5cb4811999dd0c670b0 ruby-utils 70349884e22849da218b0f0c4a32da54 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=64db8df209acc93a9bafd51c7c41edb6 diff --git a/metadata/md5-cache/sci-libs/libsigrok-9999 b/metadata/md5-cache/sci-libs/libsigrok-9999 index 88f9d40b8afe..e87f9e461ee9 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-9999 +++ b/metadata/md5-cache/sci-libs/libsigrok-9999 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.32.0 >=dev-libs/libzip-0.8:= virtual/zlib:= bluetooth? REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) ruby? ( cxx || ( ruby_targets_ruby32 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 ruby-ng 705ab926556cb5cb4811999dd0c670b0 ruby-utils 70349884e22849da218b0f0c4a32da54 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 java-pkg-opt-2 fb182c4f9d67f6042f8b265a6724cdd7 java-utils-2 b41327d85d12ce816943cf4d344add19 libtool 6a96cd90e5da8c7c615015479f46f1a4 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 ruby-ng 705ab926556cb5cb4811999dd0c670b0 ruby-utils 70349884e22849da218b0f0c4a32da54 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4e3c1b7d2a76701ee50e9e3b61313331 diff --git a/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r100 b/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r100 index 2fdbea8a9a0f..5b7f6c0708ad 100644 --- a/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r100 +++ b/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r100 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/readline:= tcl? ( dev-lang/tcl:0= ) guile? ( guile_single_targe REQUIRED_USE=guile? ( ^^ ( guile_single_target_2-2 guile_single_target_3-0 ) ) 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 ) ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/linux-gpib/linux-gpib-4.3.6.tar.gz firmware? ( https://linux-gpib.sourceforge.io/firmware/gpib_firmware-2008-08-10.tar.gz ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f8d92beedb07d31d810e823be2fb6a25 diff --git a/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r200 b/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r200 index 66996d4a3652..c2a65881f5ed 100644 --- a/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r200 +++ b/metadata/md5-cache/sci-libs/linux-gpib-4.3.6-r200 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/readline:= tcl? ( dev-lang/tcl:0= ) guile? ( guile_single_targe REQUIRED_USE=guile? ( ^^ ( guile_single_target_2-2 guile_single_target_3-0 ) ) python? ( || ( 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://downloads.sourceforge.net/linux-gpib/linux-gpib-4.3.6.tar.gz firmware? ( https://linux-gpib.sourceforge.io/firmware/gpib_firmware-2008-08-10.tar.gz ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a perl-functions 1863acf0982afafc67797e3ce7275b4c python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a perl-functions 1863acf0982afafc67797e3ce7275b4c python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=206119d087f519ff6fe7ec224d5938ea diff --git a/metadata/md5-cache/sci-libs/linux-gpib-4.3.7 b/metadata/md5-cache/sci-libs/linux-gpib-4.3.7 index d8410fc2ec8a..c0218d0c4c9a 100644 --- a/metadata/md5-cache/sci-libs/linux-gpib-4.3.7 +++ b/metadata/md5-cache/sci-libs/linux-gpib-4.3.7 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/readline:= tcl? ( dev-lang/tcl:0= ) guile? ( guile_single_targe REQUIRED_USE=guile? ( ^^ ( guile_single_target_2-2 guile_single_target_3-0 ) ) 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 ) ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/linux-gpib/linux-gpib-4.3.7.tar.gz firmware? ( https://linux-gpib.sourceforge.io/firmware/gpib_firmware-2008-08-10.tar.gz ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=167c67bb4df6ee14d26642ada07060ce diff --git a/metadata/md5-cache/sci-libs/linux-gpib-9999 b/metadata/md5-cache/sci-libs/linux-gpib-9999 index b862cd650583..f1ab4ca49e1f 100644 --- a/metadata/md5-cache/sci-libs/linux-gpib-9999 +++ b/metadata/md5-cache/sci-libs/linux-gpib-9999 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/readline:= tcl? ( dev-lang/tcl:0= ) guile? ( guile_single_targe REQUIRED_USE=guile? ( ^^ ( guile_single_target_2-2 guile_single_target_3-0 ) ) 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 ) ) SLOT=0 SRC_URI=firmware? ( https://linux-gpib.sourceforge.io/firmware/gpib_firmware-2008-08-10.tar.gz ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=167c67bb4df6ee14d26642ada07060ce diff --git a/metadata/md5-cache/sci-mathematics/rkward-0.8.3 b/metadata/md5-cache/sci-mathematics/rkward-0.8.3 new file mode 100644 index 000000000000..00763ffe6f4b --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/rkward-0.8.3 @@ -0,0 +1,16 @@ +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-lang/R dev-libs/kdsingleapplication[qt6(+)] >=dev-qt/qtbase-6.6.2:6[gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.6.2:6 >=dev-qt/qtwebengine-6.6.2:6[widgets] >=kde-frameworks/breeze-icons-6.9.0:6 >=kde-frameworks/karchive-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/ki18n-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/knotifications-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktexteditor-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kwindowsystem-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 dev-qt/qtbase:6 +DESCRIPTION=IDE for the R-project +EAPI=8 +HOMEPAGE=https://rkward.kde.org/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm kde.org optfeature xdg +IUSE=debug +handbook +KEYWORDS=~amd64 +LICENSE=GPL-2+ LGPL-2 +RDEPEND=dev-lang/R dev-libs/kdsingleapplication[qt6(+)] >=dev-qt/qtbase-6.6.2:6[gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.6.2:6 >=dev-qt/qtwebengine-6.6.2:6[widgets] >=kde-frameworks/breeze-icons-6.9.0:6 >=kde-frameworks/karchive-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/ki18n-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/knotifications-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktexteditor-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kwindowsystem-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 !sci-mathematics/rkward:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 +SLOT=0 +SRC_URI=mirror://kde/stable/rkward/0.8.3/rkward-0.8.3.tar.gz +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 ecm c3772d432284de03db6df21d71be747a flag-o-matic fd3558f73f6503093adee69adf41020d kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=f58f8fa8c6fd5d37d17dbf208887920f diff --git a/metadata/md5-cache/sci-misc/h5utils-1.13.1 b/metadata/md5-cache/sci-misc/h5utils-1.13.1-r1 index e4677a8d230d..92bab9fccf16 100644 --- a/metadata/md5-cache/sci-misc/h5utils-1.13.1 +++ b/metadata/md5-cache/sci-misc/h5utils-1.13.1-r1 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 DEFINED_PHASES=configure prepare -DEPEND=media-libs/libpng:0= sci-libs/hdf5:0= virtual/zlib:= hdf? ( sci-libs/hdf:0= virtual/jpeg:0 ) +DEPEND=media-libs/libpng:0= sci-libs/hdf5:0= virtual/zlib:= hdf? ( sci-libs/hdf:0= virtual/jpeg:0 ) octave? ( sci-mathematics/octave ) DESCRIPTION=Utilities for visualization and conversion of HDF5 files EAPI=7 HOMEPAGE=https://github.com/NanoComp/h5utils @@ -8,8 +8,8 @@ INHERIT=autotools IUSE=hdf octave KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 -RDEPEND=media-libs/libpng:0= sci-libs/hdf5:0= virtual/zlib:= hdf? ( sci-libs/hdf:0= virtual/jpeg:0 ) +RDEPEND=media-libs/libpng:0= sci-libs/hdf5:0= virtual/zlib:= hdf? ( sci-libs/hdf:0= virtual/jpeg:0 ) octave? ( sci-mathematics/octave ) SLOT=0 SRC_URI=https://github.com/NanoComp/h5utils/archive/1.13.1.tar.gz -> h5utils-1.13.1.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=f3ab8c64bfdcd0429dcc975c4f0f057c +_md5_=9a0e21651548179e1a0b73b87756c463 diff --git a/metadata/md5-cache/sys-apps/apparmor-4.1.6 b/metadata/md5-cache/sys-apps/apparmor-5.0.0 index 34ec97ef63ca..dbe528ddc7d5 100644 --- a/metadata/md5-cache/sys-apps/apparmor-4.1.6 +++ b/metadata/md5-cache/sys-apps/apparmor-5.0.0 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/perl sys-apps/which sys-devel/bison sys-devel/gettext sys-devel/flex doc? ( dev-tex/latex2html ) virtual/pkgconfig DEFINED_PHASES=compile install prepare test -DEPEND=~sys-libs/libapparmor-4.1.6 +DEPEND=~sys-libs/libapparmor-5.0.0 DESCRIPTION=Userspace utils and init scripts for the AppArmor application security system EAPI=8 HOMEPAGE=https://gitlab.com/apparmor/apparmor/wikis/home @@ -8,8 +8,8 @@ INHERIT=systemd toolchain-funcs IUSE=doc KEYWORDS=~amd64 ~arm64 ~riscv LICENSE=GPL-2 -RDEPEND=~sys-libs/libapparmor-4.1.6 +RDEPEND=~sys-libs/libapparmor-5.0.0 SLOT=0 -SRC_URI=https://gitlab.com/apparmor/apparmor/-/archive/v4.1.6/apparmor-v4.1.6.tar.gz +SRC_URI=https://gitlab.com/apparmor/apparmor/-/archive/v5.0.0/apparmor-v5.0.0.tar.gz _eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=e7038ebdca06ccf1721e80c9f37963a4 +_md5_=0780fa61017ea4ab7c8334421c743036 diff --git a/metadata/md5-cache/sys-apps/azure-vm-utils-0.6.0-r1 b/metadata/md5-cache/sys-apps/azure-vm-utils-0.6.0-r1 index 196b6f45b9e8..f96e4391aafb 100644 --- a/metadata/md5-cache/sys-apps/azure-vm-utils-0.6.0-r1 +++ b/metadata/md5-cache/sys-apps/azure-vm-utils-0.6.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/json-c:= dracut? ( sys-kernel/dracut ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Azure/azure-vm-utils/archive/refs/tags/v0.6.0/azure-vm-utils-0.6.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c30770b31b7b0c2efdb22c7df9a3e801 diff --git a/metadata/md5-cache/sys-apps/azure-vm-utils-0.7.0 b/metadata/md5-cache/sys-apps/azure-vm-utils-0.7.0 index 71cb22db3132..0fbe9c13fd92 100644 --- a/metadata/md5-cache/sys-apps/azure-vm-utils-0.7.0 +++ b/metadata/md5-cache/sys-apps/azure-vm-utils-0.7.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/json-c:= dracut? ( sys-kernel/dracut ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Azure/azure-vm-utils/archive/refs/tags/v0.7.0/azure-vm-utils-0.7.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6f4b2ea9c46108cf0bdd56bad2b05f1b diff --git a/metadata/md5-cache/sys-apps/biosdevname-0.7.3-r1 b/metadata/md5-cache/sys-apps/biosdevname-0.7.3-r1 index e58c269e314a..62466095c970 100644 --- a/metadata/md5-cache/sys-apps/biosdevname-0.7.3-r1 +++ b/metadata/md5-cache/sys-apps/biosdevname-0.7.3-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev sys-apps/pciutils SLOT=0 SRC_URI=https://github.com/dell/biosdevname/archive/v0.7.3.tar.gz -> biosdevname-0.7.3.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d43661842303a8cf64cec94ee2c987a3 diff --git a/metadata/md5-cache/sys-apps/bolt-0.9.10 b/metadata/md5-cache/sys-apps/bolt-0.9.10 index 2ad542bea9a5..0b3b73c6ffa5 100644 --- a/metadata/md5-cache/sys-apps/bolt-0.9.10 +++ b/metadata/md5-cache/sys-apps/bolt-0.9.10 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.56.0:2 virtual/libudev:= virtual/udev sys-auth/polkit[ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/bolt/bolt/-/archive/0.9.10/bolt-0.9.10.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1fec56a334731663893852ade630e608 diff --git a/metadata/md5-cache/sys-apps/bolt-0.9.11 b/metadata/md5-cache/sys-apps/bolt-0.9.11 index 1df1f512c41f..57abddcb28a8 100644 --- a/metadata/md5-cache/sys-apps/bolt-0.9.11 +++ b/metadata/md5-cache/sys-apps/bolt-0.9.11 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.56.0:2 virtual/libudev:= virtual/udev sys-auth/polkit[ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/bolt/bolt/-/archive/0.9.11/bolt-0.9.11.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e84d81acd7c0dea4445a4f7b6d623fb0 diff --git a/metadata/md5-cache/sys-apps/bolt-0.9.8-r1 b/metadata/md5-cache/sys-apps/bolt-0.9.8-r1 index abbb7b00817a..0212f0a86a55 100644 --- a/metadata/md5-cache/sys-apps/bolt-0.9.8-r1 +++ b/metadata/md5-cache/sys-apps/bolt-0.9.8-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.56.0:2 virtual/libudev:= virtual/udev sys-auth/polkit[ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/bolt/bolt/-/archive/0.9.8/bolt-0.9.8.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1e2589037d01681054640c8465c89079 diff --git a/metadata/md5-cache/sys-apps/bolt-0.9.9 b/metadata/md5-cache/sys-apps/bolt-0.9.9 index ed9fca6cebf0..2ccbc84cdea6 100644 --- a/metadata/md5-cache/sys-apps/bolt-0.9.9 +++ b/metadata/md5-cache/sys-apps/bolt-0.9.9 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.56.0:2 virtual/libudev:= virtual/udev sys-auth/polkit[ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/bolt/bolt/-/archive/0.9.9/bolt-0.9.9.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=569ee979d79395c4774caa8b7aa8fd5d diff --git a/metadata/md5-cache/sys-apps/fwupd-2.0.16 b/metadata/md5-cache/sys-apps/fwupd-2.0.16 index 9542d30c7a88..7a837d39f59a 100644 --- a/metadata/md5-cache/sys-apps/fwupd-2.0.16 +++ b/metadata/md5-cache/sys-apps/fwupd-2.0.16 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fwupd/fwupd/releases/download/2.0.16/fwupd-2.0.16.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=51da9e296dfcc35513c7e00d38210430 diff --git a/metadata/md5-cache/sys-apps/fwupd-2.0.20 b/metadata/md5-cache/sys-apps/fwupd-2.0.20 index 63027d508d79..f6c1636bd5d8 100644 --- a/metadata/md5-cache/sys-apps/fwupd-2.0.20 +++ b/metadata/md5-cache/sys-apps/fwupd-2.0.20 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fwupd/fwupd/releases/download/2.0.20/fwupd-2.0.20.tar.xz verify-sig? ( https://github.com/fwupd/fwupd/releases/download/2.0.20/fwupd-2.0.20.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=3a846a379d5a4760c70ec048622f2942 diff --git a/metadata/md5-cache/sys-apps/fwupd-2.1.1-r2 b/metadata/md5-cache/sys-apps/fwupd-2.1.1-r2 index b5e18bf17b90..865b3e946288 100644 --- a/metadata/md5-cache/sys-apps/fwupd-2.1.1-r2 +++ b/metadata/md5-cache/sys-apps/fwupd-2.1.1-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/fwupd/fwupd/releases/download/2.1.1/fwupd-2.1.1.tar.xz verify-sig? ( https://github.com/fwupd/fwupd/releases/download/2.1.1/fwupd-2.1.1.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bc9abdbc292c581f9b8b0de240f738ca diff --git a/metadata/md5-cache/sys-apps/fwupd-2.1.2 b/metadata/md5-cache/sys-apps/fwupd-2.1.2 index b9527cec267b..f05ed4573c35 100644 --- a/metadata/md5-cache/sys-apps/fwupd-2.1.2 +++ b/metadata/md5-cache/sys-apps/fwupd-2.1.2 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/fwupd/fwupd/releases/download/2.1.2/fwupd-2.1.2.tar.xz verify-sig? ( https://github.com/fwupd/fwupd/releases/download/2.1.2/fwupd-2.1.2.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2284b14733039352ab094e9f03cdaeb2 diff --git a/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9-r2 b/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9-r2 index 7856109e1433..7338175ee458 100644 --- a/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9-r2 +++ b/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9-r2 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=acct-group/floppy acct-group/usb >=sys-apps/systemd-207 SLOT=0 SRC_URI=https://dev.gentoo.org/~floppym/dist/gentoo-systemd-integration-9.tar.gz -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4e6de609b367561c4d1bbb75abd40056 diff --git a/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9999 b/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9999 index b436f6bf47b1..abbdc18a3ce1 100644 --- a/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9999 +++ b/metadata/md5-cache/sys-apps/gentoo-systemd-integration-9999 @@ -9,5 +9,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=acct-group/floppy acct-group/usb >=sys-apps/systemd-207 SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4e6de609b367561c4d1bbb75abd40056 diff --git a/metadata/md5-cache/sys-apps/gradm-3.1.201903191516 b/metadata/md5-cache/sys-apps/gradm-3.1.201903191516 index 3d5d8ba2728b..6fee8acf4b62 100644 --- a/metadata/md5-cache/sys-apps/gradm-3.1.201903191516 +++ b/metadata/md5-cache/sys-apps/gradm-3.1.201903191516 @@ -10,5 +10,5 @@ KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://dev.gentoo.org/~slashbeast/distfiles/gradm/gradm-3.1-201903191516.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=39beac22525b773bddd39a859719d0b8 diff --git a/metadata/md5-cache/sys-apps/hexyl-0.17.0 b/metadata/md5-cache/sys-apps/hexyl-0.17.0 index 04f7d930361a..0991ae5c83bd 100644 --- a/metadata/md5-cache/sys-apps/hexyl-0.17.0 +++ b/metadata/md5-cache/sys-apps/hexyl-0.17.0 @@ -1,14 +1,13 @@ -BDEPEND=virtual/pandoc || ( >=dev-lang/rust-bin-1.88:* >=dev-lang/rust-1.88:* ) +BDEPEND=|| ( >=dev-lang/rust-bin-1.88:* >=dev-lang/rust-1.88:* ) DEFINED_PHASES=compile configure install setup test unpack DESCRIPTION=A command-line hex viewer EAPI=8 HOMEPAGE=https://github.com/sharkdp/hexyl -INHERIT=cargo shell-completion +INHERIT=cargo IUSE=debug KEYWORDS=~amd64 LICENSE=|| ( Apache-2.0 MIT ) Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB -RESTRICT=mirror SLOT=0 SRC_URI=https://github.com/sharkdp/hexyl/archive/v0.17.0.tar.gz -> hexyl-0.17.0.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anstream/0.6.17/download -> anstream-0.6.17.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.6/download -> anstyle-wincon-3.0.6.crate https://crates.io/api/v1/crates/anstyle/1.0.9/download -> anstyle-1.0.9.crate https://crates.io/api/v1/crates/anyhow/1.0.91/download -> anyhow-1.0.91.crate https://crates.io/api/v1/crates/assert_cmd/2.1.2/download -> assert_cmd-2.1.2.crate https://crates.io/api/v1/crates/autocfg/1.4.0/download -> autocfg-1.4.0.crate https://crates.io/api/v1/crates/bitflags/2.6.0/download -> bitflags-2.6.0.crate https://crates.io/api/v1/crates/bstr/1.10.0/download -> bstr-1.10.0.crate https://crates.io/api/v1/crates/clap/4.5.20/download -> clap-4.5.20.crate https://crates.io/api/v1/crates/clap_builder/4.5.20/download -> clap_builder-4.5.20.crate https://crates.io/api/v1/crates/clap_complete/4.5.55/download -> clap_complete-4.5.55.crate https://crates.io/api/v1/crates/clap_derive/4.5.18/download -> clap_derive-4.5.18.crate https://crates.io/api/v1/crates/clap_lex/0.7.2/download -> clap_lex-0.7.2.crate https://crates.io/api/v1/crates/colorchoice/1.0.3/download -> colorchoice-1.0.3.crate https://crates.io/api/v1/crates/const_format/0.2.33/download -> const_format-0.2.33.crate https://crates.io/api/v1/crates/const_format_proc_macros/0.2.33/download -> const_format_proc_macros-0.2.33.crate https://crates.io/api/v1/crates/diff/0.1.13/download -> diff-0.1.13.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/errno/0.3.9/download -> errno-0.3.9.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/is_ci/1.2.0/download -> is_ci-1.2.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/libc/0.2.161/download -> libc-0.2.161.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.14/download -> linux-raw-sys-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/owo-colors/4.1.0/download -> owo-colors-4.1.0.crate https://crates.io/api/v1/crates/predicates-core/1.0.8/download -> predicates-core-1.0.8.crate https://crates.io/api/v1/crates/predicates-tree/1.0.11/download -> predicates-tree-1.0.11.crate https://crates.io/api/v1/crates/predicates/3.1.2/download -> predicates-3.1.2.crate https://crates.io/api/v1/crates/pretty_assertions/1.4.1/download -> pretty_assertions-1.4.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.89/download -> proc-macro2-1.0.89.crate https://crates.io/api/v1/crates/quote/1.0.37/download -> quote-1.0.37.crate https://crates.io/api/v1/crates/regex-automata/0.4.8/download -> regex-automata-0.4.8.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/rustix/0.38.38/download -> rustix-0.38.38.crate https://crates.io/api/v1/crates/serde/1.0.214/download -> serde-1.0.214.crate https://crates.io/api/v1/crates/serde_derive/1.0.214/download -> serde_derive-1.0.214.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/supports-color/3.0.1/download -> supports-color-3.0.1.crate https://crates.io/api/v1/crates/syn/2.0.85/download -> syn-2.0.85.crate https://crates.io/api/v1/crates/terminal_size/0.4.0/download -> terminal_size-0.4.0.crate https://crates.io/api/v1/crates/termtree/0.4.1/download -> termtree-0.4.1.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.65/download -> thiserror-impl-1.0.65.crate https://crates.io/api/v1/crates/thiserror/1.0.65/download -> thiserror-1.0.65.crate https://crates.io/api/v1/crates/unicode-ident/1.0.13/download -> unicode-ident-1.0.13.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/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/wait-timeout/0.2.0/download -> wait-timeout-0.2.0.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/yansi/1.0.1/download -> yansi-1.0.1.crate -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=da9f13a9d36766fa456c7f3bc728bcd6 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=aa74390ba0a1fdf5cb9e5e9ffe361f2f diff --git a/metadata/md5-cache/sys-apps/irqbalance-1.9.4-r3 b/metadata/md5-cache/sys-apps/irqbalance-1.9.4-r3 index 9f14a66576d3..c9bf25afbcb2 100644 --- a/metadata/md5-cache/sys-apps/irqbalance-1.9.4-r3 +++ b/metadata/md5-cache/sys-apps/irqbalance-1.9.4-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 caps? ( sys-libs/libcap-ng ) numa? ( sys-process/numactl RESTRICT=test SLOT=0 SRC_URI=https://github.com/Irqbalance/irqbalance/archive/v1.9.4.tar.gz -> irqbalance-1.9.4.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b57bfc4868e56d09000b4573c56e342c diff --git a/metadata/md5-cache/sys-apps/irqbalance-1.9.5 b/metadata/md5-cache/sys-apps/irqbalance-1.9.5 index d2e19cec20aa..0961c8d842dc 100644 --- a/metadata/md5-cache/sys-apps/irqbalance-1.9.5 +++ b/metadata/md5-cache/sys-apps/irqbalance-1.9.5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2 caps? ( sys-libs/libcap-ng ) numa? ( sys-process/numactl RESTRICT=test SLOT=0 SRC_URI=https://github.com/Irqbalance/irqbalance/archive/v1.9.5.tar.gz -> irqbalance-1.9.5.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1ddb01747e8703ee2fb04a796486bb4f diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.11 b/metadata/md5-cache/sys-apps/nvme-cli-2.11 index d3c18421afdb..44aac45c7321 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.11 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.11 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.11:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.11.tar.gz -> nvme-cli-2.11.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=929b56803e179ab0855c0a3da4bb6a62 diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.12 b/metadata/md5-cache/sys-apps/nvme-cli-2.12 index d33b14f18d3c..874c9d446142 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.12 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.12 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.12:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.12.tar.gz -> nvme-cli-2.12.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=114ad9a869034a8f01e63260e927d14c diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.13 b/metadata/md5-cache/sys-apps/nvme-cli-2.13 index 9a5d4615ed7a..a46b87890e5f 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.13 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.13 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.13:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.13.tar.gz -> nvme-cli-2.13.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ea2ef2b0fcc63a81f1b9661845d65b58 diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.14 b/metadata/md5-cache/sys-apps/nvme-cli-2.14 index e928031e3406..dd40180e61ef 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.14 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.14 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.14:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.14.tar.gz -> nvme-cli-2.14.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6453a38ca5dd8d2185f7f8a3a03413cd diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.15 b/metadata/md5-cache/sys-apps/nvme-cli-2.15 index 944c3ba4f990..2e66e72f782e 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.15 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.15 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.15:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.15.tar.gz -> nvme-cli-2.15.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=02b418caf0ca255fad0f158513bde7e1 diff --git a/metadata/md5-cache/sys-apps/nvme-cli-2.16 b/metadata/md5-cache/sys-apps/nvme-cli-2.16 index 14ebae7e20b4..de0886185275 100644 --- a/metadata/md5-cache/sys-apps/nvme-cli-2.16 +++ b/metadata/md5-cache/sys-apps/nvme-cli-2.16 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-2+ RDEPEND=>=sys-libs/libnvme-1.16:=[json?] json? ( dev-libs/json-c:= ) virtual/zlib:= SLOT=0 SRC_URI=https://github.com/linux-nvme/nvme-cli/archive/v2.16.tar.gz -> nvme-cli-2.16.gh.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6a2a9de5b7fba6c9a84215d3919f8cdd diff --git a/metadata/md5-cache/sys-apps/onerng-3.7-r1 b/metadata/md5-cache/sys-apps/onerng-3.7-r1 index 1ef225fb19ef..a4b6b439a188 100644 --- a/metadata/md5-cache/sys-apps/onerng-3.7-r1 +++ b/metadata/md5-cache/sys-apps/onerng-3.7-r1 @@ -12,5 +12,5 @@ RDEPEND=virtual/udev python_single_target_python3_10? ( dev-lang/python:3.10 ) p 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://github.com/OneRNG/onerng.github.io/raw/master/sw/onerng_3.7.orig.tar.gz -> onerng-3.7.tar.gz -_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3b1e8ab1cf6d704477e33507fcbbc819 diff --git a/metadata/md5-cache/sys-apps/openrazer-3.11.0 b/metadata/md5-cache/sys-apps/openrazer-3.11.0 index aa33e00ace6f..4161a0f5bc10 100644 --- a/metadata/md5-cache/sys-apps/openrazer-3.11.0 +++ b/metadata/md5-cache/sys-apps/openrazer-3.11.0 @@ -14,5 +14,5 @@ REQUIRED_USE=client? ( daemon ) daemon? ( || ( python_targets_python3_10 python_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/openrazer/openrazer/archive/v3.11.0.tar.gz -> openrazer-3.11.0.gh.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=7d2e577466af0aea6f4d6e0243f5b5b7 diff --git a/metadata/md5-cache/sys-apps/openrazer-3.12.0 b/metadata/md5-cache/sys-apps/openrazer-3.12.0 index 122d90e4fb85..f4244c4c1fe2 100644 --- a/metadata/md5-cache/sys-apps/openrazer-3.12.0 +++ b/metadata/md5-cache/sys-apps/openrazer-3.12.0 @@ -14,5 +14,5 @@ REQUIRED_USE=client? ( daemon ) daemon? ( || ( python_targets_python3_10 python_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/openrazer/openrazer/archive/v3.12.0.tar.gz -> openrazer-3.12.0.gh.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a4a08156781ac86c6d1a2ed5ac1b9f1f diff --git a/metadata/md5-cache/sys-apps/openrazer-3.12.1 b/metadata/md5-cache/sys-apps/openrazer-3.12.1 index 4a284b5ea515..1c304793c1d6 100644 --- a/metadata/md5-cache/sys-apps/openrazer-3.12.1 +++ b/metadata/md5-cache/sys-apps/openrazer-3.12.1 @@ -14,5 +14,5 @@ REQUIRED_USE=client? ( daemon ) daemon? ( || ( python_targets_python3_10 python_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/openrazer/openrazer/archive/v3.12.1.tar.gz -> openrazer-3.12.1.gh.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a4a08156781ac86c6d1a2ed5ac1b9f1f diff --git a/metadata/md5-cache/sys-apps/openrazer-3.12.2 b/metadata/md5-cache/sys-apps/openrazer-3.12.2 index 444a757de39d..973864029b98 100644 --- a/metadata/md5-cache/sys-apps/openrazer-3.12.2 +++ b/metadata/md5-cache/sys-apps/openrazer-3.12.2 @@ -14,5 +14,5 @@ REQUIRED_USE=client? ( daemon ) daemon? ( || ( python_targets_python3_10 python_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/openrazer/openrazer/archive/v3.12.2.tar.gz -> openrazer-3.12.2.gh.tar.gz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a4a08156781ac86c6d1a2ed5ac1b9f1f diff --git a/metadata/md5-cache/sys-apps/pcmciautils-018_p18 b/metadata/md5-cache/sys-apps/pcmciautils-018_p18 index 338c48703192..308221915194 100644 --- a/metadata/md5-cache/sys-apps/pcmciautils-018_p18 +++ b/metadata/md5-cache/sys-apps/pcmciautils-018_p18 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/kmod[tools] SLOT=0 SRC_URI=mirror://debian/pool/main/p/pcmciautils/pcmciautils_018.orig.tar.gz mirror://debian/pool/main/p/pcmciautils/pcmciautils_018-18.debian.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=31a138faf07ccf5ceaeb531e30a3ab25 diff --git a/metadata/md5-cache/sys-apps/pcsc-lite-2.4.0-r1 b/metadata/md5-cache/sys-apps/pcsc-lite-2.4.0-r1 index c73f18d43fa1..40cc61597fda 100644 --- a/metadata/md5-cache/sys-apps/pcsc-lite-2.4.0-r1 +++ b/metadata/md5-cache/sys-apps/pcsc-lite-2.4.0-r1 @@ -12,5 +12,5 @@ RDEPEND=libusb? ( virtual/libusb:1 ) udev? ( virtual/libudev:= ) policykit? ( >= REQUIRED_USE=^^ ( udev libusb ) ^^ ( 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://pcsclite.apdu.fr/files/pcsc-lite-2.4.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=8bc4e2f1a3a2f07a6e00834967b8f549 diff --git a/metadata/md5-cache/sys-apps/pcsc-lite-2.4.1 b/metadata/md5-cache/sys-apps/pcsc-lite-2.4.1 index 64b647fd1b84..8357ecc51c55 100644 --- a/metadata/md5-cache/sys-apps/pcsc-lite-2.4.1 +++ b/metadata/md5-cache/sys-apps/pcsc-lite-2.4.1 @@ -12,5 +12,5 @@ RDEPEND=libusb? ( virtual/libusb:1 ) udev? ( virtual/libudev:= ) policykit? ( >= REQUIRED_USE=^^ ( udev libusb ) ^^ ( 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://pcsclite.apdu.fr/files/pcsc-lite-2.4.1.tar.xz verify-sig? ( https://pcsclite.apdu.fr/files/pcsc-lite-2.4.1.tar.xz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=b2df5d776a896d67995d53b4c83e5a9f diff --git a/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r102 b/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r102 index 5efbb044cb7e..bd82fbaf87aa 100644 --- a/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r102 +++ b/metadata/md5-cache/sys-apps/roccat-tools-5.9.0-r102 @@ -13,5 +13,5 @@ RDEPEND=acct-group/roccat dev-libs/dbus-glib dev-libs/glib:2 >=dev-libs/libgamin REQUIRED_USE=input_devices_roccat_ryosmk? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) input_devices_roccat_ryosmkfx? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) input_devices_roccat_ryostkl? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/roccat/roccat-tools-5.9.0.tar.bz2 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4d9dc5414dbbd7e618040b43243c8d87 diff --git a/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 b/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 index f339fbe53f9a..59a4c256c410 100644 --- a/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 +++ b/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=fuse? ( sys-fs/fuse:0= ) ncurses? ( sys-libs/ncurses:0= ) openssl? ( dev-libs/openssl:0= cryptsetup? ( >=sys-fs/cryptsetup-2.0.3:= dev-libs/json-c:= ) ) pfm? ( app-misc/pfm ) snmp? ( net-analyzer/net-snmp ) zlib? ( virtual/zlib:= ) SLOT=0 SRC_URI=https://github.com/ibm-s390-tools/s390-tools/archive/v2.12.0.tar.gz -> s390-tools-2.12.0.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e81b5e753e841de47301da4d3803ef04 diff --git a/metadata/md5-cache/sys-apps/s390-tools-2.27.0-r1 b/metadata/md5-cache/sys-apps/s390-tools-2.27.0-r1 index e18acde216d4..9e99f9b735d7 100644 --- a/metadata/md5-cache/sys-apps/s390-tools-2.27.0-r1 +++ b/metadata/md5-cache/sys-apps/s390-tools-2.27.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=curl? ( net-misc/curl:0= ) fuse? ( sys-fs/fuse:3= ) ncurses? ( sys-libs/ncurses:0= ) openssl? ( dev-libs/openssl:0= cryptsetup? ( >=sys-fs/cryptsetup-2.0.3:= dev-libs/json-c:= ) ) pfm? ( app-misc/pfm ) snmp? ( net-analyzer/net-snmp ) zlib? ( virtual/zlib:= ) SLOT=0 SRC_URI=https://github.com/ibm-s390-tools/s390-tools/archive/v2.27.0.tar.gz -> s390-tools-2.27.0.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fe007f50231e9579e4299e4aa064ac88 diff --git a/metadata/md5-cache/sys-apps/s390-tools-2.40.0-r1 b/metadata/md5-cache/sys-apps/s390-tools-2.40.0-r1 index a94161777238..721f17f34930 100644 --- a/metadata/md5-cache/sys-apps/s390-tools-2.40.0-r1 +++ b/metadata/md5-cache/sys-apps/s390-tools-2.40.0-r1 @@ -11,5 +11,5 @@ LICENSE=MIT RDEPEND=curl? ( net-misc/curl ) fuse? ( sys-fs/fuse:3= ) ncurses? ( sys-libs/ncurses:= ) openssl? ( dev-libs/openssl:= cryptsetup? ( >=sys-fs/cryptsetup-2.0.3:= dev-libs/json-c:= ) ) pfm? ( dev-libs/libpfm:= ) snmp? ( net-analyzer/net-snmp:= ) zlib? ( virtual/zlib:= ) SLOT=0 SRC_URI=https://github.com/ibm-s390-tools/s390-tools/archive/v2.40.0.tar.gz -> s390-tools-2.40.0.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c29a7f6ef7008a772f89cde01b0d27d3 diff --git a/metadata/md5-cache/sys-apps/systemd-258.3 b/metadata/md5-cache/sys-apps/systemd-258.3 deleted file mode 100644 index 6405bc3cf0a7..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-258.3 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-arch/xz-utils:0 dev-util/gperf >=dev-build/meson-0.46 >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig bpf? ( >=dev-util/bpftool-7.0.0 sys-devel/bpf-toolchain ) test? ( app-text/tree dev-lang/perl sys-apps/dbus ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 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/jinja2[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_10(-)] test? ( dev-python/pefile[python_targets_python3_10(-)] ) ) ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_11(-)] test? ( dev-python/pefile[python_targets_python3_11(-)] ) ) ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_12(-)] test? ( dev-python/pefile[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/lxml[python_targets_python3_13(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_13(-)] test? ( dev-python/pefile[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( dev-python/jinja2[python_targets_python3_14(-)] dev-python/lxml[python_targets_python3_14(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_14(-)] test? ( dev-python/pefile[python_targets_python3_14(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm pretend setup test unpack -DEPEND=>=sys-apps/util-linux-2.32: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(-)?] sys-libs/libcap: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(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) apparmor? ( >=sys-libs/libapparmor-2.13:0= ) audit? ( >=sys-process/audit-2:0= ) bpf? ( >=dev-libs/libbpf-1.4.0:0= ) cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) fido2? ( dev-libs/libfido2:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5: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(-)?] ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2:= ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131: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(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1: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(-)?] ) iptables? ( net-firewall/iptables:0= ) openssl? ( >=dev-libs/openssl-1.1.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc:0= ) pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) selinux? ( >=sys-libs/libselinux-2.1.9:0= ) tpm? ( app-crypt/tpm2-tss:0= ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) zstd? ( >=app-arch/zstd-1.4.0: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(-)?] ) >=sys-kernel/linux-headers-4.15 -DESCRIPTION=System and service manager for Linux -EAPI=8 -HOMEPAGE=https://systemd.io/ -INHERIT=bash-completion-r1 linux-info meson-multilib optfeature pam python-single-r1 secureboot systemd toolchain-funcs udev -IUSE=acl apparmor audit boot bpf cgroup-hybrid cryptsetup curl +dns-over-tls elfutils fido2 +gcrypt gnutls homed http idn importd iptables +kernel-install +kmod +lz4 lzma +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode +resolvconf +seccomp selinux split-usr sysv-utils test tpm ukify vanilla xkb +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 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 secureboot -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=>=sys-apps/dbus-1.9.8[systemd] >=sys-fs/udev-init-scripts-34 policykit? ( sys-auth/polkit ) !vanilla? ( sys-apps/gentoo-systemd-integration ) -RDEPEND=>=sys-apps/util-linux-2.32: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(-)?] sys-libs/libcap: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(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) apparmor? ( >=sys-libs/libapparmor-2.13:0= ) audit? ( >=sys-process/audit-2:0= ) bpf? ( >=dev-libs/libbpf-1.4.0:0= ) cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) fido2? ( dev-libs/libfido2:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5: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(-)?] ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2:= ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131: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(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1: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(-)?] ) iptables? ( net-firewall/iptables:0= ) openssl? ( >=dev-libs/openssl-1.1.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc:0= ) pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) selinux? ( >=sys-libs/libselinux-2.1.9:0= ) tpm? ( app-crypt/tpm2-tss:0= ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) zstd? ( >=app-arch/zstd-1.4.0: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(-)?] ) >=acct-group/adm-0-r1 >=acct-group/wheel-0-r1 >=acct-group/kmem-0-r1 >=acct-group/tty-0-r1 >=acct-group/utmp-0-r1 >=acct-group/audio-0-r1 >=acct-group/cdrom-0-r1 acct-group/clock >=acct-group/dialout-0-r1 >=acct-group/disk-0-r1 >=acct-group/input-0-r1 >=acct-group/kvm-0-r1 >=acct-group/lp-0-r1 >=acct-group/render-0-r1 acct-group/sgx >=acct-group/tape-0-r1 acct-group/users >=acct-group/video-0-r1 >=acct-group/systemd-journal-0-r1 >=acct-user/root-0-r1 acct-user/nobody >=acct-user/systemd-journal-remote-0-r1 >=acct-user/systemd-coredump-0-r1 >=acct-user/systemd-network-0-r1 acct-user/systemd-oom >=acct-user/systemd-resolve-0-r1 >=acct-user/systemd-timesync-0-r1 >=sys-apps/baselayout-2.2 ukify? ( 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/pefile[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pefile[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pefile[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pefile[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pefile[python_targets_python3_14(-)] ) ) selinux? ( sec-policy/selinux-base-policy[systemd] sec-policy/selinux-ntp ) sysv-utils? ( !sys-apps/openrc[sysv-utils(-)] !sys-apps/sysvinit ) !sysv-utils? ( sys-apps/sysvinit ) resolvconf? ( !net-dns/openresolv ) !sys-apps/hwids[udev] !sys-auth/nss-myhostname !sys-fs/eudev !sys-fs/udev -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 ) dns-over-tls? ( openssl ) fido2? ( cryptsetup openssl ) homed? ( cryptsetup pam openssl ) importd? ( curl lzma openssl ) ?? ( passwdqc pwquality ) passwdqc? ( homed ) pwquality? ( homed ) boot? ( kernel-install ) ukify? ( boot ) -RESTRICT=!test? ( test ) -SLOT=0/2 -SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v258.3.tar.gz -> systemd-258.3.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=6f9d06319f7138ee6a3eeae33b002b2d diff --git a/metadata/md5-cache/sys-apps/systemd-259.3-r2 b/metadata/md5-cache/sys-apps/systemd-259.3-r2 deleted file mode 100644 index e7227210c823..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-259.3-r2 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-arch/xz-utils:0 dev-util/gperf >=dev-build/meson-0.46 >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig bpf? ( >=dev-util/bpftool-7.0.0 sys-devel/bpf-toolchain ) test? ( app-text/tree dev-lang/perl sys-apps/dbus ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 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/jinja2[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_10(-)] test? ( dev-python/pefile[python_targets_python3_10(-)] ) ) ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_11(-)] test? ( dev-python/pefile[python_targets_python3_11(-)] ) ) ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_12(-)] test? ( dev-python/pefile[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/lxml[python_targets_python3_13(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_13(-)] test? ( dev-python/pefile[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( dev-python/jinja2[python_targets_python3_14(-)] dev-python/lxml[python_targets_python3_14(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_14(-)] test? ( dev-python/pefile[python_targets_python3_14(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm pretend setup test unpack -DEPEND=>=sys-apps/util-linux-2.32: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(-)?] sys-libs/libcap: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(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) apparmor? ( >=sys-libs/libapparmor-2.13:0= ) audit? ( >=sys-process/audit-2:0= ) bpf? ( >=dev-libs/libbpf-1.4.0:0= ) cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) fido2? ( dev-libs/libfido2:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5: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(-)?] ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2:= ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131: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(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1: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(-)?] ) openssl? ( >=dev-libs/openssl-1.1.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc:0= ) pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) selinux? ( >=sys-libs/libselinux-2.1.9:0= ) tpm? ( app-crypt/tpm2-tss:0= ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) zstd? ( >=app-arch/zstd-1.4.0: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(-)?] ) >=sys-kernel/linux-headers-4.15 -DESCRIPTION=System and service manager for Linux -EAPI=8 -HOMEPAGE=https://systemd.io/ -INHERIT=branding linux-info meson-multilib optfeature pam python-single-r1 secureboot shell-completion systemd toolchain-funcs udev -IUSE=acl apparmor audit boot bpf cgroup-hybrid cryptsetup curl +dns-over-tls elfutils fido2 +gcrypt gnutls homed http idn importd +kernel-install +kmod +lz4 lzma +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode +resolvconf +seccomp selinux split-usr sysv-utils test tpm ukify vanilla xkb +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 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 secureboot -KEYWORDS=amd64 arm arm64 ppc ppc64 ~s390 x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=>=sys-apps/dbus-1.9.8[systemd] >=sys-fs/udev-init-scripts-34 policykit? ( sys-auth/polkit ) !sysv-utils? ( sys-apps/systemd-initctl ) !vanilla? ( sys-apps/gentoo-systemd-integration ) -RDEPEND=>=sys-apps/util-linux-2.32: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(-)?] sys-libs/libcap: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(-)?] virtual/libcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] acl? ( sys-apps/acl:0= ) apparmor? ( >=sys-libs/libapparmor-2.13:0= ) audit? ( >=sys-process/audit-2:0= ) bpf? ( >=dev-libs/libbpf-1.4.0:0= ) cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) fido2? ( dev-libs/libfido2:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5: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(-)?] ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2:= ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131: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(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1: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(-)?] ) openssl? ( >=dev-libs/openssl-1.1.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc:0= ) pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) selinux? ( >=sys-libs/libselinux-2.1.9:0= ) tpm? ( app-crypt/tpm2-tss:0= ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) zstd? ( >=app-arch/zstd-1.4.0: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(-)?] ) >=acct-group/adm-0-r1 >=acct-group/wheel-0-r1 >=acct-group/kmem-0-r1 >=acct-group/tty-0-r1 >=acct-group/utmp-0-r1 >=acct-group/audio-0-r1 >=acct-group/cdrom-0-r1 acct-group/clock >=acct-group/dialout-0-r1 >=acct-group/disk-0-r1 >=acct-group/input-0-r1 >=acct-group/kvm-0-r1 >=acct-group/lp-0-r1 >=acct-group/render-0-r1 acct-group/sgx >=acct-group/tape-0-r1 acct-group/users >=acct-group/video-0-r1 >=acct-group/systemd-journal-0-r1 >=acct-user/root-0-r1 acct-user/nobody >=acct-user/systemd-journal-remote-0-r1 >=acct-user/systemd-coredump-0-r1 >=acct-user/systemd-network-0-r1 acct-user/systemd-oom >=acct-user/systemd-resolve-0-r1 >=acct-user/systemd-timesync-0-r1 >=sys-apps/baselayout-2.2 elibc_musl? ( >=sys-libs/musl-1.2.5-r8 ) ukify? ( 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/pefile[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pefile[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pefile[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pefile[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pefile[python_targets_python3_14(-)] ) ) selinux? ( sec-policy/selinux-base-policy[systemd] sec-policy/selinux-ntp ) sysv-utils? ( !sys-apps/openrc[sysv-utils(-)] !sys-apps/sysvinit ) !sysv-utils? ( sys-apps/sysvinit ) resolvconf? ( !net-dns/openresolv ) !sys-auth/nss-myhostname !sys-fs/eudev !sys-fs/udev -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 ) dns-over-tls? ( openssl ) fido2? ( cryptsetup openssl ) homed? ( cryptsetup pam openssl ) importd? ( curl lzma openssl ) ?? ( passwdqc pwquality ) passwdqc? ( homed ) pwquality? ( homed ) boot? ( kernel-install ) ukify? ( boot ) -RESTRICT=!test? ( test ) -SLOT=0/2 -SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v259.3.tar.gz -> systemd-259.3.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=9e4d91c8627dcff125e3ab0e90a5968e diff --git a/metadata/md5-cache/sys-apps/systemd-259.4-r1 b/metadata/md5-cache/sys-apps/systemd-259.4-r1 index fa15b400f649..1d872ee4d5be 100644 --- a/metadata/md5-cache/sys-apps/systemd-259.4-r1 +++ b/metadata/md5-cache/sys-apps/systemd-259.4-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v259.4.tar.gz -> systemd-259.4.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=b264e447263d70766ba831550f126420 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 +_md5_=a74599033e50493387617dad3a259de2 diff --git a/metadata/md5-cache/sys-apps/systemd-260-r2 b/metadata/md5-cache/sys-apps/systemd-260-r2 deleted file mode 100644 index 93f6afd9250a..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-260-r2 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-arch/xz-utils:0 dev-util/gperf >=dev-build/meson-0.46 >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig bpf? ( >=dev-util/bpftool-7.0.0 sys-devel/bpf-toolchain ) test? ( app-text/tree dev-lang/perl >=dev-libs/glib-2.22.0:2 sys-apps/dbus ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 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/jinja2[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_10(-)] test? ( dev-python/pefile[python_targets_python3_10(-)] ) ) ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_11(-)] test? ( dev-python/pefile[python_targets_python3_11(-)] ) ) ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_12(-)] test? ( dev-python/pefile[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/lxml[python_targets_python3_13(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_13(-)] test? ( dev-python/pefile[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( dev-python/jinja2[python_targets_python3_14(-)] dev-python/lxml[python_targets_python3_14(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_14(-)] test? ( dev-python/pefile[python_targets_python3_14(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm pretend setup test unpack -DEPEND=>=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) apparmor? ( >=sys-libs/libapparmor-2.13 ) audit? ( >=sys-process/audit-2 ) bpf? ( >=dev-libs/libbpf-1.4.0 ) cryptsetup? ( >=sys-fs/cryptsetup-2.4.0:= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.177 ) elibc_glibc? ( >=sys-libs/glibc-2.34 >=sys-libs/libxcrypt-4.4.0 ) elibc_musl? ( >=sys-libs/musl-1.2.5-r8 virtual/libcrypt ) fido2? ( dev-libs/libfido2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) remote? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2 ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0= ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0= ) openssl? ( >=dev-libs/openssl-3.0.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc ) pkcs11? ( >=app-crypt/p11-kit-0.23.3 ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1 ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.4.0 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) tpm? ( app-crypt/tpm2-tss ) xkb? ( >=x11-libs/libxkbcommon-0.4.1 ) zstd? ( >=app-arch/zstd-1.4.0:0= ) >=sys-kernel/linux-headers-5.10 -DESCRIPTION=System and service manager for Linux -EAPI=8 -HOMEPAGE=https://systemd.io/ -INHERIT=branding linux-info meson-multilib optfeature pam python-single-r1 secureboot shell-completion systemd toolchain-funcs udev -IUSE=acl apparmor audit boot bpf cryptsetup curl +dns-over-tls elfutils fido2 +gcrypt gnutls homed idn importd +kernel-install +kmod +lz4 lzma +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode remote +resolvconf +seccomp selinux sysv-utils test tpm ukify vanilla xkb +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 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 secureboot -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=>=sys-apps/dbus-1.9.8[systemd] >=sys-fs/udev-init-scripts-34 policykit? ( sys-auth/polkit ) !sysv-utils? ( sys-apps/systemd-initctl ) !vanilla? ( sys-apps/gentoo-systemd-integration ) -RDEPEND=>=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) apparmor? ( >=sys-libs/libapparmor-2.13 ) audit? ( >=sys-process/audit-2 ) bpf? ( >=dev-libs/libbpf-1.4.0 ) cryptsetup? ( >=sys-fs/cryptsetup-2.4.0:= ) curl? ( >=net-misc/curl-7.32.0:0= ) elfutils? ( >=dev-libs/elfutils-0.177 ) elibc_glibc? ( >=sys-libs/glibc-2.34 >=sys-libs/libxcrypt-4.4.0 ) elibc_musl? ( >=sys-libs/musl-1.2.5-r8 virtual/libcrypt ) fido2? ( dev-libs/libfido2 ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) gnutls? ( >=net-libs/gnutls-3.6.0:0= ) remote? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) idn? ( net-dns/libidn2 ) importd? ( app-arch/bzip2:0= virtual/zlib:= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0= ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0= ) openssl? ( >=dev-libs/openssl-3.0.0:0= ) pam? ( sys-libs/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) passwdqc? ( sys-auth/passwdqc ) pkcs11? ( >=app-crypt/p11-kit-0.23.3 ) pcre? ( dev-libs/libpcre2 ) pwquality? ( >=dev-libs/libpwquality-1.4.1 ) qrcode? ( >=media-gfx/qrencode-3:0= ) seccomp? ( >=sys-libs/libseccomp-2.4.0 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) tpm? ( app-crypt/tpm2-tss ) xkb? ( >=x11-libs/libxkbcommon-0.4.1 ) zstd? ( >=app-arch/zstd-1.4.0:0= ) >=acct-group/adm-0-r1 >=acct-group/wheel-0-r1 >=acct-group/kmem-0-r1 >=acct-group/tty-0-r1 >=acct-group/utmp-0-r1 >=acct-group/audio-0-r1 >=acct-group/cdrom-0-r1 acct-group/clock >=acct-group/dialout-0-r1 >=acct-group/disk-0-r1 >=acct-group/input-0-r1 >=acct-group/kvm-0-r1 >=acct-group/lp-0-r1 >=acct-group/render-0-r1 acct-group/sgx >=acct-group/tape-0-r1 acct-group/users >=acct-group/video-0-r1 >=acct-group/systemd-journal-0-r1 >=acct-user/root-0-r1 acct-user/nobody >=acct-user/systemd-journal-remote-0-r1 >=acct-user/systemd-coredump-0-r1 >=acct-user/systemd-network-0-r1 acct-user/systemd-oom >=acct-user/systemd-resolve-0-r1 >=acct-user/systemd-timesync-0-r1 >=sys-apps/baselayout-2.2 ukify? ( 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/pefile[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pefile[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pefile[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pefile[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pefile[python_targets_python3_14(-)] ) ) selinux? ( sec-policy/selinux-base-policy[systemd] sec-policy/selinux-ntp ) sysv-utils? ( !sys-apps/openrc[sysv-utils(-)] !sys-apps/sysvinit ) !sysv-utils? ( sys-apps/sysvinit ) resolvconf? ( !net-dns/openresolv ) !sys-auth/nss-myhostname !sys-fs/eudev !sys-fs/udev -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 ) boot? ( kernel-install ) dns-over-tls? ( openssl ) fido2? ( cryptsetup openssl ) homed? ( cryptsetup pam openssl ) importd? ( curl lzma openssl ) ?? ( passwdqc pwquality ) passwdqc? ( homed ) pwquality? ( homed ) remote? ( curl ) ukify? ( boot ) -RESTRICT=!test? ( test ) -SLOT=0/2 -SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v260.tar.gz -> systemd-260.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=4fc7024c1d59fab1831564ec73abcf15 diff --git a/metadata/md5-cache/sys-apps/systemd-260.1 b/metadata/md5-cache/sys-apps/systemd-260.1 index 5d00061093a8..14124cc3a550 100644 --- a/metadata/md5-cache/sys-apps/systemd-260.1 +++ b/metadata/md5-cache/sys-apps/systemd-260.1 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v260.1.tar.gz -> systemd-260.1.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=e438f6ac26c589ae86d1554c749dc16f +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 +_md5_=5cdfeb344e04f2de389683ba06720552 diff --git a/metadata/md5-cache/sys-apps/systemd-9999 b/metadata/md5-cache/sys-apps/systemd-9999 index c9a0252b56fb..4bdea6431a63 100644 --- a/metadata/md5-cache/sys-apps/systemd-9999 +++ b/metadata/md5-cache/sys-apps/systemd-9999 @@ -13,5 +13,5 @@ RDEPEND=>=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) apparmor? ( >=sys-libs/ 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 ) boot? ( kernel-install ) dns-over-tls? ( openssl ) fido2? ( cryptsetup openssl ) homed? ( cryptsetup pam openssl ) importd? ( curl lzma openssl ) ?? ( passwdqc pwquality ) passwdqc? ( homed ) pwquality? ( homed ) remote? ( curl ) ukify? ( boot ) RESTRICT=!test? ( test ) SLOT=0/2 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=28bd4d942ff48ad4128187eef17fcdfe +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 branding 7bcece3faa73dd0fc3e597013510d53a flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 +_md5_=574467c02060cf43115a5566b07f6787 diff --git a/metadata/md5-cache/sys-apps/systemd-readahead-216 b/metadata/md5-cache/sys-apps/systemd-readahead-216 index afb44c14db34..f05e867ed85d 100644 --- a/metadata/md5-cache/sys-apps/systemd-readahead-216 +++ b/metadata/md5-cache/sys-apps/systemd-readahead-216 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 MIT RDEPEND=>=sys-apps/systemd-217:= SLOT=0 SRC_URI=https://www.freedesktop.org/software/systemd/systemd-216.tar.xz -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=16d1a2e9e5f1907f2b05edaae482d954 diff --git a/metadata/md5-cache/sys-apps/systemd-utils-255.18 b/metadata/md5-cache/sys-apps/systemd-utils-255.18 index b6169c6e8df3..43d06058a1fc 100644 --- a/metadata/md5-cache/sys-apps/systemd-utils-255.18 +++ b/metadata/md5-cache/sys-apps/systemd-utils-255.18 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( kernel-install tmpfiles sysusers udev ) boot? ( kernel-install RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd-stable/archive/refs/tags/v255.18.tar.gz -> systemd-stable-255.18.tar.gz elibc_musl? ( https://dev.gentoo.org/~floppym/dist/systemd-musl-patches-255.14.tar.gz ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e8955607adf2670926252cca07ff83c4 diff --git a/metadata/md5-cache/sys-apps/systemd-utils-259.3 b/metadata/md5-cache/sys-apps/systemd-utils-259.3 index 10f2faadc500..8a0b2fc4d241 100644 --- a/metadata/md5-cache/sys-apps/systemd-utils-259.3 +++ b/metadata/md5-cache/sys-apps/systemd-utils-259.3 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( kernel-install tmpfiles sysusers udev ) boot? ( kernel-install RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v259.3.tar.gz -> systemd-259.3.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=18653ce1792b23012361eee8b756e70a diff --git a/metadata/md5-cache/sys-apps/systemd-utils-259.4 b/metadata/md5-cache/sys-apps/systemd-utils-259.4 index 4bdff612db38..d0a2ea4201fa 100644 --- a/metadata/md5-cache/sys-apps/systemd-utils-259.4 +++ b/metadata/md5-cache/sys-apps/systemd-utils-259.4 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( kernel-install tmpfiles sysusers udev ) boot? ( kernel-install RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v259.4.tar.gz -> systemd-259.4.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=ef37a39c7967f81f0329f187d2430594 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 +_md5_=b0545fbce47c49bd0e934c6b5e742c13 diff --git a/metadata/md5-cache/sys-apps/systemd-utils-260-r1 b/metadata/md5-cache/sys-apps/systemd-utils-260-r1 deleted file mode 100644 index 4d3a0ed6787a..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-utils-260-r1 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/gperf dev-util/patchelf >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig python_single_target_python3_10? ( dev-python/jinja2[python_targets_python3_10(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_10(-)] test? ( dev-python/pefile[python_targets_python3_10(-)] ) ) ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_11(-)] test? ( dev-python/pefile[python_targets_python3_11(-)] ) ) ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_12(-)] test? ( dev-python/pefile[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_13(-)] test? ( dev-python/pefile[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( dev-python/jinja2[python_targets_python3_14(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_14(-)] test? ( dev-python/pefile[python_targets_python3_14(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst setup test -DEPEND=selinux? ( sys-libs/libselinux:0= ) tmpfiles? ( acl? ( sys-apps/acl ) ) udev? ( >=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) kmod? ( >=sys-apps/kmod-15 ) ) >=sys-kernel/linux-headers-3.11 -DESCRIPTION=Utilities split out from systemd for OpenRC users -EAPI=8 -HOMEPAGE=https://systemd.io/ -INHERIT=linux-info meson-multilib python-single-r1 secureboot shell-completion udev -IUSE=+acl boot +kmod kernel-install selinux split-usr sysusers +tmpfiles test +udev ukify 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 secureboot -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=udev? ( >=sys-fs/udev-init-scripts-34 ) -RDEPEND=selinux? ( sys-libs/libselinux:0= ) tmpfiles? ( acl? ( sys-apps/acl ) ) udev? ( >=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) kmod? ( >=sys-apps/kmod-15 ) ) boot? ( !<sys-boot/systemd-boot-250 ) ukify? ( 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/pefile[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pefile[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pefile[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pefile[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pefile[python_targets_python3_14(-)] ) ) tmpfiles? ( !<sys-apps/systemd-tmpfiles-250 ) udev? ( acct-group/audio acct-group/cdrom acct-group/dialout acct-group/disk acct-group/floppy acct-group/input acct-group/kmem acct-group/kvm acct-group/lp acct-group/render acct-group/sgx acct-group/tape acct-group/tty acct-group/usb acct-group/video !sys-apps/gentoo-systemd-integration !<sys-fs/udev-250 !sys-fs/eudev ) !sys-apps/systemd -REQUIRED_USE=|| ( kernel-install tmpfiles sysusers udev ) boot? ( kernel-install ) ukify? ( boot ) ^^ ( 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://github.com/systemd/systemd/archive/refs/tags/v260.tar.gz -> systemd-260.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=08a7ba54b79262f82eeb0bdde2812f94 diff --git a/metadata/md5-cache/sys-apps/systemd-utils-260.1 b/metadata/md5-cache/sys-apps/systemd-utils-260.1 deleted file mode 100644 index de997b9e29bd..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-utils-260.1 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/gperf dev-util/patchelf >=sys-apps/coreutils-8.16 sys-devel/gettext virtual/pkgconfig python_single_target_python3_10? ( dev-python/jinja2[python_targets_python3_10(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_10(-)] test? ( dev-python/pefile[python_targets_python3_10(-)] ) ) ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_11(-)] test? ( dev-python/pefile[python_targets_python3_11(-)] ) ) ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_12(-)] test? ( dev-python/pefile[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_13(-)] test? ( dev-python/pefile[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( dev-python/jinja2[python_targets_python3_14(-)] boot? ( >=dev-python/pyelftools-0.30[python_targets_python3_14(-)] test? ( dev-python/pefile[python_targets_python3_14(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst setup test -DEPEND=selinux? ( sys-libs/libselinux:0= ) tmpfiles? ( acl? ( sys-apps/acl ) ) udev? ( >=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) kmod? ( >=sys-apps/kmod-15 ) ) >=sys-kernel/linux-headers-3.11 -DESCRIPTION=Utilities split out from systemd for OpenRC users -EAPI=8 -HOMEPAGE=https://systemd.io/ -INHERIT=linux-info meson-multilib python-single-r1 secureboot shell-completion udev -IUSE=+acl boot +kmod kernel-install selinux split-usr sysusers +tmpfiles test +udev ukify 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 secureboot -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=udev? ( >=sys-fs/udev-init-scripts-34 ) -RDEPEND=selinux? ( sys-libs/libselinux:0= ) tmpfiles? ( acl? ( sys-apps/acl ) ) udev? ( >=sys-apps/util-linux-2.37 acl? ( sys-apps/acl ) kmod? ( >=sys-apps/kmod-15 ) ) boot? ( !<sys-boot/systemd-boot-250 ) ukify? ( 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/pefile[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pefile[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pefile[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pefile[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pefile[python_targets_python3_14(-)] ) ) tmpfiles? ( !<sys-apps/systemd-tmpfiles-250 ) udev? ( acct-group/audio acct-group/cdrom acct-group/dialout acct-group/disk acct-group/floppy acct-group/input acct-group/kmem acct-group/kvm acct-group/lp acct-group/render acct-group/sgx acct-group/tape acct-group/tty acct-group/usb acct-group/video !sys-apps/gentoo-systemd-integration !<sys-fs/udev-250 !sys-fs/eudev ) !sys-apps/systemd -REQUIRED_USE=|| ( kernel-install tmpfiles sysusers udev ) boot? ( kernel-install ) ukify? ( boot ) ^^ ( 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://github.com/systemd/systemd/archive/refs/tags/v260.1.tar.gz -> systemd-260.1.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=3390a292b596b3d61aee87d55a445981 diff --git a/metadata/md5-cache/sys-apps/systemd-utils-260.1-r1 b/metadata/md5-cache/sys-apps/systemd-utils-260.1-r1 index 24eaa8a1d7b1..87abcc29d3e7 100644 --- a/metadata/md5-cache/sys-apps/systemd-utils-260.1-r1 +++ b/metadata/md5-cache/sys-apps/systemd-utils-260.1-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( kernel-install tmpfiles sysctl sysusers udev ) boot? ( kernel- RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd/archive/refs/tags/v260.1.tar.gz -> systemd-260.1.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 -_md5_=e4e27d20eb8f7d558212081ec9aae663 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd secureboot d98b63e30a9468e1f1c06d3d7c66e760 shell-completion 0b655d0d825e157a5e99c463bddaac16 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 +_md5_=65e2d979fc41d2ac5e889f9b4d94f29b diff --git a/metadata/md5-cache/sys-apps/uam-0.3.2-r2 b/metadata/md5-cache/sys-apps/uam-0.3.2-r2 index ebb779375678..49352edbe34f 100644 --- a/metadata/md5-cache/sys-apps/uam-0.3.2-r2 +++ b/metadata/md5-cache/sys-apps/uam-0.3.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=acct-group/plugdev virtual/udev SLOT=0 SRC_URI=https://github.com/projg2/uam/releases/download/uam-0.3.2/uam-0.3.2.tar.bz2 -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=63690fb4581986943340b02a2708384b diff --git a/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.1-r1 b/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.1-r1 index 0291be6c3df8..10c12f9a4a00 100644 --- a/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.1-r1 +++ b/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.1-r1 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev virtual/libusb:1 SLOT=0 SRC_URI=https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 -_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5b878f8620b517c53720fb214f10dda5 diff --git a/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.2 b/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.2 index d68d138495ec..8b4c5381a529 100644 --- a/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.2 +++ b/metadata/md5-cache/sys-apps/usb_modeswitch-2.6.2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev virtual/libusb:1 dev-lang/tcl SLOT=0 SRC_URI=https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.2.tar.bz2 https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 -_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=27748727e0c143cede54eb6b068f8a7c diff --git a/metadata/md5-cache/sys-auth/AusweisApp-2.5.1 b/metadata/md5-cache/sys-auth/AusweisApp-2.5.1 new file mode 100644 index 000000000000..8b4cece09287 --- /dev/null +++ b/metadata/md5-cache/sys-auth/AusweisApp-2.5.1 @@ -0,0 +1,14 @@ +BDEPEND=dev-qt/qtshadertools:6 dev-qt/qttools:6[linguist] virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/openssl:0= dev-qt/qtbase:6[concurrent,network,widgets] dev-qt/qtdeclarative:6[widgets] dev-qt/qtscxml:6[qml] dev-qt/qtsvg:6 dev-qt/qtwebsockets:6[qml] net-libs/http-parser:0= sys-apps/pcsc-lite virtual/udev +DESCRIPTION=Official authentication app for German ID cards and residence permits +EAPI=8 +HOMEPAGE=https://www.ausweisapp.bund.de/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 +LICENSE=EUPL-1.2 +RDEPEND=dev-libs/openssl:0= dev-qt/qtbase:6[concurrent,network,widgets] dev-qt/qtdeclarative:6[widgets] dev-qt/qtscxml:6[qml] dev-qt/qtsvg:6 dev-qt/qtwebsockets:6[qml] net-libs/http-parser:0= sys-apps/pcsc-lite virtual/udev +SLOT=0 +SRC_URI=https://github.com/Governikus/AusweisApp/archive/2.5.1.tar.gz -> AusweisApp-2.5.1.tar.gz +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=eec79b7047d5d830b1675aad3cdcbc24 diff --git a/metadata/md5-cache/sys-auth/elogind-252.9-r3 b/metadata/md5-cache/sys-auth/elogind-252.9-r3 index a2f2a806eb00..83aa4e86109c 100644 --- a/metadata/md5-cache/sys-auth/elogind-252.9-r3 +++ b/metadata/md5-cache/sys-auth/elogind-252.9-r3 @@ -13,5 +13,5 @@ RDEPEND=audit? ( sys-process/audit ) sys-apps/util-linux sys-libs/libcap virtual RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/v252.9.tar.gz -> elogind-252.9.tar.gz -_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=846d76198351d1530ca0286020c71f48 diff --git a/metadata/md5-cache/sys-auth/elogind-255.17-r1 b/metadata/md5-cache/sys-auth/elogind-255.17-r1 index d8daf07de274..286719230af1 100644 --- a/metadata/md5-cache/sys-auth/elogind-255.17-r1 +++ b/metadata/md5-cache/sys-auth/elogind-255.17-r1 @@ -13,5 +13,5 @@ RDEPEND=audit? ( sys-process/audit ) sys-apps/util-linux sys-libs/libcap virtual RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/v255.17.tar.gz -> elogind-255.17.tar.gz -_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2e826d4509755bd8374f402a4ca1f5e3 diff --git a/metadata/md5-cache/sys-auth/elogind-255.22 b/metadata/md5-cache/sys-auth/elogind-255.22 index 129c9254b202..f4615fa89f7b 100644 --- a/metadata/md5-cache/sys-auth/elogind-255.22 +++ b/metadata/md5-cache/sys-auth/elogind-255.22 @@ -13,5 +13,5 @@ RDEPEND=audit? ( sys-process/audit ) sys-apps/util-linux sys-libs/libcap virtual RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/refs/tags/V255.22.tar.gz -> elogind-255.22.tar.gz -_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e3367b7d5b30085efd48a9bc34c35f03 diff --git a/metadata/md5-cache/sys-auth/elogind-255.22-r1 b/metadata/md5-cache/sys-auth/elogind-255.22-r1 index f8818396915b..956cbc94080b 100644 --- a/metadata/md5-cache/sys-auth/elogind-255.22-r1 +++ b/metadata/md5-cache/sys-auth/elogind-255.22-r1 @@ -13,5 +13,5 @@ RDEPEND=audit? ( sys-process/audit ) sys-apps/util-linux sys-libs/libcap virtual RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/refs/tags/V255.22.tar.gz -> elogind-255.22.tar.gz -_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=7120517211c4696715b76774e0df3898 diff --git a/metadata/md5-cache/sys-auth/libfprint-1.94.10 b/metadata/md5-cache/sys-auth/libfprint-1.94.10 index b9c07fa17c1d..13671783c26a 100644 --- a/metadata/md5-cache/sys-auth/libfprint-1.94.10 +++ b/metadata/md5-cache/sys-auth/libfprint-1.94.10 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib:2 dev-libs/libgudev >=dev-libs/openssl-3:= dev-python/pygobject dev-libs/libgusb x11-libs/pixman examples? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 ) SLOT=2 SRC_URI=!tod? ( https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.10/libfprint-v1.94.10.tar.bz2 -> libfprint-1.94.10.tar.bz2 ) tod? ( https://gitlab.freedesktop.org/3v1n0/libfprint/-/archive/v1.94.10+tod1/libfprint-v1.94.10+tod1.tar.bz2 -> libfprint-1.94.10+tod1.tar.bz2 ) -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7e3509b3203db1af5cfe1df792336eaf diff --git a/metadata/md5-cache/sys-auth/libfprint-1.94.4 b/metadata/md5-cache/sys-auth/libfprint-1.94.4 index bfd67a108f70..28c7319ce06f 100644 --- a/metadata/md5-cache/sys-auth/libfprint-1.94.4 +++ b/metadata/md5-cache/sys-auth/libfprint-1.94.4 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib:2 dev-libs/libgudev dev-libs/libgusb dev-libs/nss virtual/libusb:1= x11-libs/pixman !>=sys-auth/libfprint-1.90:0 examples? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 ) SLOT=2 SRC_URI=https://github.com/freedesktop/libfprint/archive/refs/tags/v1.94.4.tar.gz -> libfprint-1.94.4.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=04a47ab773968205d549fa533eb8a122 diff --git a/metadata/md5-cache/sys-auth/libfprint-1.94.7 b/metadata/md5-cache/sys-auth/libfprint-1.94.7 index b7cae9d2c19c..fe25e54c9db0 100644 --- a/metadata/md5-cache/sys-auth/libfprint-1.94.7 +++ b/metadata/md5-cache/sys-auth/libfprint-1.94.7 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib:2 dev-libs/libgudev dev-libs/nss dev-python/pygobject dev-libs/libgusb x11-libs/pixman examples? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 ) SLOT=2 SRC_URI=https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.7/libfprint-v1.94.7.tar.bz2 -> libfprint-1.94.7.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ae641de6cb23b04e4548b8ba6e07dae0 diff --git a/metadata/md5-cache/sys-auth/libfprint-1.94.9 b/metadata/md5-cache/sys-auth/libfprint-1.94.9 index af4f3ef0e189..51110deccc0f 100644 --- a/metadata/md5-cache/sys-auth/libfprint-1.94.9 +++ b/metadata/md5-cache/sys-auth/libfprint-1.94.9 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib:2 dev-libs/libgudev >=dev-libs/openssl-3:= dev-python/pygobject dev-libs/libgusb x11-libs/pixman examples? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 ) SLOT=2 SRC_URI=https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.9/libfprint-v1.94.9.tar.bz2 -> libfprint-1.94.9.tar.bz2 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c15fe19800f121c3072866839767702a diff --git a/metadata/md5-cache/sys-auth/libfprint-1.94.9-r1 b/metadata/md5-cache/sys-auth/libfprint-1.94.9-r1 index dbc5b0920a78..90a826aacd36 100644 --- a/metadata/md5-cache/sys-auth/libfprint-1.94.9-r1 +++ b/metadata/md5-cache/sys-auth/libfprint-1.94.9-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-libs/glib:2 dev-libs/libgudev >=dev-libs/openssl-3:= dev-python/pygobject dev-libs/libgusb x11-libs/pixman examples? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 ) SLOT=2 SRC_URI=!tod? ( https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.9/libfprint-v1.94.9.tar.bz2 -> libfprint-1.94.9.tar.bz2 ) tod? ( https://gitlab.freedesktop.org/3v1n0/libfprint/-/archive/v1.94.9+tod1/libfprint-v1.94.9+tod1.tar.bz2 -> libfprint-1.94.9+tod1.tar.bz2 ) -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3981ac6a2feb8d64bcfafe35ecceb30f diff --git a/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.12.018 b/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.12.018 index b96bc0c9563a..71345ec6734d 100644 --- a/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.12.018 +++ b/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.12.018 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/openssl:0/3 sys-auth/libfprint[tod(-)] RESTRICT=bindist mirror SLOT=0 SRC_URI=http://dell.archive.canonical.com/updates/pool/public/libf/libfprint-2-tod1-broadcom/libfprint-2-tod1-broadcom_5.12.018.orig.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=43d5de89311bc728edcbe44997d118f1 diff --git a/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.15.285 b/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.15.285 index fc0a411e7b40..d8346aa43b12 100644 --- a/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.15.285 +++ b/metadata/md5-cache/sys-auth/libfprint-2-tod1-broadcom-5.15.285 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/openssl:0/3 sys-auth/libfprint[tod(-)] RESTRICT=bindist mirror SLOT=0 SRC_URI=http://dell.archive.canonical.com/updates/pool/public/libf/libfprint-2-tod1-broadcom/libfprint-2-tod1-broadcom_5.15.285-5.15.010.0.orig.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b37333caae8acc31a90a164f1e7b069c diff --git a/metadata/md5-cache/sys-auth/polkit-126-r2 b/metadata/md5-cache/sys-auth/polkit-126-r3 index 569b73110b16..cc6c5bd0152b 100644 --- a/metadata/md5-cache/sys-auth/polkit-126-r2 +++ b/metadata/md5-cache/sys-auth/polkit-126-r3 @@ -1,17 +1,18 @@ BDEPEND=acct-user/polkitd app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xsl-stylesheets >=dev-libs/glib-2.32 dev-libs/libxslt dev-util/glib-utils virtual/pkgconfig introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2 ) nls? ( sys-devel/gettext ) test? ( || ( ( dev-lang/python:3.14 dev-python/dbus-python[python_targets_python3_14(-)] dev-python/python-dbusmock[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/dbus-python[python_targets_python3_13(-)] dev-python/python-dbusmock[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/dbus-python[python_targets_python3_12(-)] dev-python/python-dbusmock[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/dbus-python[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/dbus-python[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array virtual/pkgconfig DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) !systemd? ( sys-auth/elogind ) +DEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=8 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://github.com/polkit-org/polkit INHERIT=meson pam pax-utils python-any-r1 systemd tmpfiles xdg-utils -IUSE=examples gtk +introspection kde pam nls selinux systemd test +IUSE=elogind examples gtk +introspection kde pam nls selinux systemd test KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=LGPL-2 PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) -RDEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) !systemd? ( sys-auth/elogind ) acct-user/polkitd selinux? ( sec-policy/selinux-policykit ) virtual/tmpfiles +RDEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) acct-user/polkitd selinux? ( sec-policy/selinux-policykit ) virtual/tmpfiles +REQUIRED_USE=?? ( elogind systemd ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/polkit-org/polkit/archive/refs/tags/126.tar.gz -> polkit-126.tar.gz _eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=5f96f886f7e357dc5aadd723e2f811e2 +_md5_=ad8a597cee7178a5523119eeacac0540 diff --git a/metadata/md5-cache/sys-auth/polkit-9999 b/metadata/md5-cache/sys-auth/polkit-9999 index 551cf236bbcc..7d31d5af7433 100644 --- a/metadata/md5-cache/sys-auth/polkit-9999 +++ b/metadata/md5-cache/sys-auth/polkit-9999 @@ -1,16 +1,17 @@ BDEPEND=acct-user/polkitd app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xsl-stylesheets >=dev-libs/glib-2.32 dev-libs/libxslt dev-util/glib-utils virtual/pkgconfig introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2 ) nls? ( sys-devel/gettext ) test? ( || ( ( dev-lang/python:3.14 dev-python/dbus-python[python_targets_python3_14(-)] dev-python/python-dbusmock[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/dbus-python[python_targets_python3_13(-)] dev-python/python-dbusmock[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/dbus-python[python_targets_python3_12(-)] dev-python/python-dbusmock[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/dbus-python[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/dbus-python[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) !systemd? ( sys-auth/elogind ) +DEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=8 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://github.com/polkit-org/polkit INHERIT=meson pam pax-utils python-any-r1 systemd tmpfiles xdg-utils git-r3 -IUSE=examples gtk +introspection kde pam nls selinux systemd test +IUSE=elogind examples gtk +introspection kde pam nls selinux systemd test LICENSE=LGPL-2 PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) PROPERTIES=live -RDEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) !systemd? ( sys-auth/elogind ) acct-user/polkitd selinux? ( sec-policy/selinux-policykit ) virtual/tmpfiles +RDEPEND=>=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) acct-user/polkitd selinux? ( sec-policy/selinux-policykit ) virtual/tmpfiles +REQUIRED_USE=?? ( elogind systemd ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pam b56d0c9c20fc5b553f13c8ae165a10a5 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=a74908c03da72e064dc69b6aebcf5a05 +_md5_=4d56f7db93e74aba5d4a298998e30e38 diff --git a/metadata/md5-cache/sys-auth/sssd-2.12.0-r2 b/metadata/md5-cache/sys-auth/sssd-2.12.0-r2 index b8b0dee9e981..911aebbf8735 100644 --- a/metadata/md5-cache/sys-auth/sssd-2.12.0-r2 +++ b/metadata/md5-cache/sys-auth/sssd-2.12.0-r2 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_10 python_single_target RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/SSSD/sssd/releases/download/2.12.0/sssd-2.12.0.tar.gz https://github.com/SSSD/sssd/releases/download/2.12.0/sssd-2.12.0.tar.gz.asc -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 plocale 980baab6fd56db6149d0a9396e0b21c9 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 plocale 980baab6fd56db6149d0a9396e0b21c9 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=9b82763d8a9b8673ae895579172c3b56 diff --git a/metadata/md5-cache/sys-auth/sssd-2.13.0 b/metadata/md5-cache/sys-auth/sssd-2.13.0 index 074cc9ee2fc0..b3b3bee5859c 100644 --- a/metadata/md5-cache/sys-auth/sssd-2.13.0 +++ b/metadata/md5-cache/sys-auth/sssd-2.13.0 @@ -14,5 +14,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_10 python_single_target RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/SSSD/sssd/releases/download/2.13.0/sssd-2.13.0.tar.gz https://github.com/SSSD/sssd/releases/download/2.13.0/sssd-2.13.0.tar.gz.asc -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 plocale 980baab6fd56db6149d0a9396e0b21c9 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 plocale 980baab6fd56db6149d0a9396e0b21c9 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=f769940f26979bbf979c2efe14a03297 diff --git a/metadata/md5-cache/sys-auth/thinkfinger-0.3-r3 b/metadata/md5-cache/sys-auth/thinkfinger-0.3-r3 index 34045e72aeab..86a5371d2e77 100644 --- a/metadata/md5-cache/sys-auth/thinkfinger-0.3-r3 +++ b/metadata/md5-cache/sys-auth/thinkfinger-0.3-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/libusb:0 pam? ( sys-libs/pam ) acct-group/fingerprint SLOT=0 SRC_URI=https://downloads.sourceforge.net/thinkfinger/thinkfinger-0.3.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 pam b56d0c9c20fc5b553f13c8ae165a10a5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ac577f2e436836c4d115f42c30ccaeea diff --git a/metadata/md5-cache/sys-auth/ykpers-1.20.0-r1 b/metadata/md5-cache/sys-auth/ykpers-1.20.0-r1 index c035a5808dbf..33581503e2c0 100644 --- a/metadata/md5-cache/sys-auth/ykpers-1.20.0-r1 +++ b/metadata/md5-cache/sys-auth/ykpers-1.20.0-r1 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-libs/json-c:= >=sys-auth/libyubikey-1.6 virtual/libusb:1 SLOT=0 SRC_URI=https://github.com/Yubico/yubikey-personalization/archive/refs/tags/v1.20.0.tar.gz -> ykpers-1.20.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=a1dc34d09b13be343cf5b4f851d0216e diff --git a/metadata/md5-cache/sys-block/io-scheduler-udev-rules-2 b/metadata/md5-cache/sys-block/io-scheduler-udev-rules-2 index 4737602afe66..a112778fa993 100644 --- a/metadata/md5-cache/sys-block/io-scheduler-udev-rules-2 +++ b/metadata/md5-cache/sys-block/io-scheduler-udev-rules-2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=virtual/udev SLOT=0 SRC_URI=https://gitlab.com/pachoramos/io-scheduler-udev-rules/-/archive/2/io-scheduler-udev-rules-2.tar.bz2 -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=da24c3257495d64d5452c1b2204553c4 diff --git a/metadata/md5-cache/sys-block/ndctl-76.1 b/metadata/md5-cache/sys-block/ndctl-76.1 index 8efd07c2039e..48cdf1233cfd 100644 --- a/metadata/md5-cache/sys-block/ndctl-76.1 +++ b/metadata/md5-cache/sys-block/ndctl-76.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/iniparser:0= dev-libs/json-c:= sys-apps/keyutils:= sys-apps/kmo RESTRICT=!test? ( test ) test SLOT=0/6 SRC_URI=https://github.com/pmem/ndctl/archive/v76.1.tar.gz -> ndctl-76.1.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5350a9781109fc44e1f5aabbe8578e65 diff --git a/metadata/md5-cache/sys-block/ndctl-77-r2 b/metadata/md5-cache/sys-block/ndctl-77-r2 index 7b43a5f23874..4db71175e41c 100644 --- a/metadata/md5-cache/sys-block/ndctl-77-r2 +++ b/metadata/md5-cache/sys-block/ndctl-77-r2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/iniparser-4.1-r2:= dev-libs/json-c:= sys-apps/keyutils:= sys- RESTRICT=!test? ( test ) test SLOT=0/6 SRC_URI=https://github.com/pmem/ndctl/archive/v77.tar.gz -> ndctl-77.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=57e75c56e620ee8297bcb27236bdf8a0 diff --git a/metadata/md5-cache/sys-block/open-iscsi-2.1.10-r1 b/metadata/md5-cache/sys-block/open-iscsi-2.1.10-r1 index 836c4890adb7..4a7ce58635c5 100644 --- a/metadata/md5-cache/sys-block/open-iscsi-2.1.10-r1 +++ b/metadata/md5-cache/sys-block/open-iscsi-2.1.10-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=infiniband? ( rdma ) || ( rdma tcp ) RESTRICT=test SLOT=0/0.2 SRC_URI=https://github.com/open-iscsi/open-iscsi/archive/2.1.10.tar.gz -> open-iscsi-2.1.10.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=7bfd0a157243a66a4091b8ecbaae1402 diff --git a/metadata/md5-cache/sys-block/open-iscsi-2.1.11 b/metadata/md5-cache/sys-block/open-iscsi-2.1.11 index ca742d9cc8de..40548ce87e00 100644 --- a/metadata/md5-cache/sys-block/open-iscsi-2.1.11 +++ b/metadata/md5-cache/sys-block/open-iscsi-2.1.11 @@ -13,5 +13,5 @@ REQUIRED_USE=infiniband? ( rdma ) || ( rdma tcp ) RESTRICT=test SLOT=0/0.2 SRC_URI=https://github.com/open-iscsi/open-iscsi/archive/2.1.11.tar.gz -> open-iscsi-2.1.11.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5eb00c1ea77990fded29dca735b5a5d1 diff --git a/metadata/md5-cache/sys-block/wait-for-dri-devices-rules-1 b/metadata/md5-cache/sys-block/wait-for-dri-devices-rules-1 index 4aad756dc5c5..1295e552a706 100644 --- a/metadata/md5-cache/sys-block/wait-for-dri-devices-rules-1 +++ b/metadata/md5-cache/sys-block/wait-for-dri-devices-rules-1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/systemd virtual/udev SLOT=0 SRC_URI=https://gitlab.com/pachoramos/wait-for-dri-devices-rules/-/archive/1/wait-for-dri-devices-rules-1.tar.bz2 -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=6847f4da83ebd03a0d9739c2608d9060 diff --git a/metadata/md5-cache/sys-cluster/ceph-20.1.1-r1 b/metadata/md5-cache/sys-cluster/ceph-20.1.1-r1 index 4a69bdae1b11..0c4a4c5deb63 100644 --- a/metadata/md5-cache/sys-cluster/ceph-20.1.1-r1 +++ b/metadata/md5-cache/sys-cluster/ceph-20.1.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-20.1.1.tar.gz parquet? ( https://github.com/xtensor-stack/xsimd/archive/13.0.0.tar.gz -> ceph-xsimd-20.1.1.tar.gz mirror://apache/arrow/arrow-17.0.0/apache-arrow-17.0.0.tar.gz ) parquet? ( mirror://apache/arrow/arrow-17.0.0/apache-arrow-17.0.0.tar.gz ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c4ef46d9a46fdc494d5bc5221548e091 diff --git a/metadata/md5-cache/sys-cluster/ceph-20.2.1 b/metadata/md5-cache/sys-cluster/ceph-20.2.1 index 4265014a20a1..f8219081dd6c 100644 --- a/metadata/md5-cache/sys-cluster/ceph-20.2.1 +++ b/metadata/md5-cache/sys-cluster/ceph-20.2.1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-20.2.1.tar.gz parquet? ( https://github.com/xtensor-stack/xsimd/archive/13.0.0.tar.gz -> ceph-xsimd-20.2.1.tar.gz mirror://apache/arrow/arrow-17.0.0/apache-arrow-17.0.0.tar.gz ) parquet? ( mirror://apache/arrow/arrow-17.0.0/apache-arrow-17.0.0.tar.gz ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6aac703ce46148622fcd29e21cc42cc5 diff --git a/metadata/md5-cache/sys-cluster/ceph-20.2.1-r2 b/metadata/md5-cache/sys-cluster/ceph-20.2.1-r2 index 9009df352f29..be3869eac394 100644 --- a/metadata/md5-cache/sys-cluster/ceph-20.2.1-r2 +++ b/metadata/md5-cache/sys-cluster/ceph-20.2.1-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-20.2.1.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-cluster/ceph/ceph-20.2.0-libarrow-20.0.0.patch.xz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c cmake 3395ce6618fc5c7af03335471b896644 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=443228fb4d0b35a3ee560bb5a90412d9 diff --git a/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0 b/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0 index 9e1aadab0669..b9c525c76f88 100644 --- a/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0 +++ b/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=pacemaker? ( sys-cluster/pacemaker ) udev? ( virtual/udev ) virtual/tmpfiles SLOT=0 SRC_URI=https://pkg.linbit.com/downloads/drbd/utils/drbd-utils-9.25.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f62a8e04b12d8372409f2659e3b9b587 diff --git a/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0-r1 b/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0-r1 index 6a9563e0ae3e..c23de7188d65 100644 --- a/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0-r1 +++ b/metadata/md5-cache/sys-cluster/drbd-utils-9.25.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=pacemaker? ( sys-cluster/pacemaker ) udev? ( virtual/udev ) virtual/tmpfiles SLOT=0 SRC_URI=https://pkg.linbit.com/downloads/drbd/utils/drbd-utils-9.25.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=fe37f35ff278ff0865bdacab22da2db3 diff --git a/metadata/md5-cache/sys-cluster/drbd-utils-9.27.0 b/metadata/md5-cache/sys-cluster/drbd-utils-9.27.0 index 3260724a92ff..99bf6fe7e445 100644 --- a/metadata/md5-cache/sys-cluster/drbd-utils-9.27.0 +++ b/metadata/md5-cache/sys-cluster/drbd-utils-9.27.0 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/keyutils pacemaker? ( sys-cluster/pacemaker ) udev? ( virtual/udev ) virtual/tmpfiles SLOT=0 SRC_URI=https://pkg.linbit.com/downloads/drbd/utils/drbd-utils-9.27.0.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=8a04a26dd45723b4c46a853ed5591362 diff --git a/metadata/md5-cache/sys-cluster/knem-1.1.4_p20250126 b/metadata/md5-cache/sys-cluster/knem-1.1.4_p20250126 index 16978417ee0e..28714a634341 100644 --- a/metadata/md5-cache/sys-cluster/knem-1.1.4_p20250126 +++ b/metadata/md5-cache/sys-cluster/knem-1.1.4_p20250126 @@ -12,5 +12,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=sys-apps/hwloc:= sys-apps/kmod[tools] modules? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) SLOT=0 SRC_URI=https://dev.gentoo.org/~mpagano/dist/knem/knem-1.1.4_p20250126.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=18269d18bc1bbac75089315811ec97f7 diff --git a/metadata/md5-cache/sys-cluster/knem-9999 b/metadata/md5-cache/sys-cluster/knem-9999 index bf935dd60bc4..23bc55c61167 100644 --- a/metadata/md5-cache/sys-cluster/knem-9999 +++ b/metadata/md5-cache/sys-cluster/knem-9999 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2 PROPERTIES=live RDEPEND=sys-apps/hwloc:= sys-apps/kmod[tools] modules? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=463b4d45f4c835e169531cfc6caf5d1e diff --git a/metadata/md5-cache/sys-cluster/rdma-core-53.1 b/metadata/md5-cache/sys-cluster/rdma-core-53.1 index 9c57119dfa8b..600cc1f63d0c 100644 --- a/metadata/md5-cache/sys-cluster/rdma-core-53.1 +++ b/metadata/md5-cache/sys-cluster/rdma-core-53.1 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl:= virtual/libudev:= lttng? ( dev-util/lttng-ust:= ) neigh? 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 ) ) SLOT=0 SRC_URI=https://github.com/linux-rdma/rdma-core/releases/download/v53.1/rdma-core-53.1.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=01ce3dcf2de4c2d6fe81f35f31d90e7e diff --git a/metadata/md5-cache/sys-cluster/rdma-core-57.0 b/metadata/md5-cache/sys-cluster/rdma-core-57.0 index ff2651943c5f..07482d00a17f 100644 --- a/metadata/md5-cache/sys-cluster/rdma-core-57.0 +++ b/metadata/md5-cache/sys-cluster/rdma-core-57.0 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl:= virtual/libudev:= lttng? ( dev-util/lttng-ust:= ) neigh? 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 ) ) SLOT=0 SRC_URI=https://github.com/linux-rdma/rdma-core/releases/download/v57.0/rdma-core-57.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=88160b7bd44073045c68f5fe3a5d781e diff --git a/metadata/md5-cache/sys-cluster/rdma-core-58.0 b/metadata/md5-cache/sys-cluster/rdma-core-58.0 index 6efd90928a99..b816d8e94c5a 100644 --- a/metadata/md5-cache/sys-cluster/rdma-core-58.0 +++ b/metadata/md5-cache/sys-cluster/rdma-core-58.0 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl:= virtual/libudev:= lttng? ( dev-util/lttng-ust:= ) neigh? 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 ) ) SLOT=0 SRC_URI=https://github.com/linux-rdma/rdma-core/releases/download/v58.0/rdma-core-58.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=417aee9630c1435019f206ecbeb1de64 diff --git a/metadata/md5-cache/sys-cluster/rdma-core-59.0 b/metadata/md5-cache/sys-cluster/rdma-core-59.0 index 95c02c6d90ae..1e7234dbbcf8 100644 --- a/metadata/md5-cache/sys-cluster/rdma-core-59.0 +++ b/metadata/md5-cache/sys-cluster/rdma-core-59.0 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl:= virtual/libudev:= lttng? ( dev-util/lttng-ust:= ) neigh? 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 ) ) SLOT=0 SRC_URI=https://github.com/linux-rdma/rdma-core/releases/download/v59.0/rdma-core-59.0.tar.gz -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=417aee9630c1435019f206ecbeb1de64 diff --git a/metadata/md5-cache/sys-cluster/rdma-core-9999 b/metadata/md5-cache/sys-cluster/rdma-core-9999 index b9eb6dfa06df..be3a6e00ffe4 100644 --- a/metadata/md5-cache/sys-cluster/rdma-core-9999 +++ b/metadata/md5-cache/sys-cluster/rdma-core-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-lang/perl:= virtual/libudev:= lttng? ( dev-util/lttng-ust:= ) neigh? ( dev-libs/libnl:3 ) systemd? ( sys-apps/systemd:= ) valgrind? ( dev-debug/valgrind ) 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 ) ) !sys-fabric/infiniband-diags !sys-fabric/libibverbs !sys-fabric/librdmacm !sys-fabric/libibumad !sys-fabric/ibacm !sys-fabric/libibmad !sys-fabric/srptools !sys-fabric/infinipath-psm !sys-fabric/libcxgb3 !sys-fabric/libcxgb4 !sys-fabric/libmthca !sys-fabric/libmlx4 !sys-fabric/libmlx5 !sys-fabric/libocrdma !sys-fabric/libnes 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 ) ) SLOT=0 -_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=cmake 3395ce6618fc5c7af03335471b896644 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 perl-functions 1863acf0982afafc67797e3ce7275b4c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=417aee9630c1435019f206ecbeb1de64 diff --git a/metadata/md5-cache/sys-firmware/alsa-firmware-1.2.4-r2 b/metadata/md5-cache/sys-firmware/alsa-firmware-1.2.4-r2 index e4ae7f3661dd..a4cb2f5d3321 100644 --- a/metadata/md5-cache/sys-firmware/alsa-firmware-1.2.4-r2 +++ b/metadata/md5-cache/sys-firmware/alsa-firmware-1.2.4-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=?? ( compress-xz compress-zstd ) RESTRICT=alsa_cards_korg1212? ( bindist ) alsa_cards_maestro3? ( bindist ) alsa_cards_sb16? ( bindist ) alsa_cards_wavefront? ( bindist ) alsa_cards_ymfpci? ( bindist ) SLOT=0 SRC_URI=https://www.alsa-project.org/files/pub/firmware/alsa-firmware-1.2.4.tar.bz2 verify-sig? ( https://www.alsa-project.org/files/pub/firmware/alsa-firmware-1.2.4.tar.bz2.sig ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=82f5e033e06ca0949f7eeec677e0a926 diff --git a/metadata/md5-cache/sys-firmware/midisport-firmware-1.2-r2 b/metadata/md5-cache/sys-firmware/midisport-firmware-1.2-r2 index ad1e380429ec..2b002f25b7df 100644 --- a/metadata/md5-cache/sys-firmware/midisport-firmware-1.2-r2 +++ b/metadata/md5-cache/sys-firmware/midisport-firmware-1.2-r2 @@ -10,5 +10,5 @@ LICENSE=Midisport RDEPEND=sys-apps/fxload virtual/udev SLOT=0 SRC_URI=http://downloads.sourceforge.net/usb-midi-fw/midisport-firmware-1.2.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=458ac6ede1d27edda80bf7b8aa6e01bb diff --git a/metadata/md5-cache/sys-fs/bcache-tools-1.1_p20230217-r2 b/metadata/md5-cache/sys-fs/bcache-tools-1.1_p20230217-r2 index 5950c7b43f15..65ded0c68aa1 100644 --- a/metadata/md5-cache/sys-fs/bcache-tools-1.1_p20230217-r2 +++ b/metadata/md5-cache/sys-fs/bcache-tools-1.1_p20230217-r2 @@ -12,5 +12,5 @@ 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 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 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vcs-snapshot 05efecc60246abc94da28ed8adf74c4d +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vcs-snapshot 05efecc60246abc94da28ed8adf74c4d _md5_=d05f51e016e57657e1009c4571344661 diff --git a/metadata/md5-cache/sys-fs/bcache-tools-9999 b/metadata/md5-cache/sys-fs/bcache-tools-9999 index 8b2829eccb2a..b2b9b1928607 100644 --- a/metadata/md5-cache/sys-fs/bcache-tools-9999 +++ b/metadata/md5-cache/sys-fs/bcache-tools-9999 @@ -11,5 +11,5 @@ PROPERTIES=live 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-apps/util-linux virtual/udev 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_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=779c422d72d995fb0bff9b86bb9fe4cc diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-6.17.1 b/metadata/md5-cache/sys-fs/btrfs-progs-6.17.1 index 51e79c50da2b..092ed9887087 100644 --- a/metadata/md5-cache/sys-fs/btrfs-progs-6.17.1 +++ b/metadata/md5-cache/sys-fs/btrfs-progs-6.17.1 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0/0 SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.17.1.tar.xz verify-sig? ( https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.17.1.tar.sign ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=11f2e6d3b65dc0ec3e7c6a58419b5818 diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-6.19 b/metadata/md5-cache/sys-fs/btrfs-progs-6.19 index 171cb75ddb0a..5b40b206e4a7 100644 --- a/metadata/md5-cache/sys-fs/btrfs-progs-6.19 +++ b/metadata/md5-cache/sys-fs/btrfs-progs-6.19 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0/0 SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.19.tar.xz verify-sig? ( https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.19.tar.sign ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=11f2e6d3b65dc0ec3e7c6a58419b5818 diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-6.19.1 b/metadata/md5-cache/sys-fs/btrfs-progs-6.19.1 index aa7520d181ba..701bb8c5b592 100644 --- a/metadata/md5-cache/sys-fs/btrfs-progs-6.19.1 +++ b/metadata/md5-cache/sys-fs/btrfs-progs-6.19.1 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0/0 SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.19.1.tar.xz verify-sig? ( https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.19.1.tar.sign ) -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=11f2e6d3b65dc0ec3e7c6a58419b5818 diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-9999 b/metadata/md5-cache/sys-fs/btrfs-progs-9999 index 3335da4ca4d0..ca7529601b47 100644 --- a/metadata/md5-cache/sys-fs/btrfs-progs-9999 +++ b/metadata/md5-cache/sys-fs/btrfs-progs-9999 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/lzo:2= sys-apps/util-linux:=[static-libs(+)?] virtual/zlib:= co REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0/0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=68ba2f9e1e78226c0cf9d9b570b8a7c9 diff --git a/metadata/md5-cache/sys-fs/cryptmount-6.4.0 b/metadata/md5-cache/sys-fs/cryptmount-6.4.0 new file mode 100644 index 000000000000..f72db7d70119 --- /dev/null +++ b/metadata/md5-cache/sys-fs/cryptmount-6.4.0 @@ -0,0 +1,16 @@ +BDEPEND=nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18.1:1.18 ) || ( >=dev-build/autoconf-2.73:2.73 >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 +DEFINED_PHASES=configure prepare setup +DEPEND=sys-fs/lvm2 virtual/libiconv virtual/libintl gcrypt? ( dev-libs/libgcrypt:0= ) luks? ( sys-fs/cryptsetup ) openssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd ) sys-kernel/linux-headers +DESCRIPTION=A utility for management and user-mode mounting of encrypted filesystems +EAPI=8 +HOMEPAGE=http://cryptmount.sourceforge.net/ +INHERIT=autotools linux-info +IUSE=argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl systemd +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+ +RDEPEND=sys-fs/lvm2 virtual/libiconv virtual/libintl gcrypt? ( dev-libs/libgcrypt:0= ) luks? ( sys-fs/cryptsetup ) openssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd ) +REQUIRED_USE=luks? ( gcrypt ) openssl? ( gcrypt ) +SLOT=0 +SRC_URI=https://github.com/rwpenney/cryptmount/archive/refs/tags/v6.4.0.tar.gz -> cryptmount-6.4.0.tar.gz +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 +_md5_=337238b8860f95d6fa9a03e54440bda0 diff --git a/metadata/md5-cache/sys-fs/e2fsprogs-1.47.3-r1 b/metadata/md5-cache/sys-fs/e2fsprogs-1.47.3-r1 index 693db18e75d1..007b838f94d4 100644 --- a/metadata/md5-cache/sys-fs/e2fsprogs-1.47.3-r1 +++ b/metadata/md5-cache/sys-fs/e2fsprogs-1.47.3-r1 @@ -12,5 +12,5 @@ RDEPEND=!sys-libs/e2fsprogs-libs archive? ( app-arch/libarchive:= ) cron? ( sys- RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.3/e2fsprogs-1.47.3.tar.xz verify-sig? ( https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.3/e2fsprogs-1.47.3.tar.sign ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=d2fcb533fae7deb5721e37187bc345f1 diff --git a/metadata/md5-cache/sys-fs/e2fsprogs-1.47.4 b/metadata/md5-cache/sys-fs/e2fsprogs-1.47.4 index ef5e042d812b..85395a684774 100644 --- a/metadata/md5-cache/sys-fs/e2fsprogs-1.47.4 +++ b/metadata/md5-cache/sys-fs/e2fsprogs-1.47.4 @@ -12,5 +12,5 @@ RDEPEND=!sys-libs/e2fsprogs-libs archive? ( app-arch/libarchive:= ) cron? ( sys- RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.4/e2fsprogs-1.47.4.tar.xz verify-sig? ( https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.4/e2fsprogs-1.47.4.tar.sign ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=ee0040cd777960aaeaf82575bffe55b3 diff --git a/metadata/md5-cache/sys-fs/eudev-3.2.12-r2 b/metadata/md5-cache/sys-fs/eudev-3.2.12-r2 index bab98b532b9f..5d2d505c8ea8 100644 --- a/metadata/md5-cache/sys-fs/eudev-3.2.12-r2 +++ b/metadata/md5-cache/sys-fs/eudev-3.2.12-r2 @@ -13,5 +13,5 @@ RDEPEND=>=sys-apps/util-linux-2.20 >=sys-kernel/linux-headers-2.6.39 virtual/lib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/eudev-project/eudev/releases/download/v3.2.12/eudev-3.2.12.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=da1e8ee64738fe6a9611cd455e436db1 diff --git a/metadata/md5-cache/sys-fs/eudev-3.2.12-r3 b/metadata/md5-cache/sys-fs/eudev-3.2.12-r3 index bab98b532b9f..5d2d505c8ea8 100644 --- a/metadata/md5-cache/sys-fs/eudev-3.2.12-r3 +++ b/metadata/md5-cache/sys-fs/eudev-3.2.12-r3 @@ -13,5 +13,5 @@ RDEPEND=>=sys-apps/util-linux-2.20 >=sys-kernel/linux-headers-2.6.39 virtual/lib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/eudev-project/eudev/releases/download/v3.2.12/eudev-3.2.12.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=da1e8ee64738fe6a9611cd455e436db1 diff --git a/metadata/md5-cache/sys-fs/eudev-3.2.14 b/metadata/md5-cache/sys-fs/eudev-3.2.14 index c5dbe80f04c7..854a1b3af95e 100644 --- a/metadata/md5-cache/sys-fs/eudev-3.2.14 +++ b/metadata/md5-cache/sys-fs/eudev-3.2.14 @@ -13,5 +13,5 @@ RDEPEND=>=sys-apps/util-linux-2.20 >=sys-kernel/linux-headers-2.6.39 virtual/lib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/eudev-project/eudev/releases/download/v3.2.14/eudev-3.2.14.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=b9383edf585555f8899c63c9cb7b7773 diff --git a/metadata/md5-cache/sys-fs/fuse-2.9.9-r2 b/metadata/md5-cache/sys-fs/fuse-2.9.9-r2 index 14953aeba253..bc7584eb4d4e 100644 --- a/metadata/md5-cache/sys-fs/fuse-2.9.9-r2 +++ b/metadata/md5-cache/sys-fs/fuse-2.9.9-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=>=sys-fs/fuse-common-3.3.0-r1 SLOT=0 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-fs/fuse/iconv.m4.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=09974ce9d560c72852d9ac73210bb998 diff --git a/metadata/md5-cache/sys-fs/fuse-3.16.2 b/metadata/md5-cache/sys-fs/fuse-3.16.2 index afe65f5dc274..0e9f498a7835 100644 --- a/metadata/md5-cache/sys-fs/fuse-3.16.2 +++ b/metadata/md5-cache/sys-fs/fuse-3.16.2 @@ -12,5 +12,5 @@ RDEPEND=>=sys-fs/fuse-common-3.3.0-r1 RESTRICT=test SLOT=3 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.16.2/fuse-3.16.2.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=de01c2df1835f7b6bdefb9d24026ecc0 diff --git a/metadata/md5-cache/sys-fs/fuse-3.17.4 b/metadata/md5-cache/sys-fs/fuse-3.17.4 index b93766720cff..713050070272 100644 --- a/metadata/md5-cache/sys-fs/fuse-3.17.4 +++ b/metadata/md5-cache/sys-fs/fuse-3.17.4 @@ -12,5 +12,5 @@ RDEPEND=>=sys-fs/fuse-common-3.3.0-r1 RESTRICT=test SLOT=3/4 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.17.4/fuse-3.17.4.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5e0d2ea0daec5199295bc28312b2f8f5 diff --git a/metadata/md5-cache/sys-fs/fuse-3.18.1 b/metadata/md5-cache/sys-fs/fuse-3.18.1 index 00916f058aa6..d622bdede1de 100644 --- a/metadata/md5-cache/sys-fs/fuse-3.18.1 +++ b/metadata/md5-cache/sys-fs/fuse-3.18.1 @@ -13,5 +13,5 @@ RDEPEND=io-uring? ( sys-libs/liburing:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 RESTRICT=test SLOT=3/4 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.18.1/fuse-3.18.1.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c85d1e95dc6eaab726589881771e6b78 diff --git a/metadata/md5-cache/sys-fs/fuse-3.18.2 b/metadata/md5-cache/sys-fs/fuse-3.18.2 index 063ad0280984..97dcfcd9be9f 100644 --- a/metadata/md5-cache/sys-fs/fuse-3.18.2 +++ b/metadata/md5-cache/sys-fs/fuse-3.18.2 @@ -13,5 +13,5 @@ RDEPEND=io-uring? ( sys-libs/liburing:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 RESTRICT=test SLOT=3/4 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.18.2/fuse-3.18.2.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c85d1e95dc6eaab726589881771e6b78 diff --git a/metadata/md5-cache/sys-fs/fuse-common-3.10.4-r3 b/metadata/md5-cache/sys-fs/fuse-common-3.10.4-r3 index b38df9fabf60..39ed4907773f 100644 --- a/metadata/md5-cache/sys-fs/fuse-common-3.10.4-r3 +++ b/metadata/md5-cache/sys-fs/fuse-common-3.10.4-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=acct-group/cuse !<sys-fs/fuse-2.9.7-r1:0 virtual/tmpfiles SLOT=0 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.10.4/fuse-3.10.4.tar.xz -_eclasses_=tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=af62c188af7cfcabc8fa84778a0fa4e1 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.03.22-r7 b/metadata/md5-cache/sys-fs/lvm2-2.03.22-r7 index fa9a0eb8bb4a..6f2f726d4c94 100644 --- a/metadata/md5-cache/sys-fs/lvm2-2.03.22-r7 +++ b/metadata/md5-cache/sys-fs/lvm2-2.03.22-r7 @@ -13,5 +13,5 @@ RDEPEND=udev? ( virtual/libudev:= ) lvm? ( dev-libs/libaio sys-apps/util-linux r REQUIRED_USE=static? ( !systemd !udev ) static-libs? ( static !udev ) systemd? ( udev ) thin? ( lvm ) SLOT=0 SRC_URI=https://sourceware.org/ftp/lvm2/LVM2.2.03.22.tgz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2a30e8278369f8f1c6a106b50d87b8de diff --git a/metadata/md5-cache/sys-fs/lvm2-2.03.37 b/metadata/md5-cache/sys-fs/lvm2-2.03.37 index 31532e010a95..9cf9c1db0820 100644 --- a/metadata/md5-cache/sys-fs/lvm2-2.03.37 +++ b/metadata/md5-cache/sys-fs/lvm2-2.03.37 @@ -14,5 +14,5 @@ REQUIRED_USE=static? ( !systemd !udev !nvme ) static-libs? ( static !udev ) syst RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/ftp/lvm2/LVM2.2.03.37.tgz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=237834568302d03dc5ec43a6bfcd86a8 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.03.38 b/metadata/md5-cache/sys-fs/lvm2-2.03.38 index 3abc4c747eae..9f323f50d764 100644 --- a/metadata/md5-cache/sys-fs/lvm2-2.03.38 +++ b/metadata/md5-cache/sys-fs/lvm2-2.03.38 @@ -14,5 +14,5 @@ REQUIRED_USE=static? ( !systemd !udev !nvme ) static-libs? ( static !udev ) syst RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/ftp/lvm2/LVM2.2.03.38.tgz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=01cf9a5273b78393949afa721e4a0ef7 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.03.39 b/metadata/md5-cache/sys-fs/lvm2-2.03.39 index bf73a744ffd9..fca551cdf966 100644 --- a/metadata/md5-cache/sys-fs/lvm2-2.03.39 +++ b/metadata/md5-cache/sys-fs/lvm2-2.03.39 @@ -14,5 +14,5 @@ REQUIRED_USE=static? ( !systemd !udev !nvme ) static-libs? ( static !udev ) syst RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/ftp/lvm2/LVM2.2.03.39.tgz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=79dc9dae6cdd7a8e7ab4d4e05aeda4ea diff --git a/metadata/md5-cache/sys-fs/lvm2-9999 b/metadata/md5-cache/sys-fs/lvm2-9999 index 899bffaf594a..6843802d4989 100644 --- a/metadata/md5-cache/sys-fs/lvm2-9999 +++ b/metadata/md5-cache/sys-fs/lvm2-9999 @@ -13,5 +13,5 @@ RDEPEND=udev? ( virtual/libudev:= ) lvm? ( dev-libs/libaio >=sys-apps/util-linux REQUIRED_USE=static? ( !systemd !udev !nvme ) static-libs? ( static !udev ) systemd? ( udev ) test? ( lvm ) thin? ( lvm ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=8e5159a6238780fbd658fe59f870e3f3 diff --git a/metadata/md5-cache/sys-fs/mdadm-4.4-r1 b/metadata/md5-cache/sys-fs/mdadm-4.4-r1 index f6b871b6852f..7b6445a04d66 100644 --- a/metadata/md5-cache/sys-fs/mdadm-4.4-r1 +++ b/metadata/md5-cache/sys-fs/mdadm-4.4-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0 SRC_URI=https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/snapshot/mdadm-4.4.tar.gz mirror://debian/pool/main/m/mdadm/mdadm_4.4-3.debian.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4c8e9133a45ad8f7cd3a82701d785fb5 diff --git a/metadata/md5-cache/sys-fs/mdadm-4.5-r1 b/metadata/md5-cache/sys-fs/mdadm-4.5-r1 index 4154bbe6b5ba..cb47cd333f85 100644 --- a/metadata/md5-cache/sys-fs/mdadm-4.5-r1 +++ b/metadata/md5-cache/sys-fs/mdadm-4.5-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0 SRC_URI=https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/snapshot/mdadm-4.5.tar.gz mirror://debian/pool/main/m/mdadm/mdadm_4.5-5.debian.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ff565870a35616cf1c00f7976638386a diff --git a/metadata/md5-cache/sys-fs/mdadm-4.6 b/metadata/md5-cache/sys-fs/mdadm-4.6 index 004234bbce14..3654eded15e8 100644 --- a/metadata/md5-cache/sys-fs/mdadm-4.6 +++ b/metadata/md5-cache/sys-fs/mdadm-4.6 @@ -13,5 +13,5 @@ REQUIRED_USE=static? ( !udev ) RESTRICT=test SLOT=0 SRC_URI=https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/snapshot/mdadm-4.6.tar.gz mirror://debian/pool/main/m/mdadm/mdadm_4.6-1.debian.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=33a6a41a835ae296303963e50461d0f4 diff --git a/metadata/md5-cache/sys-fs/multipath-tools-0.14.3 b/metadata/md5-cache/sys-fs/multipath-tools-0.14.3 index 423d1401c2db..96b2a3caf42e 100644 --- a/metadata/md5-cache/sys-fs/multipath-tools-0.14.3 +++ b/metadata/md5-cache/sys-fs/multipath-tools-0.14.3 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/json-c:= dev-libs/libaio dev-libs/userspace-rcu:= >=sys-fs/lvm2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/opensvc/multipath-tools/archive/refs/tags/0.14.3.tar.gz -> multipath-tools-0.14.3.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=bd1bb9d81c4b603682392d6b10ec126c diff --git a/metadata/md5-cache/sys-fs/multipath-tools-0.9.8-r1 b/metadata/md5-cache/sys-fs/multipath-tools-0.9.8-r1 index d21d93eae19c..f38c93baa3f4 100644 --- a/metadata/md5-cache/sys-fs/multipath-tools-0.9.8-r1 +++ b/metadata/md5-cache/sys-fs/multipath-tools-0.9.8-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/json-c:= dev-libs/libaio dev-libs/userspace-rcu:= >=sys-fs/lvm2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/opensvc/multipath-tools/archive/refs/tags/0.9.8.tar.gz -> multipath-tools-0.9.8.tar.gz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=3dde9b2e756d6224c5c573c58745ce9b diff --git a/metadata/md5-cache/sys-fs/udiskie-2.5.7-r1 b/metadata/md5-cache/sys-fs/udiskie-2.5.7-r1 index f0f1993b8eed..9c2f2acd545d 100644 --- a/metadata/md5-cache/sys-fs/udiskie-2.5.7-r1 +++ b/metadata/md5-cache/sys-fs/udiskie-2.5.7-r1 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-text/asciidoc test? ( dev-python/keyutils[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(-)?] ) +DEPEND=app-text/asciidoc test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) DESCRIPTION=An automatic disk mounting service using udisks EAPI=8 HOMEPAGE=https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/u/udiskie/udiskie-2.5.7.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=b1b2a6ceaf03c41e1d05cdac7b3c0753 +_md5_=f449eca9924f1b9491c71a244889bfa5 diff --git a/metadata/md5-cache/sys-fs/udiskie-2.5.8 b/metadata/md5-cache/sys-fs/udiskie-2.5.8 index cef0c19d36a6..a79d58b40f03 100644 --- a/metadata/md5-cache/sys-fs/udiskie-2.5.8 +++ b/metadata/md5-cache/sys-fs/udiskie-2.5.8 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-text/asciidoc test? ( dev-python/keyutils[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(-)?] ) +DEPEND=app-text/asciidoc test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) DESCRIPTION=An automatic disk mounting service using udisks EAPI=8 HOMEPAGE=https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/u/udiskie/udiskie-2.5.8.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=141ad094bdf3fe3fc5da471a6bc88776 +_md5_=ce975f4b14e1e8217bf7cfe973725016 diff --git a/metadata/md5-cache/sys-fs/udiskie-2.5.8-r1 b/metadata/md5-cache/sys-fs/udiskie-2.5.8-r1 index baf8b1f18e13..0fcce04f4131 100644 --- a/metadata/md5-cache/sys-fs/udiskie-2.5.8-r1 +++ b/metadata/md5-cache/sys-fs/udiskie-2.5.8-r1 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-text/asciidoc test? ( dev-python/keyutils[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(-)?] ) +DEPEND=app-text/asciidoc test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) DESCRIPTION=An automatic disk mounting service using udisks EAPI=8 HOMEPAGE=https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/u/udiskie/udiskie-2.5.8.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=7c82c55d009bec76d7e8a1460b7568a1 +_md5_=e58692b51583c421f78ede214a2c88dc diff --git a/metadata/md5-cache/sys-fs/udiskie-2.6.1 b/metadata/md5-cache/sys-fs/udiskie-2.6.1 index d2f537ffee0c..e89b078b7700 100644 --- a/metadata/md5-cache/sys-fs/udiskie-2.6.1 +++ b/metadata/md5-cache/sys-fs/udiskie-2.6.1 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-text/asciidoc test? ( dev-python/keyutils[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(-)?] ) +DEPEND=app-text/asciidoc test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) DESCRIPTION=An automatic disk mounting service using udisks EAPI=8 HOMEPAGE=https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/u/udiskie/udiskie-2.6.1.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=3b8a69110d63b87b0f651671ed8b92e1 +_md5_=e58692b51583c421f78ede214a2c88dc diff --git a/metadata/md5-cache/sys-fs/udiskie-2.6.2 b/metadata/md5-cache/sys-fs/udiskie-2.6.2 index 652fcd32ade9..f7582b81ba8f 100644 --- a/metadata/md5-cache/sys-fs/udiskie-2.6.2 +++ b/metadata/md5-cache/sys-fs/udiskie-2.6.2 @@ -1,17 +1,17 @@ -BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-text/asciidoc test? ( dev-python/keyutils[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(-)?] ) +BDEPEND=test? ( dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) >=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(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=app-text/asciidoc test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) DESCRIPTION=An automatic disk mounting service using udisks EAPI=8 HOMEPAGE=https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie INHERIT=distutils-r1 pypi xdg-utils -IUSE=autostart libnotify test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +IUSE=autostart libnotify 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 ~x86 LICENSE=MIT RDEPEND=dev-python/docopt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pygobject:3[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(-)?] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] ) 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/udiskie/udiskie-2.6.2.tar.gz +SRC_URI=https://files.pythonhosted.org/packages/source/u/udiskie/udiskie-2.6.2.tar.gz verify-provenance? ( https://pypi.org/integrity/udiskie/v2.6.2/udiskie-2.6.2.tar.gz/provenance -> udiskie-2.6.2.tar.gz.provenance ) _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi a451be5a08e8eb46f927fc6dd163583f python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=3b8a69110d63b87b0f651671ed8b92e1 +_md5_=c588a6467977142f892d56dadfc2bc9d diff --git a/metadata/md5-cache/sys-fs/udisks-2.10.2-r1 b/metadata/md5-cache/sys-fs/udisks-2.10.2-r1 index bfd45fd69d33..582d06a7cbf7 100644 --- a/metadata/md5-cache/sys-fs/udisks-2.10.2-r1 +++ b/metadata/md5-cache/sys-fs/udisks-2.10.2-r1 @@ -12,5 +12,5 @@ RDEPEND=>=sys-auth/polkit-0.114[daemon(+)] >=sys-libs/libblockdev-3.3.0:=[crypts REQUIRED_USE=?? ( elogind systemd ) elogind? ( daemon ) systemd? ( daemon ) SLOT=2 SRC_URI=https://github.com/storaged-project/udisks/releases/download/udisks-2.10.2/udisks-2.10.2.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ed07807233db5f1e1709b655ac05d355 diff --git a/metadata/md5-cache/sys-fs/udisks-2.11.0-r1 b/metadata/md5-cache/sys-fs/udisks-2.11.0-r1 index ed1887ca220b..ccef55ad6f68 100644 --- a/metadata/md5-cache/sys-fs/udisks-2.11.0-r1 +++ b/metadata/md5-cache/sys-fs/udisks-2.11.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=sys-auth/polkit-0.114[daemon(+)] >=sys-libs/libblockdev-3.4.0:=[crypts REQUIRED_USE=?? ( elogind systemd ) elogind? ( daemon ) systemd? ( daemon ) SLOT=2 SRC_URI=https://github.com/storaged-project/udisks/releases/download/udisks-2.11.0/udisks-2.11.0.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=414fcb2ccb51b7de19069840ea10133b diff --git a/metadata/md5-cache/sys-fs/udisks-2.11.1 b/metadata/md5-cache/sys-fs/udisks-2.11.1 index 63c6c5b3212f..a3e1b7f71d8d 100644 --- a/metadata/md5-cache/sys-fs/udisks-2.11.1 +++ b/metadata/md5-cache/sys-fs/udisks-2.11.1 @@ -12,5 +12,5 @@ RDEPEND=>=sys-auth/polkit-0.114[daemon(+)] >=sys-libs/libblockdev-3.4.0:=[crypts REQUIRED_USE=?? ( elogind systemd ) elogind? ( daemon ) systemd? ( daemon ) SLOT=2 SRC_URI=https://github.com/storaged-project/udisks/releases/download/udisks-2.11.1/udisks-2.11.1.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4193fff5eeb7de5c3c83cd01f9f746b4 diff --git a/metadata/md5-cache/sys-fs/vhba-20240202 b/metadata/md5-cache/sys-fs/vhba-20240202 index 0206df7e70e3..6be84cb246f5 100644 --- a/metadata/md5-cache/sys-fs/vhba-20240202 +++ b/metadata/md5-cache/sys-fs/vhba-20240202 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://download.sourceforge.net/cdemu/vhba-module/vhba-module-20240202.tar.xz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=264844dd7cb60ab6547c28cd45096b38 diff --git a/metadata/md5-cache/sys-fs/vhba-20250329 b/metadata/md5-cache/sys-fs/vhba-20250329 index 542859bec066..a3890ab55889 100644 --- a/metadata/md5-cache/sys-fs/vhba-20250329 +++ b/metadata/md5-cache/sys-fs/vhba-20250329 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://download.sourceforge.net/cdemu/vhba-module/vhba-module-20250329.tar.xz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5dc41bd7fc62a80c315e13d8f4e9089c diff --git a/metadata/md5-cache/sys-fs/vhba-20260313 b/metadata/md5-cache/sys-fs/vhba-20260313 index e7b625e12f9b..c261aff563f3 100644 --- a/metadata/md5-cache/sys-fs/vhba-20260313 +++ b/metadata/md5-cache/sys-fs/vhba-20260313 @@ -12,5 +12,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/udev sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) SLOT=0 SRC_URI=https://download.sourceforge.net/cdemu/vhba-module/vhba-module-20260313.tar.xz -_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=c22267fea60db586888e4170b83c1cbe diff --git a/metadata/md5-cache/sys-fs/xfsprogs-6.17.0-r1 b/metadata/md5-cache/sys-fs/xfsprogs-6.17.0-r1 index adad7656022c..da47d0fe9a3d 100644 --- a/metadata/md5-cache/sys-fs/xfsprogs-6.17.0-r1 +++ b/metadata/md5-cache/sys-fs/xfsprogs-6.17.0-r1 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/inih dev-libs/userspace-rcu:= >=sys-apps/util-linux-2.17.2 icu? ( dev-libs/icu:= ) libedit? ( dev-libs/libedit ) selinux? ( sec-policy/selinux-xfs ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.17.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9abd24ea41b618b94490ac6bd2ad125d diff --git a/metadata/md5-cache/sys-fs/xfsprogs-6.18.0 b/metadata/md5-cache/sys-fs/xfsprogs-6.18.0 index 3d4892602d59..8e38e2fce494 100644 --- a/metadata/md5-cache/sys-fs/xfsprogs-6.18.0 +++ b/metadata/md5-cache/sys-fs/xfsprogs-6.18.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/inih dev-libs/userspace-rcu:= >=sys-apps/util-linux-2.17.2 icu? ( dev-libs/icu:= ) libedit? ( dev-libs/libedit ) selinux? ( sec-policy/selinux-xfs ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.18.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d72bc0bbbca0cfedf64b1defb1991b43 diff --git a/metadata/md5-cache/sys-fs/xfsprogs-6.19.0 b/metadata/md5-cache/sys-fs/xfsprogs-6.19.0 index fd07ed7cb6cd..063d42bf8bfc 100644 --- a/metadata/md5-cache/sys-fs/xfsprogs-6.19.0 +++ b/metadata/md5-cache/sys-fs/xfsprogs-6.19.0 @@ -11,5 +11,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-libs/inih dev-libs/userspace-rcu:= >=sys-apps/util-linux-2.17.2 icu? ( dev-libs/icu:= ) libedit? ( dev-libs/libedit ) selinux? ( sec-policy/selinux-xfs ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.19.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d72bc0bbbca0cfedf64b1defb1991b43 diff --git a/metadata/md5-cache/sys-fs/zfs-2.3.6 b/metadata/md5-cache/sys-fs/zfs-2.3.6 index 35a4bd9fad0f..1b058b510181 100644 --- a/metadata/md5-cache/sys-fs/zfs-2.3.6 +++ b/metadata/md5-cache/sys-fs/zfs-2.3.6 @@ -14,5 +14,5 @@ REQUIRED_USE=!minimal? ( || ( python_targets_python3_10 python_targets_python3_1 RESTRICT=test SLOT=0/6 SRC_URI=https://github.com/openzfs/zfs/releases/download/zfs-2.3.6/zfs-2.3.6.tar.gz verify-sig? ( https://github.com/openzfs/zfs/releases/download/zfs-2.3.6/zfs-2.3.6.tar.gz.asc ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=36ec36806fa799b9d24559551445c1bd diff --git a/metadata/md5-cache/sys-fs/zfs-2.4.0 b/metadata/md5-cache/sys-fs/zfs-2.4.0 index c25e45e1205c..bfa7af56b513 100644 --- a/metadata/md5-cache/sys-fs/zfs-2.4.0 +++ b/metadata/md5-cache/sys-fs/zfs-2.4.0 @@ -14,5 +14,5 @@ REQUIRED_USE=!minimal? ( || ( python_targets_python3_10 python_targets_python3_1 RESTRICT=test SLOT=0/7 SRC_URI=https://github.com/openzfs/zfs/releases/download/zfs-2.4.0/zfs-2.4.0.tar.gz verify-sig? ( https://github.com/openzfs/zfs/releases/download/zfs-2.4.0/zfs-2.4.0.tar.gz.asc ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=8662c9b275cf4358b3d54cb60731e684 diff --git a/metadata/md5-cache/sys-fs/zfs-2.4.1 b/metadata/md5-cache/sys-fs/zfs-2.4.1 index 05f323295006..bd7501d79e93 100644 --- a/metadata/md5-cache/sys-fs/zfs-2.4.1 +++ b/metadata/md5-cache/sys-fs/zfs-2.4.1 @@ -14,5 +14,5 @@ REQUIRED_USE=!minimal? ( || ( python_targets_python3_10 python_targets_python3_1 RESTRICT=test SLOT=0/7 SRC_URI=https://github.com/openzfs/zfs/releases/download/zfs-2.4.1/zfs-2.4.1.tar.gz verify-sig? ( https://github.com/openzfs/zfs/releases/download/zfs-2.4.1/zfs-2.4.1.tar.gz.asc ) -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 bash-completion-r1 9e91505e030725688d1e953321a47501 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 usr-ldscript 6b1349e8c7d4a9450de5af4162dfcb6f verify-sig ece4c893b6bd62eacbc4d25958e857f8 _md5_=a15b7185b4c5e95ca318854392960723 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.168 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.168 index b77326f94d46..17b9f3072cee 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.168 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.168 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.1.168 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.1-178.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-178.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-178.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.1-178.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-178.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-178.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.1-178.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-178.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-178.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=c9f01c4821520e71f9240bc1d1179266 +_md5_=5896349f6228a29c421f406c1df4044e diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.84 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.84 index 095e4c0b01b9..d8bfe7562d8c 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.84 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.84 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.12.84 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.12-89.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-89.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-89.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.12-89.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-89.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-89.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.12-89.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-89.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-89.experimental.tar.xz ) _eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=cdf6824aa562113f6f31cb5d0c757c68 +_md5_=2eb9f2c9c8ff4ec1b8c37e60574cbb11 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.18 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.18 index b28b54b3c942..090b20583bbc 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.18 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.18 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.18 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-18.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-18.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-18.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-18.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-18.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-18.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-18.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-18.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-18.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=35cae1d920f3bb3f354411d8f5e21c38 +_md5_=dae09f0c1f21775840aadb35d8015918 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.21 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.21 index 569c1303453a..17c886a758b2 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.21 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.21 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.21 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-21.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-21.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-21.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-21.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-21.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-21.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-21.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-21.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-21.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=920c3050948e181f560220a0b5a30366 +_md5_=1e6004ae5e97eb63dff40a520ed53657 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.22 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.22 index 32e6b9d393f2..ffc8d7403d0f 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.22 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.22 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.22 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-22.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-22.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-22.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-22.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-22.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-22.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-22.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-22.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-22.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=b7843b99ba0135330c36c2821b100dda +_md5_=487868b538d053043b67e10883e66ecd diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.23 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.23 index 53d6269464de..bb18f940cf49 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.23 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.23 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.23 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-23.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-23.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-23.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-23.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-23.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-23.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-23.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-23.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-23.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=6dc4c1a5ac2b9dfb3744d84ff93c989b +_md5_=5f0caa5265261a07298bdc2a6558d3cd diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.24 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.24 index 96b6d8906785..1e1cc3a17144 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.24 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.24 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.24 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-24.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-24.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-24.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-24.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-24.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-24.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-24.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-24.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-24.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=79cb4a620ae05aae7919f6a21b83ba74 +_md5_=c84a8225fdd834b5f7c04a2c47d4bf45 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.25 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.25 index 000e21caa188..2e9d0aee1fdb 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.25 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.25 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.18.25 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-25.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-25.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-25.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-25.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-25.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-25.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.18-25.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-25.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-25.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=beed25307337b3cda85568d6586e1607 +_md5_=0dfaf0546c8c0c90dd7cf2d3cde000c4 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.11 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.11 index 14f00860b5b9..59b39b542518 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.11 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.11 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.19.11 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-10.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-10.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-10.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-10.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-10.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-10.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-10.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-10.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=1b78e53afbac4fb0a8a2cc49e9cfa545 +_md5_=3819058de55aba44a53d11f8aee1b5ac diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.12 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.12 index 72298a5e05cd..e8dd69dfc4a1 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.12 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.12 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.19.12 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-11.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-11.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-11.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-11.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-11.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-11.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-11.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-11.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-11.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=2ff39a3a4f797092da0dd3fc106152b6 +_md5_=97e98a88bc760b96e82a613468d3b832 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.13 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.13 index 75966b6b2df2..2788dd52bef1 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.13 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.13 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.19.13 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-12.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-12.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-12.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-12.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-12.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-12.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-12.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-12.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-12.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=62eadef8f3f3e59fb87e97ef63bcfde3 +_md5_=94c492cceff97b33ebceeea45cbffaf7 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.14 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.14 index 642f0b41f1b1..42342996c2ee 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.14 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.14 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.19.14 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-13.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-13.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-13.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-13.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-13.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-13.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.19-13.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-13.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-13.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=591ce81cf5b41ba55519c2ffa5feeae1 +_md5_=c023780dc59240cc1984175c5403e36b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.136 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.136 index 9c0122eacea0..c0757995f163 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.136 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.136 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=6.6.136 SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.6-143.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-143.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-143.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.6-143.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-143.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-143.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-6.6-143.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-143.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-143.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=01101758b7bce8febb2f9113479491c2 +_md5_=12ccd8fb497d7ae423f111b811d3e739 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.0 b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.0 index ddb286802d15..cdd599728bd5 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.0 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.0 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=7.0.0 SRC_URI=https://www.kernel.org/pub/linux/kernel/v7.x/linux-7.0.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-1.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-1.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-1.extras.tar.xz _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=48e1e0f56156691c12bf19d9410c3f68 +_md5_=6568f97cdf4d9354664b4f51e7dbf3b6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.1 b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.1 index ac2de31d407b..c072b1e1cb0b 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.1 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.1 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=7.0.1 SRC_URI=https://www.kernel.org/pub/linux/kernel/v7.x/linux-7.0.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-2.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-2.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-2.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-2.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-2.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-2.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-2.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-2.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-2.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=ca412b21d0d7ca163f8d260e4257082b +_md5_=90a2f4bf14bb9108f4223be1415492dc diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.2 b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.2 index c3f7b8e1932c..0948e05aa752 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.2 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-7.0.2 @@ -4,11 +4,11 @@ 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 +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/binutils-libs >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip SLOT=7.0.2 SRC_URI=https://www.kernel.org/pub/linux/kernel/v7.x/linux-7.0.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-3.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-3.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-3.base.tar.xz https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-3.extras.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-3.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-3.extras.tar.xz experimental? ( https://distfiles.gentoo.org/pub/proj/kernel/genpatches/genpatches-7.0-3.experimental.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-7.0-3.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-7.0-3.experimental.tar.xz ) _eclasses_=crossdev d618c699554f72b98f8ceeeeb361dc9e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 e38cddb5b9c31d5dce8df55fc78519f7 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=5bac4b56adb762892c11c607789a0c09 +_md5_=bb8612c83d9b053b6eadfb32b69ea93b diff --git a/metadata/md5-cache/sys-kernel/udev-hid-bpf-2.2.0_p20251121 b/metadata/md5-cache/sys-kernel/udev-hid-bpf-2.2.0_p20251121 index 384ba522526f..4f6c4928393b 100644 --- a/metadata/md5-cache/sys-kernel/udev-hid-bpf-2.2.0_p20251121 +++ b/metadata/md5-cache/sys-kernel/udev-hid-bpf-2.2.0_p20251121 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libbpf:= virtual/libudev:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/libevdev/udev-hid-bpf/-/archive/2.2.0-20251121/udev-hid-bpf-2.2.0-20251121.tar.bz2 https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/anstream/0.6.20/download -> anstream-0.6.20.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.7/download -> anstyle-parse-0.2.7.crate https://crates.io/api/v1/crates/anstyle-query/1.1.4/download -> anstyle-query-1.1.4.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.10/download -> anstyle-wincon-3.0.10.crate https://crates.io/api/v1/crates/anstyle/1.0.13/download -> anstyle-1.0.13.crate https://crates.io/api/v1/crates/anyhow/1.0.100/download -> anyhow-1.0.100.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.crate https://crates.io/api/v1/crates/bitflags/2.9.4/download -> bitflags-2.9.4.crate https://crates.io/api/v1/crates/bumpalo/3.19.0/download -> bumpalo-3.19.0.crate https://crates.io/api/v1/crates/camino/1.2.1/download -> camino-1.2.1.crate https://crates.io/api/v1/crates/cargo-platform/0.1.9/download -> cargo-platform-0.1.9.crate https://crates.io/api/v1/crates/cargo_metadata/0.15.4/download -> cargo_metadata-0.15.4.crate https://crates.io/api/v1/crates/cc/1.2.39/download -> cc-1.2.39.crate https://crates.io/api/v1/crates/cfg-if/1.0.3/download -> cfg-if-1.0.3.crate https://crates.io/api/v1/crates/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/chrono/0.4.42/download -> chrono-0.4.42.crate https://crates.io/api/v1/crates/clap/4.5.48/download -> clap-4.5.48.crate https://crates.io/api/v1/crates/clap_builder/4.5.48/download -> clap_builder-4.5.48.crate https://crates.io/api/v1/crates/clap_derive/4.5.47/download -> clap_derive-4.5.47.crate https://crates.io/api/v1/crates/clap_lex/0.7.5/download -> clap_lex-0.7.5.crate https://crates.io/api/v1/crates/colorchoice/1.0.4/download -> colorchoice-1.0.4.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/errno/0.3.14/download -> errno-0.3.14.crate https://crates.io/api/v1/crates/fastrand/2.3.0/download -> fastrand-2.3.0.crate https://crates.io/api/v1/crates/find-msvc-tools/0.1.2/download -> find-msvc-tools-0.1.2.crate https://crates.io/api/v1/crates/getrandom/0.3.3/download -> getrandom-0.3.3.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.64/download -> iana-time-zone-0.1.64.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/js-sys/0.3.81/download -> js-sys-0.3.81.crate https://crates.io/api/v1/crates/libbpf-cargo/0.24.8/download -> libbpf-cargo-0.24.8.crate https://crates.io/api/v1/crates/libbpf-rs/0.24.8/download -> libbpf-rs-0.24.8.crate https://crates.io/api/v1/crates/libbpf-rs/0.25.0/download -> libbpf-rs-0.25.0.crate https://crates.io/api/v1/crates/libbpf-sys/1.6.1+v1.6.1/download -> libbpf-sys-1.6.1+v1.6.1.crate https://crates.io/api/v1/crates/libc/0.2.176/download -> libc-0.2.176.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linux-raw-sys/0.11.0/download -> linux-raw-sys-0.11.0.crate https://crates.io/api/v1/crates/log/0.4.28/download -> log-0.4.28.crate https://crates.io/api/v1/crates/memchr/2.7.6/download -> memchr-2.7.6.crate https://crates.io/api/v1/crates/memmap2/0.5.10/download -> memmap2-0.5.10.crate https://crates.io/api/v1/crates/mio/0.8.11/download -> mio-0.8.11.crate https://crates.io/api/v1/crates/nix/0.30.1/download -> nix-0.30.1.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/once_cell_polyfill/1.70.1/download -> once_cell_polyfill-1.70.1.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/proc-macro2/1.0.101/download -> proc-macro2-1.0.101.crate https://crates.io/api/v1/crates/quote/1.0.41/download -> quote-1.0.41.crate https://crates.io/api/v1/crates/r-efi/5.3.0/download -> r-efi-5.3.0.crate https://crates.io/api/v1/crates/regex-automata/0.4.11/download -> regex-automata-0.4.11.crate https://crates.io/api/v1/crates/regex-syntax/0.8.6/download -> regex-syntax-0.8.6.crate https://crates.io/api/v1/crates/regex/1.11.3/download -> regex-1.11.3.crate https://crates.io/api/v1/crates/rustix/1.1.2/download -> rustix-1.1.2.crate https://crates.io/api/v1/crates/rustversion/1.0.22/download -> rustversion-1.0.22.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/semver/1.0.27/download -> semver-1.0.27.crate https://crates.io/api/v1/crates/serde/1.0.228/download -> serde-1.0.228.crate https://crates.io/api/v1/crates/serde_core/1.0.228/download -> serde_core-1.0.228.crate https://crates.io/api/v1/crates/serde_derive/1.0.228/download -> serde_derive-1.0.228.crate https://crates.io/api/v1/crates/serde_json/1.0.145/download -> serde_json-1.0.145.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/stderrlog/0.5.4/download -> stderrlog-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.106/download -> syn-2.0.106.crate https://crates.io/api/v1/crates/tempfile/3.23.0/download -> tempfile-3.23.0.crate https://crates.io/api/v1/crates/termcolor/1.1.3/download -> termcolor-1.1.3.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.69/download -> thiserror-impl-1.0.69.crate https://crates.io/api/v1/crates/thiserror/1.0.69/download -> thiserror-1.0.69.crate https://crates.io/api/v1/crates/thread_local/1.1.9/download -> thread_local-1.1.9.crate https://crates.io/api/v1/crates/udev/0.7.0/download -> udev-0.7.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.19/download -> unicode-ident-1.0.19.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/vsprintf/2.0.0/download -> vsprintf-2.0.0.crate https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download -> wasi-0.11.1+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.14.7+wasi-0.2.4/download -> wasi-0.14.7+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasip2/1.0.1+wasi-0.2.4/download -> wasip2-1.0.1+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.104/download -> wasm-bindgen-backend-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.104/download -> wasm-bindgen-macro-support-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.104/download -> wasm-bindgen-macro-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.104/download -> wasm-bindgen-shared-0.2.104.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.104/download -> wasm-bindgen-0.2.104.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.11/download -> winapi-util-0.1.11.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-core/0.62.1/download -> windows-core-0.62.1.crate https://crates.io/api/v1/crates/windows-implement/0.60.1/download -> windows-implement-0.60.1.crate https://crates.io/api/v1/crates/windows-interface/0.59.2/download -> windows-interface-0.59.2.crate https://crates.io/api/v1/crates/windows-link/0.2.0/download -> windows-link-0.2.0.crate https://crates.io/api/v1/crates/windows-result/0.4.0/download -> windows-result-0.4.0.crate https://crates.io/api/v1/crates/windows-strings/0.5.0/download -> windows-strings-0.5.0.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.crate https://crates.io/api/v1/crates/windows-sys/0.60.2/download -> windows-sys-0.60.2.crate https://crates.io/api/v1/crates/windows-sys/0.61.1/download -> windows-sys-0.61.1.crate https://crates.io/api/v1/crates/windows-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.53.4/download -> windows-targets-0.53.4.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.53.0/download -> windows_aarch64_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.53.0/download -> windows_aarch64_msvc-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.53.0/download -> windows_i686_gnu-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.53.0/download -> windows_i686_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.53.0/download -> windows_i686_msvc-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.53.0/download -> windows_x86_64_gnu-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.53.0/download -> windows_x86_64_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.53.0/download -> windows_x86_64_msvc-0.53.0.crate https://crates.io/api/v1/crates/wit-bindgen/0.46.0/download -> wit-bindgen-0.46.0.crate -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=5ed7eefc7ef1ede78029b7fc184afc75 diff --git a/metadata/md5-cache/sys-libs/libvpd-2.2.9 b/metadata/md5-cache/sys-libs/libvpd-2.2.9 index fd66169809bd..3be7f90608a1 100644 --- a/metadata/md5-cache/sys-libs/libvpd-2.2.9 +++ b/metadata/md5-cache/sys-libs/libvpd-2.2.9 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1+ RDEPEND=dev-db/sqlite:3 virtual/zlib:= SLOT=0/3 SRC_URI=https://github.com/power-ras/libvpd/archive/v2.2.9.tar.gz -> libvpd-2.2.9.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=9bf795261c846aa7fba34df3b56b2a30 diff --git a/metadata/md5-cache/sys-libs/solo-udev-rules-4.1.5 b/metadata/md5-cache/sys-libs/solo-udev-rules-4.1.5 index f39960041e88..04971c702929 100644 --- a/metadata/md5-cache/sys-libs/solo-udev-rules-4.1.5 +++ b/metadata/md5-cache/sys-libs/solo-udev-rules-4.1.5 @@ -10,5 +10,5 @@ LICENSE=|| ( Apache-2.0 MIT ) RDEPEND=virtual/udev SLOT=0 SRC_URI=https://github.com/solokeys/solo1/archive/4.1.5.tar.gz -> solo1-4.1.5.tar.gz -_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=e5f5804f7db7a1dc4179929c7479bf13 diff --git a/metadata/md5-cache/sys-power/acpilight-1.2-r5 b/metadata/md5-cache/sys-power/acpilight-1.2-r5 index 812f2e9d776d..005504e71135 100644 --- a/metadata/md5-cache/sys-power/acpilight-1.2-r5 +++ b/metadata/md5-cache/sys-power/acpilight-1.2-r5 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_ 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://gitlab.com/wavexx/acpilight/-/archive/v1.2/acpilight-v1.2.tar.bz2 -_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d42bd900cc08bfb5dbad257f3ef52888 diff --git a/metadata/md5-cache/sys-power/apcupsd-3.14.14-r4 b/metadata/md5-cache/sys-power/apcupsd-3.14.14-r4 index eeb3ff7e1caf..c6961c5623e6 100644 --- a/metadata/md5-cache/sys-power/apcupsd-3.14.14-r4 +++ b/metadata/md5-cache/sys-power/apcupsd-3.14.14-r4 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/mailx selinux? ( sec-policy/selinux-apcupsd ) sys-apps/util-linux[tty-helpers] cgi? ( media-libs/gd:2= ) modbus? ( usb? ( virtual/libusb:0= ) ) snmp? ( net-analyzer/net-snmp ) virtual/tmpfiles SLOT=0 SRC_URI=https://downloads.sourceforge.net/apcupsd/apcupsd-3.14.14.tar.gz -_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=linux-info efd923656513c879204fec6638eadee5 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ca96ee3fb71c34f53bb0c072f0e71aff diff --git a/metadata/md5-cache/sys-power/nut-2.8.4 b/metadata/md5-cache/sys-power/nut-2.8.4 index 5ebfbe7fc3c9..9ec788e4db75 100644 --- a/metadata/md5-cache/sys-power/nut-2.8.4 +++ b/metadata/md5-cache/sys-power/nut-2.8.4 @@ -14,5 +14,5 @@ REQUIRED_USE=monitor? ( python ) python? ( ^^ ( python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://networkupstools.org/source/2.8/nut-2.8.4.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1bcc909b5eb9d78377d9c770f0059059 diff --git a/metadata/md5-cache/sys-power/nut-9999 b/metadata/md5-cache/sys-power/nut-9999 index 77d624e5e7e3..62b73227db10 100644 --- a/metadata/md5-cache/sys-power/nut-9999 +++ b/metadata/md5-cache/sys-power/nut-9999 @@ -13,5 +13,5 @@ RDEPEND=acct-group/nut acct-user/nut dev-libs/libltdl virtual/udev cgi? ( >=medi REQUIRED_USE=monitor? ( python ) 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 ) ) snmp? ( python ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 desktop 26d57169ca094c04be416993844ec8bc git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 desktop 26d57169ca094c04be416993844ec8bc git-r3 7b584b5dc33e3bc66ff5b9271bf41764 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 wrapper ebaa3beeb43f7e533872b6c37168c7ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f4f97545293a897561618088fe84500c diff --git a/metadata/md5-cache/sys-power/sispmctl-4.12 b/metadata/md5-cache/sys-power/sispmctl-4.12 index a3a88f5c0abb..bc285848ade4 100644 --- a/metadata/md5-cache/sys-power/sispmctl-4.12 +++ b/metadata/md5-cache/sys-power/sispmctl-4.12 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/libusb:0 acct-group/sispmctl SLOT=0 SRC_URI=https://downloads.sourceforge.net/sispmctl/sispmctl-4.12.tar.gz -_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ee2f32005a3fe0f42497c59f02b98862 diff --git a/metadata/md5-cache/sys-power/switcheroo-control-3.0 b/metadata/md5-cache/sys-power/switcheroo-control-3.0 index bd111703053b..b62018e756f1 100644 --- a/metadata/md5-cache/sys-power/switcheroo-control-3.0 +++ b/metadata/md5-cache/sys-power/switcheroo-control-3.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/hadess/switcheroo-control/-/releases/3.0/downloads/switcheroo-control-3.0.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=ebe5c68d1414d24bd5c9553d6f9e18ad diff --git a/metadata/md5-cache/sys-power/tlp-1.8.0-r1 b/metadata/md5-cache/sys-power/tlp-1.8.0-r1 index 3059b75a977f..2d7ef0bf36af 100644 --- a/metadata/md5-cache/sys-power/tlp-1.8.0-r1 +++ b/metadata/md5-cache/sys-power/tlp-1.8.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-lang/perl virtual/udev SLOT=0 SRC_URI=https://github.com/linrunner/TLP/archive/refs/tags/1.8.0.tar.gz -> tlp-1.8.0.tar.gz -_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=2e9b8037fff47f9fad474f508faf5031 diff --git a/metadata/md5-cache/sys-power/tlp-1.9.1 b/metadata/md5-cache/sys-power/tlp-1.9.1 index 3aa24d0a3854..eeeca4025a9d 100644 --- a/metadata/md5-cache/sys-power/tlp-1.9.1 +++ b/metadata/md5-cache/sys-power/tlp-1.9.1 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/perl net-wireless/iw sys-apps/hdparm sys-apps/pciutils sys-apps REQUIRED_USE=ppd? ( ^^ ( 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://github.com/linrunner/TLP/archive/refs/tags/1.9.1.tar.gz -> tlp-1.9.1.tar.gz -_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=0571d05ae19a156b62dce553bd0a4a0b diff --git a/metadata/md5-cache/sys-power/upower-1.90.9 b/metadata/md5-cache/sys-power/upower-1.90.9 index e3ad4172a91f..0f0a36d01219 100644 --- a/metadata/md5-cache/sys-power/upower-1.90.9 +++ b/metadata/md5-cache/sys-power/upower-1.90.9 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.66:2 sys-apps/dbus:= introspection? ( >=dev-libs/gobje RESTRICT=!test? ( test ) SLOT=0/3 SRC_URI=https://gitlab.freedesktop.org/upower/upower/-/archive/v1.90.9/upower-v1.90.9.tar.bz2 -_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=48c379b5d69abff216af065f959f477a diff --git a/metadata/md5-cache/sys-power/wluma-4.3.0-r3 b/metadata/md5-cache/sys-power/wluma-4.3.0-r3 index 1646f1aabb9e..232896f2ca67 100644 --- a/metadata/md5-cache/sys-power/wluma-4.3.0-r3 +++ b/metadata/md5-cache/sys-power/wluma-4.3.0-r3 @@ -11,5 +11,5 @@ LICENSE=ISC Apache-2.0 BSD-2 BSD ISC MIT Unicode-DFS-2016 RDEPEND=media-libs/libv4l:= media-libs/vulkan-loader:= SLOT=0 SRC_URI=https://github.com/maximbaz/wluma/archive/refs/tags/4.3.0.tar.gz -> wluma-4.3.0.gh.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.20/download -> aho-corasick-0.7.20.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/anyhow/1.0.68/download -> anyhow-1.0.68.crate https://crates.io/api/v1/crates/ash/0.37.2+1.3.238/download -> ash-0.37.2+1.3.238.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bindgen/0.65.1/download -> bindgen-0.65.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bumpalo/3.11.1/download -> bumpalo-3.11.1.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/cc/1.0.78/download -> cc-1.0.78.crate https://crates.io/api/v1/crates/cexpr/0.6.0/download -> cexpr-0.6.0.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/chrono/0.4.23/download -> chrono-0.4.23.crate https://crates.io/api/v1/crates/clang-sys/1.4.0/download -> clang-sys-1.4.0.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.6.2/download -> core-foundation-sys-0.6.2.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/core-foundation/0.9.3/download -> core-foundation-0.9.3.crate https://crates.io/api/v1/crates/core-graphics-types/0.1.1/download -> core-graphics-types-0.1.1.crate https://crates.io/api/v1/crates/core-graphics/0.22.3/download -> core-graphics-0.22.3.crate https://crates.io/api/v1/crates/cxx-build/1.0.86/download -> cxx-build-1.0.86.crate https://crates.io/api/v1/crates/cxx/1.0.86/download -> cxx-1.0.86.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.86/download -> cxxbridge-flags-1.0.86.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.86/download -> cxxbridge-macro-1.0.86.crate https://crates.io/api/v1/crates/ddc-hi/0.4.1/download -> ddc-hi-0.4.1.crate https://crates.io/api/v1/crates/ddc-i2c/0.2.1/download -> ddc-i2c-0.2.1.crate https://crates.io/api/v1/crates/ddc-macos/0.2.0/download -> ddc-macos-0.2.0.crate https://crates.io/api/v1/crates/ddc-winapi/0.2.0/download -> ddc-winapi-0.2.0.crate https://crates.io/api/v1/crates/ddc/0.2.2/download -> ddc-0.2.2.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/dirs-sys/0.3.7/download -> dirs-sys-0.3.7.crate https://crates.io/api/v1/crates/dirs/4.0.0/download -> dirs-4.0.0.crate https://crates.io/api/v1/crates/dlib/0.5.0/download -> dlib-0.5.0.crate https://crates.io/api/v1/crates/downcast-rs/1.2.0/download -> downcast-rs-1.2.0.crate https://crates.io/api/v1/crates/downcast/0.11.0/download -> downcast-0.11.0.crate https://crates.io/api/v1/crates/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/edid/0.3.0/download -> edid-0.3.0.crate https://crates.io/api/v1/crates/either/1.8.1/download -> either-1.8.1.crate https://crates.io/api/v1/crates/env_logger/0.9.3/download -> env_logger-0.9.3.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/foreign-types/0.3.2/download -> foreign-types-0.3.2.crate https://crates.io/api/v1/crates/fragile/2.0.0/download -> fragile-2.0.0.crate https://crates.io/api/v1/crates/futures-core/0.3.25/download -> futures-core-0.3.25.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/glob/0.3.1/download -> glob-0.3.1.crate https://crates.io/api/v1/crates/hashbrown/0.12.3/download -> hashbrown-0.12.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/i2c-linux-sys/0.2.1/download -> i2c-linux-sys-0.2.1.crate https://crates.io/api/v1/crates/i2c-linux/0.1.2/download -> i2c-linux-0.1.2.crate https://crates.io/api/v1/crates/i2c/0.1.0/download -> i2c-0.1.0.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.1/download -> iana-time-zone-haiku-0.1.1.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.53/download -> iana-time-zone-0.1.53.crate https://crates.io/api/v1/crates/indexmap/1.9.2/download -> indexmap-1.9.2.crate https://crates.io/api/v1/crates/inotify-sys/0.1.5/download -> inotify-sys-0.1.5.crate https://crates.io/api/v1/crates/inotify/0.10.0/download -> inotify-0.10.0.crate https://crates.io/api/v1/crates/io-kit-sys/0.1.0/download -> io-kit-sys-0.1.0.crate https://crates.io/api/v1/crates/itertools/0.10.5/download -> itertools-0.10.5.crate https://crates.io/api/v1/crates/itoa/1.0.5/download -> itoa-1.0.5.crate https://crates.io/api/v1/crates/js-sys/0.3.60/download -> js-sys-0.3.60.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/libc/0.2.141/download -> libc-0.2.141.crate https://crates.io/api/v1/crates/libloading/0.7.4/download -> libloading-0.7.4.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download -> link-cplusplus-1.0.8.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.6/download -> linked-hash-map-0.5.6.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/mach/0.2.3/download -> mach-0.2.3.crate https://crates.io/api/v1/crates/mach/0.3.2/download -> mach-0.3.2.crate https://crates.io/api/v1/crates/mccs-caps/0.1.0/download -> mccs-caps-0.1.0.crate https://crates.io/api/v1/crates/mccs-db/0.1.2/download -> mccs-db-0.1.2.crate https://crates.io/api/v1/crates/mccs/0.1.0/download -> mccs-0.1.0.crate https://crates.io/api/v1/crates/memchr/1.0.2/download -> memchr-1.0.2.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.crate https://crates.io/api/v1/crates/mio/0.8.5/download -> mio-0.8.5.crate https://crates.io/api/v1/crates/mockall/0.11.4/download -> mockall-0.11.4.crate https://crates.io/api/v1/crates/mockall_derive/0.11.4/download -> mockall_derive-0.11.4.crate https://crates.io/api/v1/crates/nix/0.24.3/download -> nix-0.24.3.crate https://crates.io/api/v1/crates/nom/3.2.1/download -> nom-3.2.1.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/num-integer/0.1.45/download -> num-integer-0.1.45.crate https://crates.io/api/v1/crates/num-traits/0.2.15/download -> num-traits-0.2.15.crate https://crates.io/api/v1/crates/nvapi-sys/0.1.3/download -> nvapi-sys-0.1.3.crate https://crates.io/api/v1/crates/nvapi/0.1.4/download -> nvapi-0.1.4.crate https://crates.io/api/v1/crates/once_cell/1.17.0/download -> once_cell-1.17.0.crate https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download -> peeking_take_while-0.1.2.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download -> pin-project-lite-0.2.9.crate https://crates.io/api/v1/crates/pkg-config/0.3.26/download -> pkg-config-0.3.26.crate https://crates.io/api/v1/crates/predicates-core/1.0.5/download -> predicates-core-1.0.5.crate https://crates.io/api/v1/crates/predicates-tree/1.0.7/download -> predicates-tree-1.0.7.crate https://crates.io/api/v1/crates/predicates/2.1.5/download -> predicates-2.1.5.crate https://crates.io/api/v1/crates/prettyplease/0.2.9/download -> prettyplease-0.2.9.crate https://crates.io/api/v1/crates/proc-macro2/1.0.62/download -> proc-macro2-1.0.62.crate https://crates.io/api/v1/crates/quote/1.0.28/download -> quote-1.0.28.crate https://crates.io/api/v1/crates/redox_syscall/0.2.16/download -> redox_syscall-0.2.16.crate https://crates.io/api/v1/crates/redox_users/0.4.3/download -> redox_users-0.4.3.crate https://crates.io/api/v1/crates/regex-syntax/0.6.29/download -> regex-syntax-0.6.29.crate https://crates.io/api/v1/crates/regex/1.7.3/download -> regex-1.7.3.crate https://crates.io/api/v1/crates/resize-slice/0.1.3/download -> resize-slice-0.1.3.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/ryu/1.0.12/download -> ryu-1.0.12.crate https://crates.io/api/v1/crates/scoped-tls/1.0.1/download -> scoped-tls-1.0.1.crate https://crates.io/api/v1/crates/scratch/1.0.3/download -> scratch-1.0.3.crate https://crates.io/api/v1/crates/serde/1.0.152/download -> serde-1.0.152.crate https://crates.io/api/v1/crates/serde_derive/1.0.152/download -> serde_derive-1.0.152.crate https://crates.io/api/v1/crates/serde_yaml/0.7.5/download -> serde_yaml-0.7.5.crate https://crates.io/api/v1/crates/serde_yaml/0.9.16/download -> serde_yaml-0.9.16.crate https://crates.io/api/v1/crates/shlex/1.1.0/download -> shlex-1.1.0.crate https://crates.io/api/v1/crates/smallvec/1.10.0/download -> smallvec-1.10.0.crate https://crates.io/api/v1/crates/socket2/0.4.7/download -> socket2-0.4.7.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.22/download -> syn-2.0.22.crate https://crates.io/api/v1/crates/termcolor/1.2.0/download -> termcolor-1.2.0.crate https://crates.io/api/v1/crates/termtree/0.4.0/download -> termtree-0.4.0.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.38/download -> thiserror-impl-1.0.38.crate https://crates.io/api/v1/crates/thiserror/1.0.38/download -> thiserror-1.0.38.crate https://crates.io/api/v1/crates/time/0.1.45/download -> time-0.1.45.crate https://crates.io/api/v1/crates/tokio/1.24.1/download -> tokio-1.24.1.crate https://crates.io/api/v1/crates/udev/0.2.0/download -> udev-0.2.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.8/download -> unicode-ident-1.0.8.crate https://crates.io/api/v1/crates/unicode-width/0.1.10/download -> unicode-width-0.1.10.crate https://crates.io/api/v1/crates/uninitialized/0.0.2/download -> uninitialized-0.0.2.crate https://crates.io/api/v1/crates/unsafe-libyaml/0.2.5/download -> unsafe-libyaml-0.2.5.crate https://crates.io/api/v1/crates/v4l-sys/0.3.0/download -> v4l-sys-0.3.0.crate https://crates.io/api/v1/crates/v4l/0.14.0/download -> v4l-0.14.0.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.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/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.83/download -> wasm-bindgen-macro-support-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.83/download -> wasm-bindgen-macro-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.83/download -> wasm-bindgen-shared-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.83/download -> wasm-bindgen-0.2.83.crate https://crates.io/api/v1/crates/wayland-client/0.29.5/download -> wayland-client-0.29.5.crate https://crates.io/api/v1/crates/wayland-commons/0.29.5/download -> wayland-commons-0.29.5.crate https://crates.io/api/v1/crates/wayland-protocols/0.29.5/download -> wayland-protocols-0.29.5.crate https://crates.io/api/v1/crates/wayland-scanner/0.29.5/download -> wayland-scanner-0.29.5.crate https://crates.io/api/v1/crates/wayland-sys/0.29.5/download -> wayland-sys-0.29.5.crate https://crates.io/api/v1/crates/which/4.4.0/download -> which-4.4.0.crate https://crates.io/api/v1/crates/widestring/0.3.0/download -> widestring-0.3.0.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-sys/0.42.0/download -> windows-sys-0.42.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.1/download -> windows_aarch64_gnullvm-0.42.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.1/download -> windows_aarch64_msvc-0.42.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.42.1/download -> windows_i686_gnu-0.42.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.42.1/download -> windows_i686_msvc-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.1/download -> windows_x86_64_gnu-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.1/download -> windows_x86_64_gnullvm-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.1/download -> windows_x86_64_msvc-0.42.1.crate https://crates.io/api/v1/crates/xdg/2.4.1/download -> xdg-2.4.1.crate https://crates.io/api/v1/crates/xml-rs/0.8.4/download -> xml-rs-0.8.4.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate https://github.com/HarveyHunt/toml/archive/7db18be32494855199ed827ac389e161914bd20d.tar.gz -> toml-7db18be32494855199ed827ac389e161914bd20d.gh.tar.gz https://github.com/HarveyHunt/toml/archive/7db18be32494855199ed827ac389e161914bd20d.tar.gz -> toml-7db18be32494855199ed827ac389e161914bd20d.gh.tar.gz -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=d4e5227d809f3ae721b0915e33d3a78f diff --git a/metadata/md5-cache/sys-power/wluma-4.4.0-r2 b/metadata/md5-cache/sys-power/wluma-4.4.0-r2 index 44d32ab913a8..6f2592ab70c6 100644 --- a/metadata/md5-cache/sys-power/wluma-4.4.0-r2 +++ b/metadata/md5-cache/sys-power/wluma-4.4.0-r2 @@ -11,5 +11,5 @@ LICENSE=ISC Apache-2.0 BSD-2 BSD ISC MIT Unicode-DFS-2016 RDEPEND=media-libs/libv4l:= media-libs/vulkan-loader:= SLOT=0 SRC_URI=https://github.com/maximbaz/wluma/archive/refs/tags/4.4.0.tar.gz -> wluma-4.4.0.gh.tar.gz https://crates.io/api/v1/crates/addr2line/0.21.0/download -> addr2line-0.21.0.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.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/android-tzdata/0.1.1/download -> android-tzdata-0.1.1.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/anyhow/1.0.81/download -> anyhow-1.0.81.crate https://crates.io/api/v1/crates/ash/0.37.3+1.3.251/download -> ash-0.37.3+1.3.251.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.2.0/download -> autocfg-1.2.0.crate https://crates.io/api/v1/crates/backtrace/0.3.71/download -> backtrace-0.3.71.crate https://crates.io/api/v1/crates/bindgen/0.65.1/download -> bindgen-0.65.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.5.0/download -> bitflags-2.5.0.crate https://crates.io/api/v1/crates/bumpalo/3.15.4/download -> bumpalo-3.15.4.crate https://crates.io/api/v1/crates/byteorder/1.5.0/download -> byteorder-1.5.0.crate https://crates.io/api/v1/crates/cc/1.0.90/download -> cc-1.0.90.crate https://crates.io/api/v1/crates/cexpr/0.6.0/download -> cexpr-0.6.0.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/chrono/0.4.37/download -> chrono-0.4.37.crate https://crates.io/api/v1/crates/clang-sys/1.7.0/download -> clang-sys-1.7.0.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.6/download -> core-foundation-sys-0.8.6.crate https://crates.io/api/v1/crates/core-foundation/0.9.4/download -> core-foundation-0.9.4.crate https://crates.io/api/v1/crates/core-graphics-types/0.1.3/download -> core-graphics-types-0.1.3.crate https://crates.io/api/v1/crates/core-graphics/0.23.1/download -> core-graphics-0.23.1.crate https://crates.io/api/v1/crates/dbus/0.9.7/download -> dbus-0.9.7.crate https://crates.io/api/v1/crates/ddc-hi/0.4.1/download -> ddc-hi-0.4.1.crate https://crates.io/api/v1/crates/ddc-i2c/0.2.2/download -> ddc-i2c-0.2.2.crate https://crates.io/api/v1/crates/ddc-macos/0.2.1/download -> ddc-macos-0.2.1.crate https://crates.io/api/v1/crates/ddc-winapi/0.2.1/download -> ddc-winapi-0.2.1.crate https://crates.io/api/v1/crates/ddc/0.2.2/download -> ddc-0.2.2.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/dlib/0.5.2/download -> dlib-0.5.2.crate https://crates.io/api/v1/crates/downcast-rs/1.2.0/download -> downcast-rs-1.2.0.crate https://crates.io/api/v1/crates/downcast/0.11.0/download -> downcast-0.11.0.crate https://crates.io/api/v1/crates/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/edid/0.3.0/download -> edid-0.3.0.crate https://crates.io/api/v1/crates/either/1.10.0/download -> either-1.10.0.crate https://crates.io/api/v1/crates/env_logger/0.9.3/download -> env_logger-0.9.3.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/errno/0.3.8/download -> errno-0.3.8.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/foreign-types-macros/0.2.3/download -> foreign-types-macros-0.2.3.crate https://crates.io/api/v1/crates/foreign-types-shared/0.3.1/download -> foreign-types-shared-0.3.1.crate https://crates.io/api/v1/crates/foreign-types/0.5.0/download -> foreign-types-0.5.0.crate https://crates.io/api/v1/crates/fragile/2.0.0/download -> fragile-2.0.0.crate https://crates.io/api/v1/crates/futures-core/0.3.30/download -> futures-core-0.3.30.crate https://crates.io/api/v1/crates/gimli/0.28.1/download -> gimli-0.28.1.crate https://crates.io/api/v1/crates/glob/0.3.1/download -> glob-0.3.1.crate https://crates.io/api/v1/crates/hashbrown/0.14.3/download -> hashbrown-0.14.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/home/0.5.9/download -> home-0.5.9.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/i2c-linux-sys/0.2.1/download -> i2c-linux-sys-0.2.1.crate https://crates.io/api/v1/crates/i2c-linux/0.1.2/download -> i2c-linux-0.1.2.crate https://crates.io/api/v1/crates/i2c/0.1.0/download -> i2c-0.1.0.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.60/download -> iana-time-zone-0.1.60.crate https://crates.io/api/v1/crates/indexmap/2.2.6/download -> indexmap-2.2.6.crate https://crates.io/api/v1/crates/inotify-sys/0.1.5/download -> inotify-sys-0.1.5.crate https://crates.io/api/v1/crates/inotify/0.10.2/download -> inotify-0.10.2.crate https://crates.io/api/v1/crates/io-kit-sys/0.4.1/download -> io-kit-sys-0.4.1.crate https://crates.io/api/v1/crates/itertools/0.10.5/download -> itertools-0.10.5.crate https://crates.io/api/v1/crates/itoa/1.0.11/download -> itoa-1.0.11.crate https://crates.io/api/v1/crates/js-sys/0.3.69/download -> js-sys-0.3.69.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/libc/0.2.153/download -> libc-0.2.153.crate https://crates.io/api/v1/crates/libdbus-sys/0.2.5/download -> libdbus-sys-0.2.5.crate https://crates.io/api/v1/crates/libloading/0.8.3/download -> libloading-0.8.3.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.6/download -> linked-hash-map-0.5.6.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download -> linux-raw-sys-0.4.13.crate https://crates.io/api/v1/crates/log/0.4.21/download -> log-0.4.21.crate https://crates.io/api/v1/crates/mach2/0.4.2/download -> mach2-0.4.2.crate https://crates.io/api/v1/crates/mach/0.3.2/download -> mach-0.3.2.crate https://crates.io/api/v1/crates/mccs-caps/0.1.3/download -> mccs-caps-0.1.3.crate https://crates.io/api/v1/crates/mccs-db/0.1.3/download -> mccs-db-0.1.3.crate https://crates.io/api/v1/crates/mccs/0.1.3/download -> mccs-0.1.3.crate https://crates.io/api/v1/crates/memchr/1.0.2/download -> memchr-1.0.2.crate https://crates.io/api/v1/crates/memchr/2.7.2/download -> memchr-2.7.2.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.7.2/download -> miniz_oxide-0.7.2.crate https://crates.io/api/v1/crates/mio/0.8.11/download -> mio-0.8.11.crate https://crates.io/api/v1/crates/mockall/0.11.4/download -> mockall-0.11.4.crate https://crates.io/api/v1/crates/mockall_derive/0.11.4/download -> mockall_derive-0.11.4.crate https://crates.io/api/v1/crates/nix/0.24.3/download -> nix-0.24.3.crate https://crates.io/api/v1/crates/nom/3.2.1/download -> nom-3.2.1.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/num-traits/0.2.18/download -> num-traits-0.2.18.crate https://crates.io/api/v1/crates/nvapi-sys/0.1.3/download -> nvapi-sys-0.1.3.crate https://crates.io/api/v1/crates/nvapi/0.1.4/download -> nvapi-0.1.4.crate https://crates.io/api/v1/crates/object/0.32.2/download -> object-0.32.2.crate https://crates.io/api/v1/crates/once_cell/1.19.0/download -> once_cell-1.19.0.crate https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download -> peeking_take_while-0.1.2.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.14/download -> pin-project-lite-0.2.14.crate https://crates.io/api/v1/crates/pkg-config/0.3.30/download -> pkg-config-0.3.30.crate https://crates.io/api/v1/crates/predicates-core/1.0.6/download -> predicates-core-1.0.6.crate https://crates.io/api/v1/crates/predicates-tree/1.0.9/download -> predicates-tree-1.0.9.crate https://crates.io/api/v1/crates/predicates/2.1.5/download -> predicates-2.1.5.crate https://crates.io/api/v1/crates/prettyplease/0.2.17/download -> prettyplease-0.2.17.crate https://crates.io/api/v1/crates/proc-macro2/1.0.79/download -> proc-macro2-1.0.79.crate https://crates.io/api/v1/crates/quote/1.0.35/download -> quote-1.0.35.crate https://crates.io/api/v1/crates/regex-automata/0.4.6/download -> regex-automata-0.4.6.crate https://crates.io/api/v1/crates/regex-syntax/0.8.3/download -> regex-syntax-0.8.3.crate https://crates.io/api/v1/crates/regex/1.10.4/download -> regex-1.10.4.crate https://crates.io/api/v1/crates/resize-slice/0.1.3/download -> resize-slice-0.1.3.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.23/download -> rustc-demangle-0.1.23.crate https://crates.io/api/v1/crates/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/rustix/0.38.32/download -> rustix-0.38.32.crate https://crates.io/api/v1/crates/ryu/1.0.17/download -> ryu-1.0.17.crate https://crates.io/api/v1/crates/scoped-tls/1.0.1/download -> scoped-tls-1.0.1.crate https://crates.io/api/v1/crates/serde/1.0.197/download -> serde-1.0.197.crate https://crates.io/api/v1/crates/serde_derive/1.0.197/download -> serde_derive-1.0.197.crate https://crates.io/api/v1/crates/serde_spanned/0.6.5/download -> serde_spanned-0.6.5.crate https://crates.io/api/v1/crates/serde_yaml/0.7.5/download -> serde_yaml-0.7.5.crate https://crates.io/api/v1/crates/serde_yaml/0.9.34+deprecated/download -> serde_yaml-0.9.34+deprecated.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/smallvec/1.13.2/download -> smallvec-1.13.2.crate https://crates.io/api/v1/crates/socket2/0.5.6/download -> socket2-0.5.6.crate https://crates.io/api/v1/crates/syn/1.0.109/download -> syn-1.0.109.crate https://crates.io/api/v1/crates/syn/2.0.57/download -> syn-2.0.57.crate https://crates.io/api/v1/crates/termcolor/1.4.1/download -> termcolor-1.4.1.crate https://crates.io/api/v1/crates/termtree/0.4.1/download -> termtree-0.4.1.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.58/download -> thiserror-impl-1.0.58.crate https://crates.io/api/v1/crates/thiserror/1.0.58/download -> thiserror-1.0.58.crate https://crates.io/api/v1/crates/tokio/1.37.0/download -> tokio-1.37.0.crate https://crates.io/api/v1/crates/toml/0.7.8/download -> toml-0.7.8.crate https://crates.io/api/v1/crates/toml_datetime/0.6.5/download -> toml_datetime-0.6.5.crate https://crates.io/api/v1/crates/toml_edit/0.19.15/download -> toml_edit-0.19.15.crate https://crates.io/api/v1/crates/udev/0.2.0/download -> udev-0.2.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate https://crates.io/api/v1/crates/uninitialized/0.0.2/download -> uninitialized-0.0.2.crate https://crates.io/api/v1/crates/unsafe-libyaml/0.2.11/download -> unsafe-libyaml-0.2.11.crate https://crates.io/api/v1/crates/v4l-sys/0.3.0/download -> v4l-sys-0.3.0.crate https://crates.io/api/v1/crates/v4l/0.14.0/download -> v4l-0.14.0.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.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/wasm-bindgen-backend/0.2.92/download -> wasm-bindgen-backend-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.92/download -> wasm-bindgen-macro-support-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.92/download -> wasm-bindgen-macro-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.92/download -> wasm-bindgen-shared-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.92/download -> wasm-bindgen-0.2.92.crate https://crates.io/api/v1/crates/wayland-client/0.29.5/download -> wayland-client-0.29.5.crate https://crates.io/api/v1/crates/wayland-commons/0.29.5/download -> wayland-commons-0.29.5.crate https://crates.io/api/v1/crates/wayland-protocols/0.29.5/download -> wayland-protocols-0.29.5.crate https://crates.io/api/v1/crates/wayland-scanner/0.29.5/download -> wayland-scanner-0.29.5.crate https://crates.io/api/v1/crates/wayland-sys/0.29.5/download -> wayland-sys-0.29.5.crate https://crates.io/api/v1/crates/which/4.4.2/download -> which-4.4.2.crate https://crates.io/api/v1/crates/widestring/1.0.2/download -> widestring-1.0.2.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.6/download -> winapi-util-0.1.6.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-core/0.52.0/download -> windows-core-0.52.0.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.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-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.4/download -> windows-targets-0.52.4.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.4/download -> windows_aarch64_gnullvm-0.52.4.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.4/download -> windows_aarch64_msvc-0.52.4.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.4/download -> windows_i686_gnu-0.52.4.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.4/download -> windows_i686_msvc-0.52.4.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.4/download -> windows_x86_64_gnu-0.52.4.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.4/download -> windows_x86_64_gnullvm-0.52.4.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.4/download -> windows_x86_64_msvc-0.52.4.crate https://crates.io/api/v1/crates/winnow/0.5.40/download -> winnow-0.5.40.crate https://crates.io/api/v1/crates/xdg/2.5.2/download -> xdg-2.5.2.crate https://crates.io/api/v1/crates/xml-rs/0.8.19/download -> xml-rs-0.8.19.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=666f3c9a61576fb033274e10ebade76a diff --git a/metadata/md5-cache/sys-power/wluma-4.9.0 b/metadata/md5-cache/sys-power/wluma-4.9.0 index 181eb02b910c..b32a17e9fae2 100644 --- a/metadata/md5-cache/sys-power/wluma-4.9.0 +++ b/metadata/md5-cache/sys-power/wluma-4.9.0 @@ -11,5 +11,5 @@ LICENSE=ISC Apache-2.0 BSD ISC MIT Unicode-3.0 RDEPEND=media-libs/libv4l:= media-libs/vulkan-loader:= SLOT=0 SRC_URI=https://github.com/maximbaz/wluma/archive/refs/tags/4.9.0.tar.gz -> wluma-4.9.0.gh.tar.gz 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/android-tzdata/0.1.1/download -> android-tzdata-0.1.1.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.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/anyhow/1.0.96/download -> anyhow-1.0.96.crate https://crates.io/api/v1/crates/ash/0.38.0+1.3.281/download -> ash-0.38.0+1.3.281.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/bindgen/0.65.1/download -> bindgen-0.65.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.8.0/download -> bitflags-2.8.0.crate https://crates.io/api/v1/crates/bumpalo/3.17.0/download -> bumpalo-3.17.0.crate https://crates.io/api/v1/crates/byteorder/1.5.0/download -> byteorder-1.5.0.crate https://crates.io/api/v1/crates/cc/1.2.15/download -> cc-1.2.15.crate https://crates.io/api/v1/crates/cexpr/0.6.0/download -> cexpr-0.6.0.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/chrono/0.4.40/download -> chrono-0.4.40.crate https://crates.io/api/v1/crates/clang-sys/1.8.1/download -> clang-sys-1.8.1.crate https://crates.io/api/v1/crates/colorchoice/1.0.3/download -> colorchoice-1.0.3.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/core-foundation/0.10.0/download -> core-foundation-0.10.0.crate https://crates.io/api/v1/crates/core-graphics-types/0.2.0/download -> core-graphics-types-0.2.0.crate https://crates.io/api/v1/crates/core-graphics/0.24.0/download -> core-graphics-0.24.0.crate https://crates.io/api/v1/crates/dbus/0.9.7/download -> dbus-0.9.7.crate https://crates.io/api/v1/crates/ddc-hi/0.4.1/download -> ddc-hi-0.4.1.crate https://crates.io/api/v1/crates/ddc-i2c/0.2.2/download -> ddc-i2c-0.2.2.crate https://crates.io/api/v1/crates/ddc-macos/0.2.2/download -> ddc-macos-0.2.2.crate https://crates.io/api/v1/crates/ddc-winapi/0.2.2/download -> ddc-winapi-0.2.2.crate https://crates.io/api/v1/crates/ddc/0.2.2/download -> ddc-0.2.2.crate https://crates.io/api/v1/crates/downcast-rs/1.2.1/download -> downcast-rs-1.2.1.crate https://crates.io/api/v1/crates/downcast/0.11.0/download -> downcast-0.11.0.crate https://crates.io/api/v1/crates/drm-fourcc/2.2.0/download -> drm-fourcc-2.2.0.crate https://crates.io/api/v1/crates/dtoa/0.4.8/download -> dtoa-0.4.8.crate https://crates.io/api/v1/crates/edid/0.3.0/download -> edid-0.3.0.crate https://crates.io/api/v1/crates/either/1.14.0/download -> either-1.14.0.crate https://crates.io/api/v1/crates/env_filter/0.1.3/download -> env_filter-0.1.3.crate https://crates.io/api/v1/crates/env_logger/0.11.6/download -> env_logger-0.11.6.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/errno/0.3.10/download -> errno-0.3.10.crate https://crates.io/api/v1/crates/foreign-types-macros/0.2.3/download -> foreign-types-macros-0.2.3.crate https://crates.io/api/v1/crates/foreign-types-shared/0.3.1/download -> foreign-types-shared-0.3.1.crate https://crates.io/api/v1/crates/foreign-types/0.5.0/download -> foreign-types-0.5.0.crate https://crates.io/api/v1/crates/fragile/2.0.0/download -> fragile-2.0.0.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/gimli/0.31.1/download -> gimli-0.31.1.crate https://crates.io/api/v1/crates/glob/0.3.2/download -> glob-0.3.2.crate https://crates.io/api/v1/crates/hashbrown/0.15.2/download -> hashbrown-0.15.2.crate https://crates.io/api/v1/crates/home/0.5.11/download -> home-0.5.11.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/i2c-linux-sys/0.2.1/download -> i2c-linux-sys-0.2.1.crate https://crates.io/api/v1/crates/i2c-linux/0.1.2/download -> i2c-linux-0.1.2.crate https://crates.io/api/v1/crates/i2c/0.1.0/download -> i2c-0.1.0.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.61/download -> iana-time-zone-0.1.61.crate https://crates.io/api/v1/crates/indexmap/2.7.1/download -> indexmap-2.7.1.crate https://crates.io/api/v1/crates/inotify-sys/0.1.5/download -> inotify-sys-0.1.5.crate https://crates.io/api/v1/crates/inotify/0.11.0/download -> inotify-0.11.0.crate https://crates.io/api/v1/crates/io-kit-sys/0.4.1/download -> io-kit-sys-0.4.1.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/itertools/0.14.0/download -> itertools-0.14.0.crate https://crates.io/api/v1/crates/itoa/1.0.14/download -> itoa-1.0.14.crate https://crates.io/api/v1/crates/js-sys/0.3.77/download -> js-sys-0.3.77.crate https://crates.io/api/v1/crates/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/lazycell/1.3.0/download -> lazycell-1.3.0.crate https://crates.io/api/v1/crates/libc/0.2.170/download -> libc-0.2.170.crate https://crates.io/api/v1/crates/libdbus-sys/0.2.5/download -> libdbus-sys-0.2.5.crate https://crates.io/api/v1/crates/libloading/0.8.6/download -> libloading-0.8.6.crate https://crates.io/api/v1/crates/libudev-sys/0.1.4/download -> libudev-sys-0.1.4.crate https://crates.io/api/v1/crates/linked-hash-map/0.5.6/download -> linked-hash-map-0.5.6.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.15/download -> linux-raw-sys-0.4.15.crate https://crates.io/api/v1/crates/log/0.4.26/download -> log-0.4.26.crate https://crates.io/api/v1/crates/mach2/0.4.2/download -> mach2-0.4.2.crate https://crates.io/api/v1/crates/mccs-caps/0.1.3/download -> mccs-caps-0.1.3.crate https://crates.io/api/v1/crates/mccs-db/0.1.3/download -> mccs-db-0.1.3.crate https://crates.io/api/v1/crates/mccs/0.1.3/download -> mccs-0.1.3.crate https://crates.io/api/v1/crates/memchr/1.0.2/download -> memchr-1.0.2.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.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/mockall/0.13.1/download -> mockall-0.13.1.crate https://crates.io/api/v1/crates/mockall_derive/0.13.1/download -> mockall_derive-0.13.1.crate https://crates.io/api/v1/crates/nom/3.2.1/download -> nom-3.2.1.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/nvapi-sys/0.1.3/download -> nvapi-sys-0.1.3.crate https://crates.io/api/v1/crates/nvapi/0.1.4/download -> nvapi-0.1.4.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.20.3/download -> once_cell-1.20.3.crate https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download -> peeking_take_while-0.1.2.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/pkg-config/0.3.31/download -> pkg-config-0.3.31.crate https://crates.io/api/v1/crates/predicates-core/1.0.9/download -> predicates-core-1.0.9.crate https://crates.io/api/v1/crates/predicates-tree/1.0.12/download -> predicates-tree-1.0.12.crate https://crates.io/api/v1/crates/predicates/3.1.3/download -> predicates-3.1.3.crate https://crates.io/api/v1/crates/prettyplease/0.2.29/download -> prettyplease-0.2.29.crate https://crates.io/api/v1/crates/proc-macro2/1.0.93/download -> proc-macro2-1.0.93.crate https://crates.io/api/v1/crates/quick-xml/0.37.2/download -> quick-xml-0.37.2.crate https://crates.io/api/v1/crates/quote/1.0.38/download -> quote-1.0.38.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-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/resize-slice/0.1.3/download -> resize-slice-0.1.3.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/rustc-hash/1.1.0/download -> rustc-hash-1.1.0.crate https://crates.io/api/v1/crates/rustix/0.38.44/download -> rustix-0.38.44.crate https://crates.io/api/v1/crates/rustversion/1.0.19/download -> rustversion-1.0.19.crate https://crates.io/api/v1/crates/ryu/1.0.19/download -> ryu-1.0.19.crate https://crates.io/api/v1/crates/serde/1.0.218/download -> serde-1.0.218.crate https://crates.io/api/v1/crates/serde_derive/1.0.218/download -> serde_derive-1.0.218.crate https://crates.io/api/v1/crates/serde_spanned/0.6.8/download -> serde_spanned-0.6.8.crate https://crates.io/api/v1/crates/serde_yaml/0.7.5/download -> serde_yaml-0.7.5.crate https://crates.io/api/v1/crates/serde_yaml/0.9.34+deprecated/download -> serde_yaml-0.9.34+deprecated.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.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/syn/2.0.98/download -> syn-2.0.98.crate https://crates.io/api/v1/crates/termtree/0.5.1/download -> termtree-0.5.1.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.69/download -> thiserror-impl-1.0.69.crate https://crates.io/api/v1/crates/thiserror/1.0.69/download -> thiserror-1.0.69.crate https://crates.io/api/v1/crates/tokio/1.43.0/download -> tokio-1.43.0.crate https://crates.io/api/v1/crates/toml/0.8.20/download -> toml-0.8.20.crate https://crates.io/api/v1/crates/toml_datetime/0.6.8/download -> toml_datetime-0.6.8.crate https://crates.io/api/v1/crates/toml_edit/0.22.24/download -> toml_edit-0.22.24.crate https://crates.io/api/v1/crates/udev/0.2.0/download -> udev-0.2.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.17/download -> unicode-ident-1.0.17.crate https://crates.io/api/v1/crates/uninitialized/0.0.2/download -> uninitialized-0.0.2.crate https://crates.io/api/v1/crates/unsafe-libyaml/0.2.11/download -> unsafe-libyaml-0.2.11.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/v4l-sys/0.3.0/download -> v4l-sys-0.3.0.crate https://crates.io/api/v1/crates/v4l/0.14.0/download -> v4l-0.14.0.crate https://crates.io/api/v1/crates/void/1.0.2/download -> void-1.0.2.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/wasm-bindgen-backend/0.2.100/download -> wasm-bindgen-backend-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.100/download -> wasm-bindgen-macro-support-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.100/download -> wasm-bindgen-macro-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.100/download -> wasm-bindgen-shared-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.100/download -> wasm-bindgen-0.2.100.crate https://crates.io/api/v1/crates/wayland-backend/0.3.8/download -> wayland-backend-0.3.8.crate https://crates.io/api/v1/crates/wayland-client/0.31.8/download -> wayland-client-0.31.8.crate https://crates.io/api/v1/crates/wayland-protocols-wlr/0.3.6/download -> wayland-protocols-wlr-0.3.6.crate https://crates.io/api/v1/crates/wayland-protocols/0.32.6/download -> wayland-protocols-0.32.6.crate https://crates.io/api/v1/crates/wayland-scanner/0.31.6/download -> wayland-scanner-0.31.6.crate https://crates.io/api/v1/crates/wayland-sys/0.31.6/download -> wayland-sys-0.31.6.crate https://crates.io/api/v1/crates/which/4.4.2/download -> which-4.4.2.crate https://crates.io/api/v1/crates/widestring/1.1.0/download -> widestring-1.1.0.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-core/0.52.0/download -> windows-core-0.52.0.crate https://crates.io/api/v1/crates/windows-link/0.1.0/download -> windows-link-0.1.0.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/winnow/0.7.3/download -> winnow-0.7.3.crate https://crates.io/api/v1/crates/xdg/2.5.2/download -> xdg-2.5.2.crate https://crates.io/api/v1/crates/yaml-rust/0.4.5/download -> yaml-rust-0.4.5.crate -_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=cargo 53bab5a62cfc3526d8ed02c0a38a6033 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=74f5735686d0ddb8239480b3330fbcaa diff --git a/metadata/md5-cache/www-client/ungoogled-chromium-148.0.7778.56_p1 b/metadata/md5-cache/www-client/ungoogled-chromium-148.0.7778.56_p1 index e5fc33317903..4357807952d0 100644 --- a/metadata/md5-cache/www-client/ungoogled-chromium-148.0.7778.56_p1 +++ b/metadata/md5-cache/www-client/ungoogled-chromium-148.0.7778.56_p1 @@ -1,6 +1,6 @@ -BDEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) || ( ( dev-lang/python:3.14[xml(+)] dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13[xml(+)] dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12[xml(+)] dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11[xml(+)] dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10[xml(+)] dev-python/setuptools[python_targets_python3_10(-)] ) ) >=app-arch/gzip-1.7 !headless? ( qt6? ( dev-qt/qtbase:6 ) ) !bundled-toolchain? ( llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 llvm-core/lld:21 cfi? ( llvm-runtimes/clang-runtime:21[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:21[cfi] ) ) ) llvm_slot_22? ( llvm-core/clang:22 llvm-core/llvm:22 llvm-core/lld:22 cfi? ( llvm-runtimes/clang-runtime:22[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:22[cfi] ) ) ) llvm_slot_23? ( llvm-core/clang:23 llvm-core/llvm:23 llvm-core/lld:23 cfi? ( llvm-runtimes/clang-runtime:23[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:23[cfi] ) ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.1[llvm_slot_21,rustfmt] dev-lang/rust:1.94.1[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.94.0[llvm_slot_21,rustfmt] dev-lang/rust:1.94.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.93.1[llvm_slot_21,rustfmt] dev-lang/rust:1.93.1[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.93.0[llvm_slot_21,rustfmt] dev-lang/rust:1.93.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.92.0[llvm_slot_21,rustfmt] dev-lang/rust:1.92.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.91.0[llvm_slot_21,rustfmt] dev-lang/rust:1.91.0[llvm_slot_21,rustfmt] ) ) llvm_slot_22? ( || ( dev-lang/rust-bin:9999[llvm_slot_22,rustfmt] dev-lang/rust:9999[llvm_slot_22,rustfmt] dev-lang/rust-bin:1.95.0[llvm_slot_22,rustfmt] dev-lang/rust:1.95.0[llvm_slot_22,rustfmt] ) ) ) >=dev-util/bindgen-0.72.1 >=dev-build/gn-0.2354 app-alternatives/ninja dev-lang/perl >=dev-util/gperf-3.2 dev-util/esbuild:0.25.1 dev-vcs/git >=net-libs/nodejs-24.12.0[inspector] sys-apps/hwdata >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig x11-misc/xdg-utils virtual/pkgconfig +BDEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= media-libs/libpng:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) || ( ( dev-lang/python:3.14[xml(+)] dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13[xml(+)] dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12[xml(+)] dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11[xml(+)] dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10[xml(+)] dev-python/setuptools[python_targets_python3_10(-)] ) ) >=app-arch/gzip-1.7 !headless? ( qt6? ( dev-qt/qtbase:6 ) ) !bundled-toolchain? ( llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 llvm-core/lld:21 cfi? ( llvm-runtimes/clang-runtime:21[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:21[cfi] ) ) ) llvm_slot_22? ( llvm-core/clang:22 llvm-core/llvm:22 llvm-core/lld:22 cfi? ( llvm-runtimes/clang-runtime:22[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:22[cfi] ) ) ) llvm_slot_23? ( llvm-core/clang:23 llvm-core/llvm:23 llvm-core/lld:23 cfi? ( llvm-runtimes/clang-runtime:23[sanitize] ) official? ( !ppc64? ( llvm-runtimes/compiler-rt-sanitizers:23[cfi] ) ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.1[llvm_slot_21,rustfmt] dev-lang/rust:1.94.1[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.94.0[llvm_slot_21,rustfmt] dev-lang/rust:1.94.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.93.1[llvm_slot_21,rustfmt] dev-lang/rust:1.93.1[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.93.0[llvm_slot_21,rustfmt] dev-lang/rust:1.93.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.92.0[llvm_slot_21,rustfmt] dev-lang/rust:1.92.0[llvm_slot_21,rustfmt] dev-lang/rust-bin:1.91.0[llvm_slot_21,rustfmt] dev-lang/rust:1.91.0[llvm_slot_21,rustfmt] ) ) llvm_slot_22? ( || ( dev-lang/rust-bin:9999[llvm_slot_22,rustfmt] dev-lang/rust:9999[llvm_slot_22,rustfmt] dev-lang/rust-bin:1.95.0[llvm_slot_22,rustfmt] dev-lang/rust:1.95.0[llvm_slot_22,rustfmt] ) ) ) >=dev-util/bindgen-0.72.1 >=dev-build/gn-0.2354 app-alternatives/ninja dev-lang/perl >=dev-util/gperf-3.2 dev-util/esbuild:0.25.1 dev-vcs/git >=net-libs/nodejs-24.12.0[inspector] sys-apps/hwdata >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig x11-misc/xdg-utils virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack -DEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) app-arch/bzip2:= dev-libs/expat:= system-ffmpeg? ( >=media-video/ffmpeg-6.1:= >=media-libs/opus-1.3.1:= ) net-misc/curl[ssl] sys-apps/dbus:= media-libs/flac:= sys-libs/zlib:=[minizip] !headless? ( >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/mesa:=[X?,wayland?] virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= cups? ( >=net-print/cups-1.3.11:= ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) X? ( x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libxshmfence:= ) ) !headless? ( gtk4? ( gui-libs/gtk:4[X?,wayland?] ) !gtk4? ( x11-libs/gtk+:3[X?,wayland?] ) ) +DEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= media-libs/libpng:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) app-arch/bzip2:= dev-libs/expat:= system-ffmpeg? ( >=media-video/ffmpeg-6.1:= >=media-libs/opus-1.3.1:= ) net-misc/curl[ssl] sys-apps/dbus:= media-libs/flac:= sys-libs/zlib:=[minizip] !headless? ( >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/mesa:=[X?,wayland?] virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= cups? ( >=net-print/cups-1.3.11:= ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) X? ( x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libxshmfence:= ) ) !headless? ( gtk4? ( gui-libs/gtk:4[X?,wayland?] ) !gtk4? ( x11-libs/gtk+:3[X?,wayland?] ) ) DESCRIPTION=Modifications to Chromium for removing Google integration and enhancing privacy EAPI=8 HOMEPAGE=https://github.com/ungoogled-software/ungoogled-chromium @@ -8,10 +8,10 @@ INHERIT=check-reqs chromium-2 desktop flag-o-matic llvm-r1 multiprocessing ninja IUSE=+X bindist bluetooth bundled-toolchain cfi convert-dict cups custom-cflags debug ffmpeg-chromium enable-driver gtk4 hangouts headless kerberos +libcxx nvidia +official optimize-thinlto optimize-webui override-data-dir pax-kernel pgo +proprietary-codecs pulseaudio qt6 screencast selinux test thinlto cromite vaapi wayland widevine cpu_flags_ppc_vsx3 system-abseil-cpp system-av1 system-brotli system-crc32c system-double-conversion system-ffmpeg +system-harfbuzz system-icu system-jsoncpp +system-libusb system-libvpx +system-openh264 system-openjpeg system-re2 system-snappy system-woff2 +system-zstd +l10n_af +l10n_am +l10n_ar +l10n_as +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_bs +l10n_ca +l10n_cs +l10n_cy +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_es +l10n_es-419 +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fr-CA +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_is +l10n_it +l10n_ja +l10n_ka +l10n_kk +l10n_km +l10n_kn +l10n_ko +l10n_ky +l10n_lo +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mn +l10n_mr +l10n_ms +l10n_my +l10n_nb +l10n_ne +l10n_nl +l10n_or +l10n_pa +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_si +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_uz +l10n_vi +l10n_zh-CN +l10n_zh-HK +l10n_zh-TW +l10n_zu +llvm_slot_21 llvm_slot_22 llvm_slot_23 KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Base64 Boost-1.0 CC-BY-3.0 CC-BY-4.0 Clear-BSD FFT2D FTL IJG ISC LGPL-2 LGPL-2.1 MIT MPL-1.1 MPL-2.0 Ms-PL PSF-2 SGI-B-2.0 SSLeay SunSoft Unicode-3.0 Unicode-DFS-2015 Unlicense UoI-NCSA ZLIB libtiff openssl cromite? ( GPL-3 ) -RDEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) app-arch/bzip2:= dev-libs/expat:= system-ffmpeg? ( >=media-video/ffmpeg-6.1:= >=media-libs/opus-1.3.1:= ) net-misc/curl[ssl] sys-apps/dbus:= media-libs/flac:= sys-libs/zlib:=[minizip] !headless? ( >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/mesa:=[X?,wayland?] virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= cups? ( >=net-print/cups-1.3.11:= ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) X? ( x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libxshmfence:= ) ) >=www-client/chromium-common-2 !headless? ( || ( x11-libs/gtk+:3[X?,wayland?] gui-libs/gtk:4[X?,wayland?] ) qt6? ( dev-qt/qtbase:6[X?,wayland?] ) ) virtual/ttf-fonts selinux? ( sec-policy/selinux-chromium ) bindist? ( ffmpeg-chromium? ( media-video/ffmpeg-chromium:148 ) ) !override-data-dir? ( !www-client/chromium:beta !www-client/cromite:beta[-override-data-dir] ) +RDEPEND=system-icu? ( >=dev-libs/icu-78:= ) system-abseil-cpp? ( >=dev-cpp/abseil-cpp-20260107.0 ) system-brotli? ( >=app-arch/brotli-9999 ) system-crc32c? ( dev-libs/crc32c ) system-double-conversion? ( dev-libs/double-conversion ) system-woff2? ( media-libs/woff2 ) system-snappy? ( app-arch/snappy ) system-jsoncpp? ( dev-libs/jsoncpp ) system-openjpeg? ( media-libs/openjpeg:2= ) system-re2? ( >=dev-libs/re2-0.2019.08.01:= ) system-libvpx? ( >=media-libs/libvpx-1.13.0:=[postproc] ) system-libusb? ( virtual/libusb:1 ) cromite? ( dev-util/patchutils ) >=dev-libs/libxml2-2.12.4:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= dev-libs/libxslt:= media-libs/fontconfig:= >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= media-libs/libpng:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] >=media-libs/openh264-1.6.0:= system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.7.0:= ) sys-libs/zlib:= !headless? ( dev-libs/glib:2 >=media-libs/alsa-lib-1.0.19:= pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.9 ) ) sys-apps/pciutils:= kerberos? ( virtual/krb5 ) vaapi? ( >=media-libs/libva-2.7:=[X?,wayland?] ) X? ( x11-base/xorg-proto:= x11-libs/libX11:= x11-libs/libxcb:= x11-libs/libXext:= ) x11-libs/libxkbcommon:= wayland? ( dev-libs/libffi:= dev-libs/wayland:= screencast? ( media-video/pipewire:= || ( sys-apps/xdg-desktop-portal-gnome sys-apps/xdg-desktop-portal-gtk kde-plasma/xdg-desktop-portal-kde gui-libs/xdg-desktop-portal-lxqt gui-libs/xdg-desktop-portal-wlr ) ) ) ) app-arch/bzip2:= dev-libs/expat:= system-ffmpeg? ( >=media-video/ffmpeg-6.1:= >=media-libs/opus-1.3.1:= ) net-misc/curl[ssl] sys-apps/dbus:= media-libs/flac:= sys-libs/zlib:=[minizip] !headless? ( >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/mesa:=[X?,wayland?] virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= cups? ( >=net-print/cups-1.3.11:= ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) X? ( x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libxshmfence:= ) ) >=www-client/chromium-common-2 !headless? ( || ( x11-libs/gtk+:3[X?,wayland?] gui-libs/gtk:4[X?,wayland?] ) qt6? ( dev-qt/qtbase:6[X?,wayland?] ) ) virtual/ttf-fonts selinux? ( sec-policy/selinux-chromium ) bindist? ( ffmpeg-chromium? ( media-video/ffmpeg-chromium:148 ) ) !override-data-dir? ( !www-client/chromium:beta !www-client/cromite:beta[-override-data-dir] ) REQUIRED_USE=!headless? ( || ( X wayland ) ) screencast? ( wayland ) ffmpeg-chromium? ( bindist proprietary-codecs ) optimize-thinlto? ( thinlto ) cfi? ( thinlto ) x86? ( !thinlto !widevine ) debug? ( !official ) vaapi? ( !system-av1 !system-libvpx ) ^^ ( llvm_slot_21 llvm_slot_22 llvm_slot_23 ) RESTRICT=!bindist? ( bindist ) !test? ( test ) arm64? ( test ) !system-ffmpeg? ( proprietary-codecs? ( bindist ) ) !system-openh264? ( bindist ) cromite? ( bindist ) SLOT=beta SRC_URI=https://github.com/chromium-linux-tarballs/chromium-tarballs/releases/download/148.0.7778.56/chromium-148.0.7778.56-linux.tar.xz https://deps.gentoo.zip/www-client/chromium/rollup-wasm-node-4.57.1.tgz https://gitlab.com/Matt.Jolly/chromium-patches/-/archive/148-3/chromium-patches-148-3.tar.bz2 !bundled-toolchain? ( https://codeberg.org/selfisekai/copium/archive/fe1caafa06f27542c18a881348f78e984e2d9fe2.tar.gz -> chromium-patches-copium-fe1caafa06.tar.gz ) bundled-toolchain? ( https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-llvmorg-23-init-5669-g8a0be0bc-4.tar.xz -> chromium-clang-llvmorg-23-init-5669-g8a0be0bc-4.tar.xz https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/rust-toolchain-6f54d591c3116ee7f8ce9321ddeca286810cc142-7-llvmorg-23-init-5669-g8a0be0bc.tar.xz -> chromium-rust-toolchain-6f54d591c3-7-llvmorg-23-init-5669-g8a0be0bc.tar.xz ) test? ( https://chromium-fonts.storage.googleapis.com/a28b222b79851716f8358d2800157d9ffe117b3545031ae51f69b7e1e1b9a969 -> chromium-testfonts-a28b222b79.tar.gz ) ppc64? ( https://gitlab.raptorengineering.com/raptor-engineering-public/chromium/openpower-patches/-/archive/a85b64f07b489b8c6fdb13ecf79c16c56c560fc6/openpower-patches-a85b64f07b489b8c6fdb13ecf79c16c56c560fc6.tar.bz2 -> chromium-openpower-a85b64f07b.tar.bz2 ) https://github.com/ungoogled-software/ungoogled-chromium/archive/eb8121bdae2469f4e0a3634437e99ff687c0e55f.tar.gz -> ungoogled-chromium-eb8121bdae2469f4e0a3634437e99ff687c0e55f.tar.gz cromite? ( https://github.com/uazo/cromite/archive/15d48b061426a1f4a8ae8596622f0599ca626056.tar.gz -> cromite-15d48b061426a1f4a8ae8596622f0599ca626056.tar.gz ) _eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 llvm-r1 77771a412c60b32ce3205d377edd7b83 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 rust c5ae4c9b5eca97bd7fc77fede663873f systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=07ff6636e8e0de9617e6d3e78e39b5be +_md5_=c726729f27d19e16a47755eb1d1ef269 diff --git a/metadata/md5-cache/x11-drivers/OpenTabletDriver-0.6.6.2 b/metadata/md5-cache/x11-drivers/OpenTabletDriver-0.6.6.2 index de0006e6b5e7..e7c45ec0312c 100644 --- a/metadata/md5-cache/x11-drivers/OpenTabletDriver-0.6.6.2 +++ b/metadata/md5-cache/x11-drivers/OpenTabletDriver-0.6.6.2 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/libevdev virtual/udev x11-libs/gtk+:3 x11-libs/libX11 x11-libs/ RESTRICT=strip SLOT=0 SRC_URI=https://github.com/OpenTabletDriver/OpenTabletDriver/archive/refs/tags/v0.6.6.2.tar.gz -> OpenTabletDriver-0.6.6.2.tar.gz https://api.nuget.org/v3-flatcontainer/atksharp/3.24.24.34/atksharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/cairosharp/3.24.24.34/cairosharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/castle.core/4.4.0/castle.core.4.4.0.nupkg https://api.nuget.org/v3-flatcontainer/coverlet.collector/3.0.2/coverlet.collector.3.0.2.nupkg https://api.nuget.org/v3-flatcontainer/diffplex/1.7.2/diffplex.1.7.2.nupkg https://api.nuget.org/v3-flatcontainer/eto.forms/2.5.10/eto.forms.2.5.10.nupkg https://api.nuget.org/v3-flatcontainer/eto.forms/2.5.11/eto.forms.2.5.11.nupkg https://api.nuget.org/v3-flatcontainer/eto.platform.gtk/2.5.11/eto.platform.gtk.2.5.11.nupkg https://api.nuget.org/v3-flatcontainer/gdksharp/3.24.24.34/gdksharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/giosharp/3.24.24.34/giosharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/glibsharp/3.24.24.34/glibsharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/gtksharp/3.24.24.34/gtksharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/hidsharpcore/1.2.1.1/hidsharpcore.1.2.1.1.nupkg https://api.nuget.org/v3-flatcontainer/messagepack/2.1.194/messagepack.2.1.194.nupkg https://api.nuget.org/v3-flatcontainer/messagepack.annotations/2.1.194/messagepack.annotations.2.1.194.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/1.1.1/microsoft.bcl.asyncinterfaces.1.1.1.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.codecoverage/16.9.4/microsoft.codecoverage.16.9.4.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/6.0.0-rc.1.21451.13/microsoft.extensions.dependencyinjection.6.0.0-rc.1.21451.13.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/6.0.0-rc.1.21451.13/microsoft.extensions.dependencyinjection.abstractions.6.0.0-rc.1.21451.13.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/3.0.0/microsoft.netcore.platforms.3.0.0.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/16.9.4/microsoft.net.test.sdk.16.9.4.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/16.9.4/microsoft.testplatform.objectmodel.16.9.4.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.testhost/16.9.4/microsoft.testplatform.testhost.16.9.4.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.threading/16.7.56/microsoft.visualstudio.threading.16.7.56.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.threading.analyzers/16.7.56/microsoft.visualstudio.threading.analyzers.16.7.56.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.validation/15.5.31/microsoft.visualstudio.validation.15.5.31.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.6.0/microsoft.win32.registry.4.6.0.nupkg https://api.nuget.org/v3-flatcontainer/moq/4.16.1/moq.4.16.1.nupkg https://api.nuget.org/v3-flatcontainer/nerdbank.streams/2.6.77/nerdbank.streams.2.6.77.nupkg https://api.nuget.org/v3-flatcontainer/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2/newtonsoft.json.12.0.2.nupkg https://api.nuget.org/v3-flatcontainer/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg https://api.nuget.org/v3-flatcontainer/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg https://api.nuget.org/v3-flatcontainer/newtonsoft.json.schema/3.0.15/newtonsoft.json.schema.3.0.15.nupkg https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.0.0/nuget.frameworks.5.0.0.nupkg https://api.nuget.org/v3-flatcontainer/octokit/0.50.0/octokit.0.50.0.nupkg https://api.nuget.org/v3-flatcontainer/pangosharp/3.24.24.34/pangosharp.3.24.24.34.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.timer/4.3.0/runtime.any.system.threading.timer.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.console/4.3.0/runtime.unix.system.console.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.net.primitives/4.3.0/runtime.unix.system.net.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.net.sockets/4.3.0/runtime.unix.system.net.sockets.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/sharpziplib/1.3.3/sharpziplib.1.3.3.nupkg https://api.nuget.org/v3-flatcontainer/streamjsonrpc/2.6.121/streamjsonrpc.2.6.121.nupkg https://api.nuget.org/v3-flatcontainer/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.buffers/4.3.0/system.buffers.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11/system.collections.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.collections/4.3.0/system.collections.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.7.1/system.collections.immutable.1.7.1.nupkg https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.3.0/system.collections.nongeneric.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.collections.specialized/4.3.0/system.collections.specialized.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.commandline/2.0.0-beta4.22272.1/system.commandline.2.0.0-beta4.22272.1.nupkg https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.3.0/system.componentmodel.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/4.7.0/system.componentmodel.annotations.4.7.0.nupkg https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.console/4.3.0/system.console.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/4.3.0/system.diagnostics.tracesource.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.globalization/4.3.0/system.globalization.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io/4.3.0/system.io.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.io.pipelines/4.7.2/system.io.pipelines.4.7.2.nupkg https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.memory/4.5.4/system.memory.4.5.4.nupkg https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.0/system.net.http.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.4/system.net.http.4.3.4.nupkg https://api.nuget.org/v3-flatcontainer/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.net.websockets/4.3.0/system.net.websockets.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0/system.reflection.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection/4.3.0/system.reflection.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.7.0/system.reflection.emit.4.7.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.6.0/system.reflection.emit.lightweight.4.6.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime/4.3.0/system.runtime.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.1/system.runtime.compilerservices.unsafe.4.7.1.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/6.0.0-rc.1.21451.13/system.runtime.compilerservices.unsafe.6.0.0-rc.1.21451.13.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/4.6.0/system.security.accesscontrol.4.6.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.6.0/system.security.principal.windows.4.6.0.nupkg https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.threading/4.3.0/system.threading.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks.dataflow/4.11.1/system.threading.tasks.dataflow.4.11.1.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg https://api.nuget.org/v3-flatcontainer/waylandnet/0.2.0/waylandnet.0.2.0.nupkg https://api.nuget.org/v3-flatcontainer/xunit/2.4.1/xunit.2.4.1.nupkg https://api.nuget.org/v3-flatcontainer/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg https://api.nuget.org/v3-flatcontainer/xunit.analyzers/0.10.0/xunit.analyzers.0.10.0.nupkg https://api.nuget.org/v3-flatcontainer/xunit.assert/2.4.1/xunit.assert.2.4.1.nupkg https://api.nuget.org/v3-flatcontainer/xunit.core/2.4.1/xunit.core.2.4.1.nupkg https://api.nuget.org/v3-flatcontainer/xunit.extensibility.core/2.4.1/xunit.extensibility.core.2.4.1.nupkg https://api.nuget.org/v3-flatcontainer/xunit.extensibility.execution/2.4.1/xunit.extensibility.execution.2.4.1.nupkg https://api.nuget.org/v3-flatcontainer/xunit.runner.visualstudio/2.4.3/xunit.runner.visualstudio.2.4.3.nupkg -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc dotnet-pkg 149be926006315896e1a57f36db1b772 dotnet-pkg-base 6c5f563c6f9f99038ac0ddf7403e3b55 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 nuget a7033f7321d93b6b38dc9aed53c83bb8 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc dotnet-pkg 149be926006315896e1a57f36db1b772 dotnet-pkg-base 6c5f563c6f9f99038ac0ddf7403e3b55 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 nuget a7033f7321d93b6b38dc9aed53c83bb8 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=929b879dd0e86e7d1e8fc3ed1890d699 diff --git a/metadata/md5-cache/x11-drivers/OpenTabletDriver-bin-0.6.3.0 b/metadata/md5-cache/x11-drivers/OpenTabletDriver-bin-0.6.3.0 index 55ede19af2e8..cfa83c3e8993 100644 --- a/metadata/md5-cache/x11-drivers/OpenTabletDriver-bin-0.6.3.0 +++ b/metadata/md5-cache/x11-drivers/OpenTabletDriver-bin-0.6.3.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RESTRICT=strip SLOT=0 SRC_URI=https://github.com/OpenTabletDriver/OpenTabletDriver/releases/download/v0.6.3.0/opentabletdriver-0.6.3.0-x64.tar.gz -> OpenTabletDriver-v0.6.3.0.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=61a1f3143c60e65df6fb937339c3f736 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-535.309.01 b/metadata/md5-cache/x11-drivers/nvidia-drivers-535.309.01 new file mode 100644 index 000000000000..8327bc8fbc9c --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-535.309.01 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/m4 virtual/pkgconfig modules? ( dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig ) ) virtual/pkgconfig +DEFINED_PHASES=compile install postinst preinst prepare setup unpack +DEPEND=acct-group/video X? ( x11-libs/libpciaccess ) persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( >=app-accessibility/at-spi2-core-2.46:2 dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) static-libs? ( x11-base/xorg-proto x11-libs/libX11 x11-libs/libXext ) tools? ( media-libs/libglvnd sys-apps/dbus x11-base/xorg-proto x11-libs/libXrandr x11-libs/libXv x11-libs/libvdpau ) modules? ( virtual/linux-sources ) +DESCRIPTION=NVIDIA Accelerated Graphics Driver +EAPI=8 +HOMEPAGE=https://www.nvidia.com/ +IDEPEND=modules? ( sys-apps/kmod[tools] ) +INHERIT=desktop eapi9-pipestatus flag-o-matic linux-mod-r1 multilib readme.gentoo-r1 systemd toolchain-funcs unpacker user-info +IUSE=+X abi_x86_32 abi_x86_64 kernel-open libressl persistenced powerd +static-libs +tools wayland dist-kernel modules-compress modules-sign +strip +modules +KEYWORDS=-* ~amd64 ~arm64 +LICENSE=NVIDIA-r2 Apache-2.0 BSD BSD-2 GPL-2 MIT ZLIB curl openssl +RDEPEND=acct-group/video X? ( x11-libs/libpciaccess ) persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( >=app-accessibility/at-spi2-core-2.46:2 dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) !libressl? ( dev-libs/openssl:0/3 ) libressl? ( dev-libs/libressl ) sys-libs/glibc X? ( media-libs/libglvnd[X,abi_x86_32(-)?] x11-libs/libX11[abi_x86_32(-)?] x11-libs/libXext[abi_x86_32(-)?] ) powerd? ( sys-apps/dbus[abi_x86_32(-)?] ) wayland? ( gui-libs/egl-gbm >=gui-libs/egl-wayland-1.1.10 media-libs/libglvnd ) modules? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) +REQUIRED_USE=kernel-open? ( modules ) +SLOT=0/535 +SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/535.309.01/NVIDIA-Linux-x86_64-535.309.01.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/535.309.01/NVIDIA-Linux-aarch64-535.309.01.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-535.309.01.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-535.309.01.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-535.309.01.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-535.309.01.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-535.309.01.tar.bz2 https://download.nvidia.com/XFree86/NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-535.309.01.tar.xz +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 user-info d7c261c6f7c2392145e8789913f1bf7e +_md5_=8b320fd09f46a374e1a10bc8dcf2b79e diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-580.159.03 b/metadata/md5-cache/x11-drivers/nvidia-drivers-580.159.03 new file mode 100644 index 000000000000..fd082f0428a6 --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-580.159.03 @@ -0,0 +1,16 @@ +BDEPEND=app-alternatives/awk sys-devel/m4 virtual/pkgconfig modules? ( dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig ) ) virtual/pkgconfig +DEFINED_PHASES=compile install postinst preinst prepare setup unpack +DEPEND=acct-group/video X? ( x11-libs/libpciaccess ) persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( >=app-accessibility/at-spi2-core-2.46:2 dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) static-libs? ( x11-base/xorg-proto x11-libs/libX11 x11-libs/libXext ) tools? ( dev-util/vulkan-headers media-libs/libglvnd sys-apps/dbus x11-base/xorg-proto x11-libs/libXrandr x11-libs/libXv x11-libs/libvdpau ) modules? ( virtual/linux-sources ) +DESCRIPTION=NVIDIA Accelerated Graphics Driver +EAPI=8 +HOMEPAGE=https://www.nvidia.com/ +IDEPEND=modules? ( sys-apps/kmod[tools] ) +INHERIT=desktop eapi9-pipestatus eapi9-ver flag-o-matic linux-mod-r1 readme.gentoo-r1 systemd toolchain-funcs unpacker user-info +IUSE=+X abi_x86_32 abi_x86_64 kernel-open libressl persistenced powerd +static-libs +tools wayland dist-kernel modules-compress modules-sign +strip +modules +LICENSE=NVIDIA-r2 Apache-2.0 Boost-1.0 BSD BSD-2 GPL-2 MIT ZLIB curl openssl public-domain +RDEPEND=acct-group/video X? ( x11-libs/libpciaccess ) persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( >=app-accessibility/at-spi2-core-2.46:2 dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) !libressl? ( dev-libs/openssl:0/3 ) libressl? ( dev-libs/libressl ) sys-libs/glibc X? ( media-libs/libglvnd[X,abi_x86_32(-)?] x11-libs/libX11[abi_x86_32(-)?] x11-libs/libXext[abi_x86_32(-)?] ) powerd? ( sys-apps/dbus[abi_x86_32(-)?] ) wayland? ( >=gui-libs/egl-gbm-1.1.1-r2[abi_x86_32(-)?] >=gui-libs/egl-wayland-1.1.13.1[abi_x86_32(-)?] X? ( gui-libs/egl-x11[abi_x86_32(-)?] ) ) modules? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) +REQUIRED_USE=kernel-open? ( modules ) +SLOT=0/580 +SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/580.159.03/NVIDIA-Linux-x86_64-580.159.03.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/580.159.03/NVIDIA-Linux-aarch64-580.159.03.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-580.159.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-580.159.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-580.159.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-580.159.03.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-580.159.03.tar.bz2 https://download.nvidia.com/XFree86/NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-580.159.03.tar.xz +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 user-info d7c261c6f7c2392145e8789913f1bf7e +_md5_=7f2e05baeeff4921b7e6f4c2f1874e4e diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-595.45.04 b/metadata/md5-cache/x11-drivers/nvidia-drivers-595.71.05 index 21a246f926ce..2d7dbe3aec91 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-595.45.04 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-595.71.05 @@ -11,6 +11,6 @@ LICENSE=NVIDIA-r2 Apache-2.0 Boost-1.0 BSD BSD-2 GPL-2 MIT ZLIB curl openssl pub RDEPEND=acct-group/video X? ( x11-libs/libpciaccess ) persistenced? ( acct-user/nvpd net-libs/libtirpc:= ) tools? ( >=app-accessibility/at-spi2-core-2.46:2 dev-libs/glib:2 dev-libs/jansson:= media-libs/harfbuzz:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) !libressl? ( dev-libs/openssl:0/3 ) libressl? ( dev-libs/libressl ) sys-libs/glibc X? ( media-libs/libglvnd[X,abi_x86_32(-)?] x11-libs/libX11[abi_x86_32(-)?] x11-libs/libXext[abi_x86_32(-)?] ) powerd? ( sys-apps/dbus[abi_x86_32(-)?] ) wayland? ( >=gui-libs/egl-gbm-1.1.1-r2[abi_x86_32(-)?] >=gui-libs/egl-wayland-1.1.13.1[abi_x86_32(-)?] X? ( gui-libs/egl-x11[abi_x86_32(-)?] ) ) modules? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) REQUIRED_USE=kernel-open? ( modules ) SLOT=0/595 -SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/595.45.04/NVIDIA-Linux-x86_64-595.45.04.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/595.45.04/NVIDIA-Linux-aarch64-595.45.04.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-595.45.04.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-595.45.04.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-595.45.04.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-595.45.04.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-595.45.04.tar.bz2 https://download.nvidia.com/XFree86/NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-595.45.04.tar.xz +SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/595.71.05/NVIDIA-Linux-x86_64-595.71.05.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/595.71.05/NVIDIA-Linux-aarch64-595.71.05.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-595.71.05.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-595.71.05.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-595.71.05.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-595.71.05.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-595.71.05.tar.bz2 https://download.nvidia.com/XFree86/NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-595.71.05.tar.xz _eclasses_=desktop 26d57169ca094c04be416993844ec8bc dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 c07d9d48506ae94ea189c64f2f78a94a mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2 user-info d7c261c6f7c2392145e8789913f1bf7e -_md5_=a3005d0767e4643638fa1bffa96baa79 +_md5_=34c7880ba45bfce2210d22b1d3f7aaab diff --git a/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-13.2.0 b/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-13.2.0 index 0cb6fe2cae79..3593cb7d3199 100644 --- a/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-13.2.0 +++ b/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-13.2.0 @@ -10,5 +10,5 @@ LICENSE=MIT RDEPEND=x11-base/xorg-server:= >=x11-base/xorg-server-1.20[xorg] SLOT=0 SRC_URI=https://www.x.org/releases/individual/driver/xf86-input-vmmouse-13.2.0.tar.xz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 _md5_=571bc973d7b2a66b7db737c0668fdd6f diff --git a/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-9999 b/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-9999 index ec171b36fb7a..036f604cbadf 100644 --- a/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-9999 +++ b/metadata/md5-cache/x11-drivers/xf86-input-vmmouse-9999 @@ -9,5 +9,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=x11-base/xorg-server:= >=x11-base/xorg-server-1.20[xorg] SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 _md5_=ac0131bafcaf616086df174e1f4375c7 diff --git a/metadata/md5-cache/x11-drivers/xf86-input-wacom-1.2.4 b/metadata/md5-cache/x11-drivers/xf86-input-wacom-1.2.4 index 83b38b63fbea..d8573fb753d4 100644 --- a/metadata/md5-cache/x11-drivers/xf86-input-wacom-1.2.4 +++ b/metadata/md5-cache/x11-drivers/xf86-input-wacom-1.2.4 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrandr x11-l RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/linuxwacom/xf86-input-wacom/releases/download/xf86-input-wacom-1.2.4/xf86-input-wacom-1.2.4.tar.bz2 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 linux-info efd923656513c879204fec6638eadee5 meson 12065b402c6d78a2aec926ed8dfd964f multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xorg-3 94f60a83e0ddddb4b1d3a3882fae4ec3 _md5_=18b714202460dfb4c0b8df779829c7a1 diff --git a/metadata/md5-cache/x11-drivers/xf86-input-xppen-3.4.9-r2 b/metadata/md5-cache/x11-drivers/xf86-input-xppen-3.4.9-r2 index 69b8c49f5418..1918dc66300f 100644 --- a/metadata/md5-cache/x11-drivers/xf86-input-xppen-3.4.9-r2 +++ b/metadata/md5-cache/x11-drivers/xf86-input-xppen-3.4.9-r2 @@ -11,5 +11,5 @@ LICENSE=HANVON-UGEE-EULA RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[X] dev-qt/qtnetwork:5 dev-qt/qtwidgets:5[X] dev-qt/qtx11extras:5 dev-qt/qtxml:5 dev-libs/icu dev-libs/libusb media-libs/libglvnd[X] x11-libs/libxcb virtual/libudev:= SLOT=0 SRC_URI=https://download01.xp-pen.com/file/2024/07/XPPenLinux3.4.9-240607.tar.gz -> XPPenLinux3.4.9-240607.tar.gz -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f65abb8b9731c73db650cd1bac6f67d3 diff --git a/metadata/md5-cache/x11-libs/neXtaw-0.15.1-r5 b/metadata/md5-cache/x11-libs/neXtaw-0.15.1-r5 index 3988660c249b..1a98f3794f9d 100644 --- a/metadata/md5-cache/x11-libs/neXtaw-0.15.1-r5 +++ b/metadata/md5-cache/x11-libs/neXtaw-0.15.1-r5 @@ -5,10 +5,10 @@ DESCRIPTION=Athena Widgets with N*XTSTEP appearance EAPI=8 HOMEPAGE=https://siag.nu/neXtaw/ INHERIT=autotools flag-o-matic -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD RDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXpm x11-libs/libXt x11-libs/libxkbfile SLOT=0 SRC_URI=https://siag.nu/pub/neXtaw/neXtaw-0.15.1.tar.gz _eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 flag-o-matic fd3558f73f6503093adee69adf41020d gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=7db07edf1eb549a1532e1797a8078777 +_md5_=6a0186e11fd691f8810d3e736269f039 diff --git a/metadata/md5-cache/x11-misc/arandr-0.1.11 b/metadata/md5-cache/x11-misc/arandr-0.1.11 index e89ca98cda8a..77c113c13144 100644 --- a/metadata/md5-cache/x11-misc/arandr-0.1.11 +++ b/metadata/md5-cache/x11-misc/arandr-0.1.11 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar SLOT=0 SRC_URI=https://christian.amsuess.com/tools/arandr/files/arandr-0.1.11.tar.gz _eclasses_=distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 -_md5_=cab5a9962a3505d0fb847a3f862ef5ce +_md5_=e0c0bedcf465b51ae01245192b4e8dfd diff --git a/metadata/md5-cache/x11-misc/autorandr-1.15-r1 b/metadata/md5-cache/x11-misc/autorandr-1.15-r1 index 66fdcaa990ff..d246d47e18a7 100644 --- a/metadata/md5-cache/x11-misc/autorandr-1.15-r1 +++ b/metadata/md5-cache/x11-misc/autorandr-1.15-r1 @@ -12,5 +12,5 @@ RDEPEND=x11-apps/xrandr launcher? ( x11-libs/libxcb ) udev? ( virtual/udev ) pyt 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/phillipberndt/autorandr/archive/1.15.tar.gz -> autorandr-1.15.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=1425db43673bc1029ac1000e044fb774 diff --git a/metadata/md5-cache/x11-misc/autorandr-1.15-r2 b/metadata/md5-cache/x11-misc/autorandr-1.15-r2 index 1e911e9815b6..f06cea2c43df 100644 --- a/metadata/md5-cache/x11-misc/autorandr-1.15-r2 +++ b/metadata/md5-cache/x11-misc/autorandr-1.15-r2 @@ -12,5 +12,5 @@ RDEPEND=x11-apps/xrandr launcher? ( x11-libs/libxcb ) udev? ( virtual/udev ) pyt 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/phillipberndt/autorandr/archive/1.15.tar.gz -> autorandr-1.15.tar.gz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f8493f50444b5b1a0ee87572dbb23a33 diff --git a/metadata/md5-cache/x11-misc/autorandr-9999 b/metadata/md5-cache/x11-misc/autorandr-9999 index 3108f7c5517f..f6d71c79654a 100644 --- a/metadata/md5-cache/x11-misc/autorandr-9999 +++ b/metadata/md5-cache/x11-misc/autorandr-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=x11-apps/xrandr launcher? ( x11-libs/libxcb ) udev? ( virtual/udev ) 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 -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 distutils-r1 62add15ed646bfe511af53e282621b39 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 5fdca77e34fc9af7d6eb47689f33f6bf python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=f8493f50444b5b1a0ee87572dbb23a33 diff --git a/metadata/md5-cache/x11-misc/bumblebee-3.2.1_p20210112-r4 b/metadata/md5-cache/x11-misc/bumblebee-3.2.1_p20210112-r4 index 04b84e543aa6..a53546fe3489 100644 --- a/metadata/md5-cache/x11-misc/bumblebee-3.2.1_p20210112-r4 +++ b/metadata/md5-cache/x11-misc/bumblebee-3.2.1_p20210112-r4 @@ -13,5 +13,5 @@ RDEPEND=dev-libs/glib:2 dev-libs/libbsd sys-apps/kmod x11-libs/libX11 acct-group REQUIRED_USE=|| ( video_cards_nouveau video_cards_nvidia ) SLOT=0 SRC_URI=https://github.com/Bumblebee-Project/Bumblebee/archive/8f3d307b6aabbc2cd8444c6e5a4360f3bf2915ec.tar.gz -> bumblebee-3.2.1_p20210112.tar.gz -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=4a03edeb82ab3193c3102cb5afb9fff4 diff --git a/metadata/md5-cache/x11-misc/bumblebee-9999 b/metadata/md5-cache/x11-misc/bumblebee-9999 index 962e453bf92b..14ed56f9aaca 100644 --- a/metadata/md5-cache/x11-misc/bumblebee-9999 +++ b/metadata/md5-cache/x11-misc/bumblebee-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=dev-libs/glib:2 dev-libs/libbsd sys-apps/kmod x11-libs/libX11 acct-group/bumblebee virtual/opengl x11-base/xorg-drivers[video_cards_nvidia?,video_cards_nouveau?] bbswitch? ( sys-power/bbswitch ) REQUIRED_USE=|| ( video_cards_nouveau video_cards_nvidia ) SLOT=0 -_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=autotools 0698802996fcfe9a604eac3c1f6e7112 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnuconfig b4fa4889c6f586d6b069215a86dd9e53 libtool 6a96cd90e5da8c7c615015479f46f1a4 multilib fc812e8eb2170022c28272d80a1f9e77 readme.gentoo-r1 9ca94b2d607e7454ca6cfb44ab8ce327 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=68f4a40c36fa4406be6ad59b0de3fb00 diff --git a/metadata/md5-cache/x11-misc/colord-1.4.8-r1 b/metadata/md5-cache/x11-misc/colord-1.4.8-r1 index 649f609b4c9e..f45cd829b6b3 100644 --- a/metadata/md5-cache/x11-misc/colord-1.4.8-r1 +++ b/metadata/md5-cache/x11-misc/colord-1.4.8-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=vala? ( introspection ) RESTRICT=!test? ( test ) test SLOT=0/2 SRC_URI=https://www.freedesktop.org/software/colord/releases/colord-1.4.8.tar.xz -_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 vala b2f2aa400d77b841d952dda847e24d53 +_eclasses_=bash-completion-r1 9e91505e030725688d1e953321a47501 flag-o-matic fd3558f73f6503093adee69adf41020d meson 12065b402c6d78a2aec926ed8dfd964f meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 tmpfiles e0b49bcd7a0daea941c0fbe4cb35ff4e toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 vala b2f2aa400d77b841d952dda847e24d53 _md5_=a76de735d2c5a4ce5ab7605c2bc8415a diff --git a/metadata/md5-cache/x11-misc/dotool-1.5 b/metadata/md5-cache/x11-misc/dotool-1.5 index 65f34895b49a..78b8cc06a0e4 100644 --- a/metadata/md5-cache/x11-misc/dotool-1.5 +++ b/metadata/md5-cache/x11-misc/dotool-1.5 @@ -11,5 +11,5 @@ LICENSE=AGPL-3 RDEPEND=dev-libs/libinput x11-libs/libxkbcommon SLOT=0 SRC_URI=https://git.sr.ht/~geb/dotool/archive/945a7daedeef076db91261266b802498096f6f91.tar.gz -> dotool-1.5.tar.gz https://codeberg.org/fictitiousexistence/gentoo-gofiles/raw/branch/main/dotool/dotool-1.5-deps.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d go-env fca4e820393c2eac25a944be8bdf6a3a go-module 1cbfd286f3aaa35f18f9dec1d3dbedf1 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 _md5_=403c0670509acd63b3acac1d911087b6 diff --git a/metadata/md5-cache/x11-wm/mutter-48.5 b/metadata/md5-cache/x11-wm/mutter-48.5 index a6e14b62a423..7d673e2be68f 100644 --- a/metadata/md5-cache/x11-wm/mutter-48.5 +++ b/metadata/md5-cache/x11-wm/mutter-48.5 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( X wayland ) gtk-doc? ( introspection ) wayland? ( ^^ ( elogind RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=mirror://gnome/sources/mutter/48/mutter-48.5.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=faed2a18444164400db36f16c9a75cce diff --git a/metadata/md5-cache/x11-wm/mutter-48.6-r1 b/metadata/md5-cache/x11-wm/mutter-48.6-r1 index d613561c14ce..406e732c3c6f 100644 --- a/metadata/md5-cache/x11-wm/mutter-48.6-r1 +++ b/metadata/md5-cache/x11-wm/mutter-48.6-r1 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( X wayland ) gtk-doc? ( introspection ) wayland? ( ^^ ( elogind RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=mirror://gnome/sources/mutter/48/mutter-48.6.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=5c43aa75b0084ef7b862bee6c57fdb51 diff --git a/metadata/md5-cache/x11-wm/mutter-48.7 b/metadata/md5-cache/x11-wm/mutter-48.7 index 1a7a540c6ee6..e4b5d0c311a7 100644 --- a/metadata/md5-cache/x11-wm/mutter-48.7 +++ b/metadata/md5-cache/x11-wm/mutter-48.7 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( X wayland ) gtk-doc? ( introspection ) wayland? ( ^^ ( elogind RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=mirror://gnome/sources/mutter/48/mutter-48.7.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8e7fd2b304b41026e6d7a23a09a9137d diff --git a/metadata/md5-cache/x11-wm/mutter-48.8 b/metadata/md5-cache/x11-wm/mutter-48.8 index 99e530cefa94..9eae74525d4c 100644 --- a/metadata/md5-cache/x11-wm/mutter-48.8 +++ b/metadata/md5-cache/x11-wm/mutter-48.8 @@ -14,5 +14,5 @@ REQUIRED_USE=|| ( X wayland ) gtk-doc? ( introspection ) wayland? ( ^^ ( elogind RESTRICT=!test? ( test ) SLOT=0/16 SRC_URI=mirror://gnome/sources/mutter/48/mutter-48.8.tar.xz -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=5f7eb12f8f22ead029a1c2652ca65384 diff --git a/metadata/md5-cache/x11-wm/mutter-9999 b/metadata/md5-cache/x11-wm/mutter-9999 index 6e8c913b2be0..9c04c3d0be83 100644 --- a/metadata/md5-cache/x11-wm/mutter-9999 +++ b/metadata/md5-cache/x11-wm/mutter-9999 @@ -13,5 +13,5 @@ RDEPEND=>=media-libs/graphene-1.10.2[introspection?] x11-libs/gdk-pixbuf:2 >=x11 REQUIRED_USE=|| ( X wayland ) gtk-doc? ( introspection ) wayland? ( ^^ ( elogind systemd ) udev ) test? ( screencast wayland ) RESTRICT=!test? ( test ) SLOT=0/16 -_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 20c370aff0d0c108f3605c84b3f47084 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_eclasses_=flag-o-matic fd3558f73f6503093adee69adf41020d git-r3 7b584b5dc33e3bc66ff5b9271bf41764 gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 12065b402c6d78a2aec926ed8dfd964f multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot 4c36abaf94ebd3ab32f8abea9a444121 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 udev 1a23882bb73bc31c64a6f00a5e515f34 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=26a1235eb0c759675f29502504dfd199 diff --git a/net-dns/unbound/Manifest b/net-dns/unbound/Manifest index 18fbb6c3f629..eeb69741d6a0 100644 --- a/net-dns/unbound/Manifest +++ b/net-dns/unbound/Manifest @@ -1,4 +1,4 @@ -DIST unbound-1.24.1.tar.gz 6902613 BLAKE2B e80c9e80139140a1de50bf4d8c6ee42917ce615e6b9d4297d1f29d940d1701c6da59200163025fa7870e41402021a878459c0a5c0d947f5ce718a16939311daa SHA512 0332053ff6b2a2b6743fe33460950780a26e2cad236d21a9219e7b1a04576a9887342d59bc244c02c405e93812168175bc3dbe5481a201296899e77cbd201ea5 -DIST unbound-1.24.1.tar.gz.asc 862 BLAKE2B 882061a310a0774520ac791e39d6c4b4fb0601b5e5fac9b03452a2cf8a7f11dac9b36f56f56530fca69eb2301e35b04513f4939936e0470306b049523d683dd3 SHA512 64f7baa0af069093f2d2a52d00fa41c26dd3a4a8eb39fbf90ae7355725121583f7dcd79257c064fa13d05f7bb0c602fe30104859a41164a81664cd4c1e275f30 DIST unbound-1.24.2.tar.gz 6905018 BLAKE2B 05a772193a023d6387067b0d6d67a43d1bbfba2ef805a9602a5d3a9bc93d0564d750a7741e9a60d3a7391822131f382c37a9819f51c141fe876a68fce6f8a1c6 SHA512 655d63ec5305323e84d82691425d74d98c332d0028517bd729d191e5f968ce9481b49ec7447d4c4906dce7997a998a115db36e911a59d2d877da5840c2080261 DIST unbound-1.24.2.tar.gz.asc 862 BLAKE2B cd44fd7cc1c90d5e67ce8c6cbc0ad1ec575580052f6c590e9544190969eef905c4dd40367d3419acd2a482b547e3f6d35b0c5d9d4247acd6e34eb5daf63a8be1 SHA512 66a3e569a606cc3ed7dac9b411fba347da150728427619bdbf12ac57a5d7db1fc17963b1ba052a95d6c6fed67a6f0c1b5920318f6cd34e5091750626dd63fb21 +DIST unbound-1.25.0.tar.gz 6818581 BLAKE2B 4c22e198c2257c251505f6845c42e67481edce2c5e8dc0c475584ef6b8e85907c322f32bd7ecfcb06243ba36fb3d91c63d8c1edd67dca66d374c6a242206e548 SHA512 5b11cb06d768461dc390da989d412e8724403a9cce36e95f7b401d0b512bc81ee5a68d4cd6504c89de9a11cce69b90f09e01ae72e2ddd05130b7c459691d4f85 +DIST unbound-1.25.0.tar.gz.asc 659 BLAKE2B e1bc87ba89383da4b0e9ea084e4ea974040488a827f3407501df11cd6245c74cbff19f81c9ad6475b3db73b8f34f1a69a6c23e9c17c807bf18eaa23621915905 SHA512 2f56b626d21a69e2d55c122f49c9e329a6a97652b7e59604dd516288a558f24b9edf86762bba98181fb4a09c43820254e3c416e499e7c2cadad00c39c43ff0a8 diff --git a/net-dns/unbound/unbound-1.24.1.ebuild b/net-dns/unbound/unbound-1.25.0.ebuild index fce9d47bffa1..7c6730ff6abf 100644 --- a/net-dns/unbound/unbound-1.24.1.ebuild +++ b/net-dns/unbound/unbound-1.25.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2025 Liguros Authors +# Copyright 2021-2026 Liguros Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..14} ) diff --git a/net-ftp/proftpd/Manifest b/net-ftp/proftpd/Manifest index 4dcd43e9a182..f295dc0e8e04 100644 --- a/net-ftp/proftpd/Manifest +++ b/net-ftp/proftpd/Manifest @@ -4,10 +4,9 @@ DIST mod_gss-1.3.9.tar.gz 117158 BLAKE2B f957fa465f9a9b06ceb9c190ab60c7f67fdeeef DIST mod_msg-0.5.1.tar.gz 9689 BLAKE2B fc0cbcfa341c6339be4b064db9ea8860da91c22eeee91c77fd03581e49ebbce3fcd3a27a17da85d782286c6d329e12e7237ee7cbfb70ecc1d4d32bb21f0f74e2 SHA512 729261b151a98bc971c825e88131026725aa4f4fc161adc162af8c4c3c8a457bd981308aea20fe6a1b8711b26c63a17b8d40434ef00bc45504a7c9c2a9cbe4bf DIST mod_vroot-0.9.12.tar.gz 112717 BLAKE2B 60a59539ff9db190432a807f88236e37ab42aea0510903586ff19a00ba9d2e118b58460bdef271f6de8f2b022411484d5fe6610d66552948a9ff459ddda45343 SHA512 a84c14b9d05c4890abe50c86f832c91fa4d0971bc2b1866a3a34d73ff85acd1e902fc0cae739e22ea46e530c73230fb005ea9edeb68fd6cfb963e0c5ca9655ec DIST mod_vroot-0.9.4.tar.gz 29461 BLAKE2B eb4d3f6425ab0a1a61ca607e4655b5f8ff6ea342ca49d49598e7a4c5596382aa2c1d4e8228a1cdcfff324feb92dac80fcc58e35bbb77155069749afdd7cc41fb SHA512 f5de392c9fe39f0a03b0783a7092bbfe17ea6db991f4b4e4a2d8f092f073d27ef2c64dd6484d5665b5abc808c0caba016d4fc3fab3da3810f5ebe5249bb4cbce -DIST proftpd-1.3.7f.tar.gz 20433355 BLAKE2B e8f36cd3396c9f02c1b3532007e894d9206f0e530e1032d635f3be73f7b3054f2db3046147b609d3f11a3e14ad291f2b13695fc6f690ee0a582191f6910f3184 SHA512 73e7744b1551085b04ea5b62fa5ccd0bd77949db1c1414669d105d5f61412d2bf1e91118dcd3e9ad62fa52731204866fad2e8eb4342087bc3801b30cd946a67e -DIST proftpd-1.3.8b.tar.gz 19752808 BLAKE2B 3e8fdf5e0a27dd2284514a446496715e90c15d7be17824cceb4159e930d64705680320b33769f68ab6f3ce152322363aca6301190eea234de0bf4bb0cc6557e1 SHA512 291a91f220d711fefdbff18ef4e056080ad99c94dc4c71d0651f725932e1f2d9438fb75fbc2017e0f30a9a18a354b2d515788fbd538a80414f8c2d4eaaace396 DIST proftpd-1.3.8c.tar.gz 19751847 BLAKE2B 6a39eb50c921a68cdf73fae444e7d7850a22a76ce771702b617810e7ff6ae451f52521f5ff01fb9c2d91304e34c0e6dbb07fda6a07f0af477fe2ca0babb8bee7 SHA512 fccf8577afc748e8416feb3879616f0f829ef777b7a8effabc18a6810213241d370a0e64dfbc754728c21ddd07c072f7f3a05dcebc517a4ba6790638091007fb DIST proftpd-1.3.9.tar.gz 19837398 BLAKE2B 30ad60148de79cd4198791ce89dc6c2204c75cb0966f7f17a0fefe25bf4678dd8ea7d373469fbf02f670ae0ca6879f4371ef97a65f4875ad131930d49d800b6f SHA512 5cc53d7909f8b45718509b547aeffaf027cec66b1c34ed9f3a7de1ba561f9ca3d51bb991edb24c8f833bb47e0131619850a4bfd4fec509505769d123e78dc8b3 +DIST proftpd-1.3.9a.tar.gz 19850748 BLAKE2B f024e1f112f326ebe11d1d478af258e43e4d506a01a025b6f6fa4096a19ac44f1913154489c9cd203e906ac9091806e2f2b3869c0db6b094fb960b6e6d3b4092 SHA512 217780522a9366dd16c678ab4ca3de8a6079482a0d68d2f0ab7869d0f8aba4982d0cb0105821f52c8d2fca6f76b3156da70bdbb7d01ac96ad5c16f99f33fdd76 DIST proftpd-mod-case-0.7.tar.gz 13184 BLAKE2B bf2118d9b8ed97a5b192b92b515d17ac7a0d75e154288e5afb3a1c3d686e635093df9501cc1c9b077f87c14326e31e8b9f751803dfca1eae9643f12333eb633f SHA512 c08d13ef82fec36ae75aa3213dd02e0ce4045904849f422e152f039a9da66a45e4423751074b8bcf8ce347a40ce0e7bde798a85cbadc962fd872aeaa898261fc DIST proftpd-mod-diskuse-0.9.tar.gz 18596 BLAKE2B 38c704c8607f0f93b080e77fe793cfe0125c88acc6f818ecb059c6c21a983e040ff5f2c1b91e34ef4ba2666a808d896018c364d1f12ea38f0c477e79bdaa2120 SHA512 d41976bf2810e4b783e775e8c767ca2030c3b5df116219fd31cbbac7feaf9922c315bf4ea092881b0d6cf43f2f4c5dbcae61be3c3a833058d12f962a3024b975 DIST proftpd-mod-msg-0.4.1.tar.gz 8082 BLAKE2B 970b46b19d25bac22ecb01495270a523997a0b7d5b53b9470b4744b919adcf03d5bcee2df85ba88c4a4c20a9fc30dc01459ffb58c5dae8e78a52a7379bf36f11 SHA512 38ea63b1d355e1e10a6a4477596bf3fa28529a871c9fb8dbf093b5317f0743ef9cb59b986d0b8c1c7ed932dad5d5d571883d596fad2d3b793431824db4487012 diff --git a/net-ftp/proftpd/proftpd-1.3.7f.ebuild b/net-ftp/proftpd/proftpd-1.3.7f.ebuild deleted file mode 100644 index 42ffd240a384..000000000000 --- a/net-ftp/proftpd/proftpd-1.3.7f.ebuild +++ /dev/null @@ -1,277 +0,0 @@ -# Copyright 2021-2022 Liguros Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=7 -inherit multilib systemd tmpfiles toolchain-funcs - -MOD_CASE="0.7" -MOD_CLAMAV="0.14rc2" -MOD_DISKUSE="0.9" -MOD_GSS="1.3.9" -MOD_MSG="0.4.1" -MOD_VROOT="0.9.4" - -DESCRIPTION="An advanced and very configurable FTP server" -HOMEPAGE="http://www.proftpd.org/ - http://www.castaglia.org/proftpd/ - https://github.com/jbenden/mod_clamav - http://gssmod.sourceforge.net/" -SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz - case? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-case-${MOD_CASE}.tar.gz ) - clamav? ( https://github.com/jbenden/mod_clamav/archive/v${MOD_CLAMAV}.tar.gz -> ${PN}-mod_clamav-${MOD_CLAMAV}.tar.gz ) - diskuse? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-diskuse-${MOD_DISKUSE}.tar.gz ) - kerberos? ( mirror://sourceforge/gssmod/mod_gss-${MOD_GSS}.tar.gz ) - msg? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-msg-${MOD_MSG}.tar.gz ) - vroot? ( https://github.com/Castaglia/${PN}-mod_vroot/archive/v${MOD_VROOT}.tar.gz -> mod_vroot-${MOD_VROOT}.tar.gz )" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 - kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius - ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot" -# TODO: geoip -REQUIRED_USE="ban? ( ctrls ) - msg? ( ctrls ) - sftp? ( ssl ) - shaper? ( ctrls ) - - mysql? ( ssl ) - postgres? ( ssl ) - sqlite? ( ssl ) -" - -CDEPEND="acl? ( virtual/acl ) - caps? ( sys-libs/libcap ) - clamav? ( app-antivirus/clamav ) - kerberos? ( virtual/krb5 ) - ldap? ( net-nds/openldap ) - memcache? ( >=dev-libs/libmemcached-0.41 ) - mysql? ( dev-db/mysql-connector-c:0= ) - nls? ( virtual/libiconv ) - ncurses? ( sys-libs/ncurses:0= ) - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( <dev-libs/libressl-3.6.0:= ) - ) - pam? ( sys-libs/pam ) - pcre? ( dev-libs/libpcre ) - postgres? ( dev-db/postgresql:= ) - sodium? ( dev-libs/libsodium:0= ) - sqlite? ( dev-db/sqlite:3 ) -" -DEPEND="${CDEPEND} - test? ( dev-libs/check ) - virtual/libcrypt -" -RDEPEND="${CDEPEND} - net-ftp/ftpbase - selinux? ( sec-policy/selinux-ftp )" - -S="${WORKDIR}/${P/_/}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.3.6-use-trace.patch - "${FILESDIR}"/mod_tls.patch -) - -RESTRICT=test # Some tests are ran in chroot. Confuse sandbox. - -in_dir() { - pushd "${WORKDIR}/${1}" || die - shift - "$@" - popd -} - -src_prepare() { - # Skip 'install-conf' / Support LINGUAS - sed -i -e "/install-all/s/ install-conf//" Makefile.in || die - sed -i -e "s/^LANGS=.*$/LANGS=${LINGUAS}/" locale/Makefile.in || die - - # Prepare external modules - if use case; then - cp -v "${WORKDIR}"/mod_case/mod_case.c contrib || die - cp -v "${WORKDIR}"/mod_case/mod_case.html doc/contrib || die - fi - - if use clamav ; then - cp -v "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/mod_clamav.{c,h} contrib || die - eapply -p0 "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/001-add-mod_clamav-to-tests.patch - fi - - if use diskuse; then - in_dir mod_diskuse eapply "${FILESDIR}"/${PN}-1.3.6_rc4-diskuse-refresh-api.patch - - # ./configure will modify files. Symlink them instead of copying - ln -sv "${WORKDIR}"/mod_diskuse/mod_diskuse.h "${S}"/contrib || die - - cp -v "${WORKDIR}"/mod_diskuse/mod_diskuse.c "${S}"/contrib || die - cp -v "${WORKDIR}"/mod_diskuse/mod_diskuse.html "${S}"/doc/contrib || die - fi - - if use msg; then - in_dir mod_msg eapply "${FILESDIR}"/${PN}-1.3.6_rc4-msg-refresh-api.patch - - cp -v "${WORKDIR}"/mod_msg/mod_msg.c contrib || die - cp -v "${WORKDIR}"/mod_msg/mod_msg.html doc/contrib || die - fi - - if use vroot; then - in_dir ${PN}-mod_vroot-${MOD_VROOT} eapply "${FILESDIR}"/${PN}-1.3.6_rc4-vroot-refresh-api.patch - - cp -v "${WORKDIR}"/${PN}-mod_vroot-${MOD_VROOT}/mod_vroot.c contrib || die - cp -v "${WORKDIR}"/${PN}-mod_vroot-${MOD_VROOT}/mod_vroot.html doc/contrib || die - fi - - if use kerberos ; then - # in_dir mod_gss-${MOD_GSS} eapply "${FILESDIR}"/${PN}-1.3.6_rc4-gss-refresh-api.patch - - # Support app-crypt/heimdal / Gentoo Bug #284853 - sed -i -e "s/krb5_principal2principalname/_\0/" "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_auth_gss.c.in || die - - # Remove obsolete DES / Gentoo Bug #324903 - # Replace 'rpm' lookups / Gentoo Bug #391021 - sed -i -e "/ac_gss_libs/s/ -ldes425//" \ - -e "s/ac_libdir=\`rpm -q -l.*$/ac_libdir=\/usr\/$(get_libdir)\//" \ - -e "s/ac_includedir=\`rpm -q -l.*$/ac_includedir=\/usr\/include\//" "${WORKDIR}"/mod_gss-${MOD_GSS}/configure{,.ac} || die - - # ./configure will modify files. Symlink them instead of copying - ln -sv "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_auth_gss.c "${S}"/contrib || die - ln -sv "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_gss.c "${S}"/contrib || die - ln -sv "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_gss.h "${S}"/include || die - - cp -v "${WORKDIR}"/mod_gss-${MOD_GSS}/README.mod_{auth_gss,gss} "${S}" || die - cp -v "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_gss.html "${S}"/doc/contrib || die - cp -v "${WORKDIR}"/mod_gss-${MOD_GSS}/rfc{1509,2228}.txt "${S}"/doc/rfc || die - fi - - default - - tc-export CC -} - -src_configure() { - local c m - - use acl && m="${m}:mod_facl" - use ban && m="${m}:mod_ban" - use case && m="${m}:mod_case" - use clamav && m="${m}:mod_clamav" - use copy && m="${m}:mod_copy" - use ctrls && m="${m}:mod_ctrls_admin" - use deflate && m="${m}:mod_deflate" - if use diskuse ; then - in_dir mod_diskuse econf - m="${m}:mod_diskuse" - fi - use dynmasq && m="${m}:mod_dynmasq" - use exec && m="${m}:mod_exec" - use ifsession && m="${m}:mod_ifsession" - use ifversion && m="${m}:mod_ifversion" - if use kerberos ; then - in_dir mod_gss-${MOD_GSS} econf - m="${m}:mod_gss:mod_auth_gss" - fi - use ldap && m="${m}:mod_ldap" - use log-forensic && m="${m}:mod_log_forensic" - use msg && m="${m}:mod_msg" - if use mysql || use postgres || use sqlite ; then - m="${m}:mod_sql:mod_sql_passwd" - use mysql && m="${m}:mod_sql_mysql" - use postgres && m="${m}:mod_sql_postgres" - use sqlite && m="${m}:mod_sql_sqlite" - fi - use qos && m="${m}:mod_qos" - use radius && m="${m}:mod_radius" - use ratio && m="${m}:mod_ratio" - use readme && m="${m}:mod_readme" - use rewrite && m="${m}:mod_rewrite" - if use sftp ; then - m="${m}:mod_sftp" - use pam && m="${m}:mod_sftp_pam" - use mysql || use postgres || use sqlite && m="${m}:mod_sftp_sql" - fi - use shaper && m="${m}:mod_shaper" - use sitemisc && m="${m}:mod_site_misc" - use snmp && m="${m}:mod_snmp" - if use softquota ; then - m="${m}:mod_quotatab:mod_quotatab_file" - use ldap && m="${m}:mod_quotatab_ldap" - use radius && m="${m}:mod_quotatab_radius" - use mysql || use postgres || use sqlite && m="${m}:mod_quotatab_sql" - fi - if use ssl ; then - m="${m}:mod_tls:mod_tls_shmcache" - use memcache && m="${m}:mod_tls_memcache" - fi - if use tcpd ; then - m="${m}:mod_wrap2:mod_wrap2_file" - use mysql || use postgres || use sqlite && m="${m}:mod_wrap2_sql" - fi - use unique-id && m="${m}:mod_unique_id" - use vroot && m="${m}:mod_vroot" - - if [[ -n ${PROFTP_CUSTOM_MODULES} ]]; then - einfo "Adding user-specified extra modules: '${PROFTP_CUSTOM_MODULES}'" - m="${m}:${PROFTP_CUSTOM_MODULES}" - fi - - [[ -z ${m} ]] || c="${c} --with-modules=${m:1}" - - econf --localstatedir=/run/proftpd --sysconfdir=/etc/proftpd --disable-strip \ - $(use_enable acl facl) \ - $(use_enable authfile auth-file) \ - $(use_enable caps cap) \ - $(use_enable ctrls) \ - $(use_enable dso) \ - $(use_enable ident) \ - $(use_enable ipv6) \ - $(use_enable memcache) \ - $(use_enable ncurses) \ - $(use_enable nls) \ - $(use_enable ssl openssl) \ - $(use_enable pam auth-pam) \ - $(use_enable pcre) \ - $(use_enable sodium) \ - $(use_enable test tests) \ - --enable-trace \ - $(use_enable userland_GNU shadow) \ - $(use_enable userland_GNU autoshadow) \ - ${c:1} -} - -src_test() { - emake api-tests -C tests -} - -src_install() { - default - [[ -z ${LINGUAS-set} ]] && rm -r "${ED}"/usr/share/locale - rm -rf "${ED}"/run "${ED}"/var/run - - newinitd "${FILESDIR}"/proftpd.initd-r1 proftpd - insinto /etc/proftpd - doins "${FILESDIR}"/proftpd.conf.sample - - insinto /etc/xinetd.d - newins "${FILESDIR}"/proftpd.xinetd proftpd - - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotate ${PN} - - dodoc ChangeLog CREDITS INSTALL NEWS README* RELEASE_NOTES - - docinto html - dodoc doc/*.html doc/contrib/*.html doc/howto/*.html doc/modules/*.html - - docinto rfc - dodoc doc/rfc/*.txt - - systemd_dounit "${FILESDIR}"/${PN}.service - newtmpfiles "${FILESDIR}"/${PN}-tmpfiles.d.conf-r1 ${PN}.conf -} - -pkg_postinst() { - # Create /var/run files at package merge time: bug #650000 - tmpfiles_process ${PN}.conf -} diff --git a/net-ftp/proftpd/proftpd-1.3.8b-r1.ebuild b/net-ftp/proftpd/proftpd-1.3.9a.ebuild index 7f49c61fdcb5..8e1913004f86 100644 --- a/net-ftp/proftpd/proftpd-1.3.8b-r1.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.9a.ebuild @@ -1,37 +1,43 @@ -# Copyright 2021-2023 Liguros Authors +# Copyright 2021-2025 Liguros Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit multilib systemd tmpfiles toolchain-funcs -MOD_CASE="0.7" +inherit systemd tmpfiles toolchain-funcs + +MOD_CASE="0.9.1" MOD_CLAMAV="0.14rc2" -MOD_DISKUSE="0.9" +MOD_DISKUSE="0.9.1" MOD_GSS="1.3.9" -MOD_MSG="0.4.1" -MOD_VROOT="0.9.4" +MOD_MSG="0.5.1" +MOD_VROOT="0.9.12" DESCRIPTION="An advanced and very configurable FTP server" HOMEPAGE=" http://www.proftpd.org/ http://www.castaglia.org/proftpd/ https://github.com/jbenden/mod_clamav - http://gssmod.sourceforge.net/ + https://gssmod.sourceforge.net/ " SRC_URI=" ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz - case? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-case-${MOD_CASE}.tar.gz ) - clamav? ( https://github.com/jbenden/mod_clamav/archive/v${MOD_CLAMAV}.tar.gz -> ${PN}-mod_clamav-${MOD_CLAMAV}.tar.gz ) - diskuse? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-diskuse-${MOD_DISKUSE}.tar.gz ) - kerberos? ( mirror://sourceforge/gssmod/mod_gss-${MOD_GSS}.tar.gz ) - msg? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-msg-${MOD_MSG}.tar.gz ) - vroot? ( https://github.com/Castaglia/${PN}-mod_vroot/archive/v${MOD_VROOT}.tar.gz -> mod_vroot-${MOD_VROOT}.tar.gz ) + case? ( https://github.com/Castaglia/${PN}-mod_case/archive/v${MOD_CASE}.tar.gz + -> mod_case-${MOD_CASE}.tar.gz ) + clamav? ( https://github.com/jbenden/mod_clamav/archive/v${MOD_CLAMAV}.tar.gz + -> ${PN}-mod_clamav-${MOD_CLAMAV}.tar.gz ) + diskuse? ( https://github.com/Castaglia/${PN}-mod_diskuse/archive/v${MOD_DISKUSE}.tar.gz + -> mod_diskuse-${MOD_DISKUSE}.tar.gz ) + kerberos? ( https://downloads.sourceforge.net/gssmod/mod_gss-${MOD_GSS}.tar.gz ) + msg? ( https://github.com/Castaglia/${PN}-mod_msg/archive/v${MOD_MSG}.tar.gz + -> mod_msg-${MOD_MSG}.tar.gz ) + vroot? ( https://github.com/Castaglia/${PN}-mod_vroot/archive/v${MOD_VROOT}.tar.gz + -> mod_vroot-${MOD_VROOT}.tar.gz ) " S="${WORKDIR}/${P/_/}" -LICENSE="GPL-2" +LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86" +IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot" # Some tests are ran in chroot. Confuses sandbox. @@ -40,11 +46,12 @@ RESTRICT="test" REQUIRED_USE=" ban? ( ctrls ) msg? ( ctrls ) - sftp? ( ssl ) shaper? ( ctrls ) mysql? ( ssl ) postgres? ( ssl ) + radius? ( ssl ) + sftp? ( ssl ) sqlite? ( ssl ) " @@ -52,22 +59,45 @@ COMMON_DEPEND=" virtual/libcrypt:= acl? ( virtual/acl ) caps? ( sys-libs/libcap ) - clamav? ( app-antivirus/clamav ) - kerberos? ( virtual/krb5 ) + deflate? ( virtual/zlib:= ) + kerberos? ( + sys-fs/e2fsprogs + virtual/krb5 + ) ldap? ( net-nds/openldap:= ) - memcache? ( >=dev-libs/libmemcached-0.41 ) - mysql? ( dev-db/mysql-connector-c:0= ) + memcache? ( + || ( + dev-libs/libmemcached-awesome + >=dev-libs/libmemcached-0.41 + ) + ) + mysql? ( + dev-db/mysql-connector-c:0= + sodium? ( dev-libs/libsodium:0= ) + ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) - libressl? ( >=dev-libs/libressl-4.0.0:= ) + libressl? ( <dev-libs/libressl-4.1.0:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) - postgres? ( dev-db/postgresql:= ) - sodium? ( dev-libs/libsodium:0= ) - sqlite? ( dev-db/sqlite:3 ) + postgres? ( + dev-db/postgresql:= + sodium? ( dev-libs/libsodium:0= ) + ) + rewrite? ( + || ( + net-dns/libidn2 + net-dns/libidn + ) + ) + sftp? ( virtual/zlib:= ) + sqlite? ( + dev-db/sqlite:3 + sodium? ( dev-libs/libsodium:0= ) + ) " DEPEND=" ${COMMON_DEPEND} @@ -76,12 +106,17 @@ DEPEND=" RDEPEND=" ${COMMON_DEPEND} net-ftp/ftpbase + clamav? ( app-antivirus/clamav ) selinux? ( sec-policy/selinux-ftp ) " PATCHES=( "${FILESDIR}"/${PN}-1.3.6-use-trace.patch - "${FILESDIR}"/${PN}-1.3.8-configure-clang16.patch + # https://bugs.gentoo.org/953968 + "${FILESDIR}"/${PN}-1.3.9-slibtool.patch + "${FILESDIR}"/${PN}-1.3.9-sftp_ssl-3.0.patch + # PR 1979 merged + "${FILESDIR}"/${PN}-1.3.9-fix_c23.patch ) QA_CONFIG_IMPL_DECL_SKIP=( @@ -110,8 +145,8 @@ src_prepare() { # Prepare external modules if use case; then - cp -v "${WORKDIR}"/mod_case/mod_case.c contrib || die - cp -v "${WORKDIR}"/mod_case/mod_case.html doc/contrib || die + cp -v "${WORKDIR}"/${PN}-mod_case-${MOD_CASE}/mod_case.c contrib || die + cp -v "${WORKDIR}"/${PN}-mod_case-${MOD_CASE}/mod_case.html doc/contrib || die fi if use libressl ; then @@ -119,45 +154,34 @@ src_prepare() { fi if use clamav ; then + in_dir mod_clamav-${MOD_CLAMAV} eapply "${FILESDIR}"/"${PN}"-1.3.9-clamav-refresh-api.patch + in_dir mod_clamav-${MOD_CLAMAV} eapply "${FILESDIR}"/"${PN}"-1.3.9-clamav-debool.patch cp -v "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/mod_clamav.{c,h} contrib || die eapply -p0 "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/001-add-mod_clamav-to-tests.patch fi if use diskuse; then - in_dir mod_diskuse eapply "${FILESDIR}"/${PN}-1.3.6_rc4-diskuse-refresh-api.patch + in_dir ${PN}-mod_diskuse-${MOD_DISKUSE} eapply "${FILESDIR}"/${PN}-1.3.6_rc4-diskuse-refresh-api.patch # ./configure will modify files. Symlink them instead of copying - ln -sv "${WORKDIR}"/mod_diskuse/mod_diskuse.h "${S}"/contrib || die + ln -sv "${WORKDIR}"/${PN}-mod_diskuse-${MOD_DISKUSE}/mod_diskuse.h "${S}"/contrib || die - cp -v "${WORKDIR}"/mod_diskuse/mod_diskuse.c "${S}"/contrib || die - cp -v "${WORKDIR}"/mod_diskuse/mod_diskuse.html "${S}"/doc/contrib || die + cp -v "${WORKDIR}"/${PN}-mod_diskuse-${MOD_DISKUSE}/mod_diskuse.c "${S}"/contrib || die + cp -v "${WORKDIR}"/${PN}-mod_diskuse-${MOD_DISKUSE}/mod_diskuse.html "${S}"/doc/contrib || die fi if use msg; then - in_dir mod_msg eapply "${FILESDIR}"/${PN}-1.3.6_rc4-msg-refresh-api.patch - - cp -v "${WORKDIR}"/mod_msg/mod_msg.c contrib || die - cp -v "${WORKDIR}"/mod_msg/mod_msg.html doc/contrib || die + cp -v "${WORKDIR}"/${PN}-mod_msg-${MOD_MSG}/mod_msg.c contrib || die + cp -v "${WORKDIR}"/${PN}-mod_msg-${MOD_MSG}/mod_msg.html doc/contrib || die fi if use vroot; then - in_dir ${PN}-mod_vroot-${MOD_VROOT} eapply "${FILESDIR}"/${PN}-1.3.6_rc4-vroot-refresh-api.patch - - cp -v "${WORKDIR}"/${PN}-mod_vroot-${MOD_VROOT}/mod_vroot.c contrib || die - cp -v "${WORKDIR}"/${PN}-mod_vroot-${MOD_VROOT}/mod_vroot.html doc/contrib || die + cp -rv "${WORKDIR}"/${PN}-mod_vroot-${MOD_VROOT} contrib/mod_vroot || die fi if use kerberos ; then - # in_dir mod_gss-${MOD_GSS} eapply "${FILESDIR}"/${PN}-1.3.6_rc4-gss-refresh-api.patch - - # Support app-crypt/heimdal / Gentoo Bug #284853 - sed -i -e "s/krb5_principal2principalname/_\0/" "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_auth_gss.c.in || die - - # Remove obsolete DES / Gentoo Bug #324903 - # Replace 'rpm' lookups / Gentoo Bug #391021 - sed -i -e "/ac_gss_libs/s/ -ldes425//" \ - -e "s/ac_libdir=\`rpm -q -l.*$/ac_libdir=\/usr\/$(get_libdir)\//" \ - -e "s/ac_includedir=\`rpm -q -l.*$/ac_includedir=\/usr\/include\//" "${WORKDIR}"/mod_gss-${MOD_GSS}/configure{,.ac} || die + in_dir mod_gss-${MOD_GSS} eapply "${FILESDIR}"/${PN}-1.3.9-gss-refresh-api.patch + in_dir mod_gss-${MOD_GSS} eapply "${FILESDIR}"/${PN}-1.3.9-fix_heimdal.patch # ./configure will modify files. Symlink them instead of copying ln -sv "${WORKDIR}"/mod_gss-${MOD_GSS}/mod_auth_gss.c "${S}"/contrib || die @@ -185,7 +209,7 @@ src_configure() { use ctrls && m="${m}:mod_ctrls_admin" use deflate && m="${m}:mod_deflate" if use diskuse ; then - in_dir mod_diskuse econf + in_dir ${PN}-mod_diskuse-${MOD_DISKUSE} econf m="${m}:mod_diskuse" fi use dynmasq && m="${m}:mod_dynmasq" @@ -193,7 +217,7 @@ src_configure() { use ifsession && m="${m}:mod_ifsession" use ifversion && m="${m}:mod_ifversion" if use kerberos ; then - in_dir mod_gss-${MOD_GSS} econf + in_dir mod_gss-${MOD_GSS} econf --with-krb5-config="${EPREFIX}/usr/bin/krb5-config" m="${m}:mod_gss:mod_auth_gss" fi use ldap && m="${m}:mod_ldap" @@ -242,26 +266,32 @@ src_configure() { [[ -z ${m} ]] || c="${c} --with-modules=${m:1}" - econf --localstatedir=/run/proftpd --sysconfdir=/etc/proftpd --disable-strip \ - $(use_enable acl facl) \ - $(use_enable authfile auth-file) \ - $(use_enable caps cap) \ - $(use_enable ctrls) \ - $(use_enable dso) \ - $(use_enable ident) \ - $(use_enable ipv6) \ - $(use_enable memcache) \ - $(use_enable ncurses) \ - $(use_enable nls) \ - $(use_enable ssl openssl) \ - $(use_enable pam auth-pam) \ - $(use_enable pcre) \ - $(use_enable sodium) \ - $(use_enable test tests) \ - --enable-trace \ - --enable-shadow \ - --enable-autoshadow \ + local myeconfargs=( + --cache-file="${S}"/config.cache + --localstatedir=/run/proftpd + --sysconfdir=/etc/proftpd + --disable-strip + $(use_enable acl facl) + $(use_enable authfile auth-file) + $(use_enable caps cap) + $(use_enable ctrls) + $(use_enable dso) + $(use_enable ident) + $(use_enable memcache) + $(use_enable ncurses) + $(use_enable nls) + $(use_enable ssl openssl) + $(use_enable pam auth-pam) + $(use_enable pcre) + $(use_enable sodium) + $(use_enable test tests) + --enable-trace + --enable-shadow + --enable-autoshadow ${c:1} + ) + + econf "${myeconfargs[@]}" } src_test() { diff --git a/net-ftp/pure-ftpd/Manifest b/net-ftp/pure-ftpd/Manifest index eeaf422b5268..883fa1ce16ba 100644 --- a/net-ftp/pure-ftpd/Manifest +++ b/net-ftp/pure-ftpd/Manifest @@ -1,2 +1,2 @@ -DIST pure-ftpd-1.0.52.tar.bz2 527691 BLAKE2B 58b53717a932084c733fe42313b36f852281deef9131bb277ca7ede3cf563fd0f804ee739d7544138333d852ec8e5eb2fe9ed1f9709418840b355b1271e8aff8 SHA512 c7b6f76c1429d2cbf9d740c3408464564e023716ebf8361231ba5021f81804575049910c9874970c83c98f927cd496899e5c30625e4dee6538497f9179632c23 DIST pure-ftpd-1.0.53.tar.bz2 528994 BLAKE2B d36d644f942275b3e40ab5468149f5329744a8e0a8fe1aaee1b9f1e3076cb7342cd2a5b2230e49c714428464cef564ddaeeac1fc6af8725c6e6b2698ce0dd389 SHA512 ee9b2c73a011bb90a977e84e97c00994f7983c3e205f4e793b436f5ad1e5e0bfae087cda0aafc3ad6b4a73c4007f3977ea233b86ef2d5e39d5a29a23751a87cb +DIST pure-ftpd-1.0.54.tar.bz2 532622 BLAKE2B e4af5dc50e28ae074e648497280341ddcaf5fff60aea053ea94badb577596cea547b51a9d3790c4db22f633d589cf106a1e6688ac4fa61b58df7d49c5c479192 SHA512 0b1d099201a4cae05d40628978d05a377542e999da3366474655d6c422ffbfc526acf7fcb63f40586605600db8ae68284c9e9e81d9db204d7e38b97a5bd23fd0 diff --git a/net-ftp/pure-ftpd/pure-ftpd-1.0.52.ebuild b/net-ftp/pure-ftpd/pure-ftpd-1.0.54.ebuild index f21f7ba60b7b..8df5071fcfda 100644 --- a/net-ftp/pure-ftpd/pure-ftpd-1.0.52.ebuild +++ b/net-ftp/pure-ftpd/pure-ftpd-1.0.54.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2024 Liguros Authors +# Copyright 2021-2026 Liguros Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/net-im/element-desktop/Manifest b/net-im/element-desktop/Manifest index a3e0ba9bf8bf..e71c350f7680 100644 --- a/net-im/element-desktop/Manifest +++ b/net-im/element-desktop/Manifest @@ -1,1114 +1,6 @@ -DIST 7zip-bin-5.2.0.tgz 5625880 BLAKE2B 3732c01a746eaa73f5408e656774af189a13081cc50f288b1b7bf05476dd4b86646ee73d0d99ac686d103e84bf6603f3f477d3ddee15366a14f512f19e836f2a SHA512 ba44cf561a86e2337332ba36a80f4748249254937768deed95bfa17ea602b77111d325aba1e036551dfc30dace1cb43f7158fe0da20c69dd24142b565a8c21fc -DIST @action-validator-cli-0.6.0.tgz 15552 BLAKE2B 28ea1ad08cc5ec6c1de3b4fc434402622ad358ef5b8a37b59a25741350c3dae3cbbbebf1781993a4005746ebf4b1d3544fedbf7aa31978bb5cbe10fbedfeb3f0 SHA512 67c4d838ae06a9422923452eb295093c1e9d86bd27893ba68702398a2655a854579b8bb4e5b65ac2714a96da6fa0551f260f661db6c806595eaac449020979dd -DIST @action-validator-core-0.6.0.tgz 880222 BLAKE2B 53adbed18b0c29da3a316d47affa1c8ffc592dd690d6bce52d6d0974bc440f2f0187930d9fe892e6226519bd2c45e6dd8d0192839e05b32a83d51499319ab062 SHA512 b4f825c02afc326f125b3c2755ec30166a91c7dd45d16bccb0cd01440a87e022da9721a7766e775efa7e51c512cecc29935c248c80d823b47212158c2f23e48a -DIST @apm-js-collab-code-transformer-0.8.2.tgz 1321075 BLAKE2B 4212baead7e6ca7e5386b1612a2f9ee8491173fe60674aa07ebc513f0b71da1c5dee760135859bfdf9c42c9c01baa710683950134f29a032ea69602979560388 SHA512 6118c98cdab92854a30d4a2abb9a45516aebb2f18ec65e9cddbbbeb8c15cf4734da6d676acd53f4c8da72f0e239e140db646bdef611eda6deea9bbc342d3de08 -DIST @apm-js-collab-tracing-hooks-0.3.1.tgz 6945 BLAKE2B 661fd1b3c9bc463d4bcece1464e0c212c93233d55cf1e4662a54e88cfb14598ed2575e8cea0be14fbffc74e182362fd5add876f14ff7ede8d32a137b09c682d4 SHA512 56ed426e63d44653797d36e856e28ca098db3b9a9cabd7c0e585e9b24c777577bfcd306f8ce0c5a1eaf0fbaf6b5419512eb269c0fa920ea12e24310a22b4e577 -DIST @babel-code-frame-7.27.1.tgz 9969 BLAKE2B f27411effcefdb597ce36f0a958217f83cc45fbe229014f92326fa5411e4fcd57546ad2a037e10ff157348ea2046866ffca05a6782dee70cc0453c3591b57994 SHA512 72343b66543432fddbe3b84006e4debf24ee60de22fa5a09286795f5f95c0a020adfb7025d187e2f56ddde20479729deae143b0610a49f604f6d050bfab1aa16 -DIST @babel-code-frame-7.28.6.tgz 10191 BLAKE2B 01cfd05e927e23f3e57249cca7917599e5987f108b65202c4477d241280e89c08ffab24616fe9ad9df1c9fe11bbc6cfedc19e699721897ec5f88c054df5099c7 SHA512 2588229ed70c8d1882bd2f263040b36849fe9b73dfa108b2aae90e30209542da09198270f23ffc2c12448aa9072e47f009cb3be04de96c0505360eddf55349f9 -DIST @babel-compat-data-7.28.5.tgz 6573 BLAKE2B 00dd5c37e46c940a1754ed35ebaf4f3b2eafd9c522cd0fbc6ad732f18e756ea21a8584200166360fc123b96c3c1f15b02df5d4d93ae35438842791e1043d3118 SHA512 eae157c826b2a1c45baa164e07ee9772e65b90c3629b07d51858e2f024d99c2cce1d51af0eacef8adbb5aded805392d13a58b3ede40f841f02a4032f9f1f448c -DIST @babel-compat-data-7.28.6.tgz 6573 BLAKE2B 09433a3617ba26e71edea86ec222970df223e298400f4aba7c4f80190c0ecfdc0c9d621f4cbcbbeadd4733f20f93b1139f933bdc26d411b66bfcd23398b9470a SHA512 da57eee7b26dcdcb5f22b706333f7dda1c8b941caece0224e7cfa18460b18ca677ad623cd8d9d52e35dc693aa423636f95cbceb2465a899e648d400ba372e9c6 -DIST @babel-core-7.28.5.tgz 190126 BLAKE2B 5c6863ac8d7e31b5333475d841a655cadfbc26476ef6d38a6ce5bb85aca2d1e52421e9d26405103c54716fd384ca3f6d5c9eebc6a6bcdc0bf1660e92a0f53267 SHA512 7bb8d3e03c58bc80cb935647994fe6fe6075f6b7b1f6cbf47367ed06d8d206ffa454cffdd367a1d1f20d5330fb5302cb351fa3539f391b1509f3f1017c03397f -DIST @babel-core-7.28.6.tgz 189925 BLAKE2B d68c04da9899bf547444c440743c91d8fe948829437773092b3af22af89163aa4c256c66b834092e24377bb07fb6defada53e39b4b06a37cacb727e5e0def1b3 SHA512 1f799c1ba6432d39587da48d8b488e2a48a0a8c16f9132a51946250fc196ee734e611adebee038ea24f2a4fcaffb4e95ddf126bef6b37e7b64054df82f46b303 -DIST @babel-generator-7.28.5.tgz 118382 BLAKE2B d9ee7d334559a8e8555cb1d54dc60394262169a9815eecfc2d8397a6df0f07f91a997ba4697e09509d981a200bdcfb158ef882a9fbdb6aa461b1b08cbd654671 SHA512 dc4c0b161677f09e15c883fa58db6dda451d5bd76891703d0abe08548147b82a59dc7f3f6053a5e498d91e2b2b9f57c04cf06628aa97cc316f87d7d4c07cfa09 -DIST @babel-generator-7.28.6.tgz 119083 BLAKE2B ec04c47a29b9db29e81663f334bd455bd9c49a83069245ed6e339a41320bb190b89918e058057fc7c49693b88b71d25985078fcd0d57717c9019deb457a0cda8 SHA512 94ea154700038fc8637fb6a5f3db6f4366b595fe7767eeed897320a5924bde66903c3c61d0380b30deb607630a50e15ca287411cb31b0cce9601b2a0372e52bb -DIST @babel-helper-annotate-as-pure-7.27.3.tgz 2133 BLAKE2B 1ac3bd3092bde9aca269644da4a02fa1352b952a8d6c39332896f09846a3c24bbaa1bd4d6bbab6dfc3a47b30c528b0e70822b6e0dbd7d83676ff39e7a833c35b SHA512 7d74b0310aa2b5319e1cb042d3c12ae725f3da6dfb138a495f5a80535fb670d79dcff89fbff6d55dfb7dd157926afe6714eeb511c360c2bd1a2716f23da5813e -DIST @babel-helper-compilation-targets-7.27.2.tgz 14901 BLAKE2B 6919d590d15034bc2023a43512c477ce6b25a2eaf66edde5c60ac22548a95e12107d2301676337535e1d6988d90efe90518b886a318928ed4dd830233c1a51a2 SHA512 dbed6d8465145968cb4d84c76562b59fc6206b48a3073d5702151770acbcd6b77983aca1ee11aa329e39bfb71a7526c41dcf46dce4efe394b29de44dde9b380d -DIST @babel-helper-compilation-targets-7.28.6.tgz 14868 BLAKE2B dee86684ec98226e2dbc7e11e9f974fc9ac5a07659914cd77b285e4be12588651447037f3c6cec5e21806437520c4d88eba6fa3523983176f8c11d6b72b7e585 SHA512 258b65b3786a8b5e5f731e4669234bed209327630d9a3ae41d7838152a4e03f82bc4af0ac326796ee6c7b02abc1570a4b9aeb186e69a062b7eddbefe55945f70 -DIST @babel-helper-create-class-features-plugin-7.28.5.tgz 95326 BLAKE2B 94ed29db47f6ddd85078723ea8bc40f1b7ba457dc3b4f296cfa5bbd2f9cbcb1a065f05bf5c2dcc266f8167c137fd699adbb1da651bf73ae4dd46933e4d7aba0a SHA512 ab7582e097dd383ca9bf102bb0941139fba93c1abdfa53308caabb0b7dc685b15826cb9f0f4c9dff38b00fe849b9c2de5ac9c53d6663b14d83345a813c4ee3c1 -DIST @babel-helper-create-class-features-plugin-7.28.6.tgz 95030 BLAKE2B 6f6c87dc66b19835584e71d430aa4f4bc03a6fa0d514a070be0b418ecf3272784f965de104b390fa3e8921146e8ac35baec891ba9492d97aac39a3cf30784f93 SHA512 75339dbec8e71b7c4d4fd634014835c00977f32fb8465e2c7fd71a49064e5dd36a567f87f876db278232c87688a8d47a496f6826903f46e463b230b0d88748a3 -DIST @babel-helper-create-regexp-features-plugin-7.28.5.tgz 7908 BLAKE2B 474c6c820d710cbc4af269326736d1e87e75cc438da92ef178734debe885d579926c6ec34df6ed1c09b67b1380a44bc983e36d97b1877882f257b519eb6bfbce SHA512 375121bcbb47ccebe3ed040e502092dcdacf24ff1ce56e995c21c39fb6226a5bb2d62bb8af912621891794a36a4fdf428b0f96d260ea5a847a1d63199453f787 -DIST @babel-helper-define-polyfill-provider-0.6.5.tgz 60633 BLAKE2B 78d4164a5e7f9704a156c5cdc72c304d24cb6415d0ef4127cbdfeec489d2c11e014f98cf103d518c95e2950b63d76a4692bddce7b22d8e6c64a84fbdfc20ad9a SHA512 b899c615c3ec5902bc7ef8e018fe4b654659b18188a0f7918d21793c6c2b7a5620abb435e7f16df4d185a75ce0970808bfffd6d2e1b805ebd1b92251cb29593e -DIST @babel-helper-globals-7.28.0.tgz 6838 BLAKE2B 18fe623f3daaa6af5a2138a6d1ed2378759c385d5da8e832fce14e0db1617501b0b49b98bf72657521a9b96a484a5e7339818bb39d3d692d95c97725e4d31250 SHA512 f96e9c21291715ad635ec0c475803c1de7af413fc550b871cd1f7da71a6196d65c55aba0a6ce774c709e89603c4a0bb1c694a9de028f8ae61f496a2990b43887 -DIST @babel-helper-member-expression-to-functions-7.28.5.tgz 13651 BLAKE2B 997ba46bcb4e72dab8e6eee715e81794a69cc74171fec0b0f71d1c53b545c00b294e32a7a525350b3e3f1f200747ad7dde188fc5faefa13243064821f0f9ee86 SHA512 73033b48145970f08b825f1aedc634b284f54a9b52cc094c1f7f6fc22469390909961e77af985d1f02d2099a507552d3dfdb19b7e091a4dc181b8636bfbedab6 -DIST @babel-helper-module-imports-7.27.1.tgz 14067 BLAKE2B 41627c8f9509a2ab9373876e20186bb562b9a4e6caafc4c116c73014ab193382e543e0408fb88b1f44b0d86f992877a511e460021b2464153cc6bf793cc29e76 SHA512 d204855943cd5cda29aad20f42f943e56817608e4663690fd9c0afa13f247338db7dc7ee2258d36dc5abba50f50883c85f682dd708216c3cb4f32135a7efebdf -DIST @babel-helper-module-imports-7.28.6.tgz 14064 BLAKE2B 9605ce752c5f095b2886ebb8c8d89c71865355bc55144c29c25fd0a83bd810d4ed255a3e47f9b714c678ec4ad3e5dae354fbd2d3f76233c49174f200fb8bc6a4 SHA512 9795e464aeebef06bd2ee706c3d2f0672c8252c71be31dfb2564cfcfbb30c0513fd05310006a62594667f2ef43ce448158470adb98e6bee6dfa70d9d9c031d6f -DIST @babel-helper-module-transforms-7.28.3.tgz 37829 BLAKE2B e55b054e06ced3436b995d2702c04b4f72e85feae52d39f2017492d54dd22d3fd4a67bc207f5dfa6e551747164ecc6c3457fa957fd4cd6c096ba9af4bd8e1758 SHA512 832b5751bb3c936b174bd3e7429b73e68d109e92cbe754b001220e458e97681285f3c9ec393d19c3db332ea9521900cfff84e58c1003e72f7ca765357ea91db3 -DIST @babel-helper-module-transforms-7.28.6.tgz 37786 BLAKE2B 5a6443890161dbb45a1aa3ce26684020a3a838e9ab84ae646618cc772b897ca90dcc6f0b9353f688ee15ea40f439ae6ee13e18e145722ade7b009bd80acd2818 SHA512 ebba1714062bd9c0cb0d518b5d3100063741259e9dac4954488ed62a9ef436ba72212b28de9946f52006105eb2ef36e16bfc0ecd40725964c9bc40d534850670 -DIST @babel-helper-optimise-call-expression-7.27.1.tgz 2646 BLAKE2B 5242b9e6788891ca3db73813542398462259f8c786e095b56ac88ed780d1d79c3328273cf2d614b507aab84cfc83b0132c12d7220e24e80c84f32c73f888ee24 SHA512 5113061f4f0dcd8161b9b352189ae9504a6118a430310601c92cdab79700072635fd880846450b9c8cb7b4031eb3394bfeca361db7a29589685264a977b19d57 -DIST @babel-helper-plugin-utils-7.27.1.tgz 4461 BLAKE2B 12a304229340f8cb0d9a769ddb5eefb606f95dd782504f05760848a7297b2270778ab96001a9bffca8ea456826abae521e9621bd2041f63fb9cd72a92bab345d SHA512 d609f5529e585e46b761800718aa5b89d790e588dfd6d0daf6a61c832b33f9c3425ee9322e5e838cf5e10f7551c126fc73427db40e1bdbeac7119b5ce91d2d97 -DIST @babel-helper-plugin-utils-7.28.6.tgz 4424 BLAKE2B 6db87aeecb5af3468f814ab3a2d614c0a49ca5fca1d64763ff17246e05390511d8d0359d5138206cdf81d4831a2cbe0e25b673893325224ba45d54105d782981 SHA512 4bd83367f6f3f37191cac23b8000f8c0f4ff008dee0a763ef719fe331fca3ecd89c07248cf55bc3d9920d9cab2b7744d38133c7a3717855eb2f0e83b972fc3ba -DIST @babel-helper-remap-async-to-generator-7.27.1.tgz 3723 BLAKE2B 3071daf3b68389cf5324326162be04ff620de51a52795a0f7f990b21ec0dbe20666b1c8fef723a390c59406d9acddb8cf11b9b73b136c86e0f005a290bc2b267 SHA512 edf880e76d5a570f2548f788e19383def445928aa425c4becf8845a3cd9b1521ffdad35de9e279a8254c4b93b30e6661fe468741e05a7b2c4aeb096370fb6f78 -DIST @babel-helper-replace-supers-7.27.1.tgz 9164 BLAKE2B 56f0b27f3590c915d7272930ec658c731acf9f20acae99e304a66dc988089365abb4839b8d57854065bac2ac0ac9b2617eb0b42909cda73701c215455aa202af SHA512 ec41f3eaa0d973c4584b91253e84a1321796bc48044689c50acec80289d62cb5135d6e7d0cfd786c266df3dfc62b2ade627f20dd2f379b6d457a51ca6de0c228 -DIST @babel-helper-replace-supers-7.28.6.tgz 9161 BLAKE2B af5e0084e31f4f136de7cc39c3699e7d7b4e8253120153b24dff193317d282f81736ab7fe1ce98163d14025f72845f9892181faff01f6f63e32854b5476e4b4f SHA512 9aaf1efa568893de3fc8579cdc3c528c2443d99d130238556c4258dd442b970568d792e6b7b0b6c0051b2b86e39d3b3800f930b182d36a15d1ada41785bd560a -DIST @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz 2552 BLAKE2B 93aded5d6ff5a59d76a7e0077be2d1a119276a9c5671336fe39ea5b8e81d73a9703a10336d0a9c59fc7e072a2c825fe71e0bf5bc221fe90437f580fa4d773696 SHA512 4ee6f864a117a9b3e35e058b976fb726940060127cfa292943639c8ffabfaf42f013752110d87b11469bc878f3da4084b2b458f377b0d8341d1e5bae883405ce -DIST @babel-helper-string-parser-7.27.1.tgz 8383 BLAKE2B f06b0658a09a5e2bd63f0d95c99331e7e3e2d44de299705b7524758ce3323d2d2c7bb312a96dfff6760e066897e35fa4474f109c11feb5fa3413cfeaa3eddb3e SHA512 a8c952c4a6e946502b89d0c4c64f769d2a1bc837693e28d4ab60d6ea80e752a77488e1b19908f2aa13088a123dfb3bf82cfc997518ded9c6af58f6c26d69b778 -DIST @babel-helper-validator-identifier-7.27.1.tgz 14174 BLAKE2B 1058b1015fe1c71cf4422d5964dd28868cff7186e7acb3d1925fc6a3600ea59e09e251c5e90f96b282c0ffce5c6cf18139f63cdcac148e5ff494c719ff1614bd SHA512 0f684ff5e03e4aac75901660cf1661d32d6dadbb94f89a03922130aa1437ea7a1d62a270c842213d274c35dee53a6ff88a8ef696e4cf587db461d6b4c4eb94a3 -DIST @babel-helper-validator-identifier-7.28.5.tgz 14245 BLAKE2B 0291b6bfdf7a01d365849ea575fb85f49d3d33286f894e2d7c52fa9eb9e7bfdb4e2f5e9c024b034ecb03499ca6e5633b9a2be9f26dcd26be9423bf8265b8ce6e SHA512 a92b3889fc33289495dfdb9c363b2f73a5951ece9bed2d37b0e87639c1c5f541df54fa965802d4b0d515ce1481888b63459a0b1f1ee721aad58ea295bac519d5 -DIST @babel-helper-validator-option-7.27.1.tgz 4383 BLAKE2B 3af63fb729b6c632868e09c6b471d942895a8f48f4a104a0d590c3f1965836b8aa92dc7f1ac009c67aa8fc793360f07eec25c9d1a77a68269739d34fcb652ab6 SHA512 62f8c9a30f45c5b84514a0d2b859d509ed96c57935cd6736d9f15e3d5344696244bbc22b65595d6ba374b87c3366b50cd6297b342f4c969e0c68961b61df494a -DIST @babel-helper-wrap-function-7.28.3.tgz 5983 BLAKE2B c9888a0a5da15985a9d3effe73535984dc40d881682939dd7651fd837a2e00784a03055de9e6c4ef44e3e1c809cca0f593125ff9b3720097be10f297c02e3166 SHA512 cdd7fdf37b4d7cb64595eb5cd1145762b1ebb9c04483de4d2053249fa2bd75b78c627b201da48119c42a76c0924ad1b63d8c11aded1073634d4825db1bec5cea -DIST @babel-helper-wrap-function-7.28.6.tgz 5956 BLAKE2B 477d0fc8201050fffb0e428aaed93899bbc7a0f5f22f951ba088d9904b4b49aa955405f76db473678a51a8ffe07af8a16a456497fa9db352a8220b79240fa428 SHA512 cfe3f02f388c341792409a278b3cf60069e774bb0fd837861c8c43027fb0747386ba8e05a35c751c13cf5de13d4c038f1cd35640a092940d95672632ca26c39d -DIST @babel-helpers-7.28.4.tgz 189216 BLAKE2B 5e12d071f096f47234e363f7fb255cdc507141dfc27f9b4cde8d88c682138ff10c0a11a7f4cd1644b0af5455663797383b604122e23763936ffdbaacd9a14a62 SHA512 1c5379f4c9905c61d5c9869d28b56e998b00f5d045ba7fe5758c62a448f3038d7dea3a4b65df148c41012e46c492f7d8ade0ea2616716005853edadf84da63e3 -DIST @babel-helpers-7.28.6.tgz 188919 BLAKE2B 1bd41cf323dbdca2fad1079c6b530f402720178d8102218f21700430295ab4b011bd1acc7c0480f51c03bc9c575bddf6025835e2622b5c97a16c93f047e5935b SHA512 c4e06fc2af3a1c7741ed65034df29f4ff56ec61ee012543e49fb62d82cbac8858d5b4e4ff2252c94e55c678fec29b13efe341aba4400773fe07f7ef6e2461dab -DIST @babel-parser-7.28.5.tgz 438175 BLAKE2B e2a474a2fbcd3a6955928f0684a4050071b92ca60a6731871055d1ef69ebd7851433cc2748d6828b9c9639eb6a4be7e1a5a13bb8b74e0189f6e1264ea4deb875 SHA512 28a054d5519847b391af702de4702d510f935774b34425e603ff0e7436622c3048671572cd7bb3b4f8df2dddc15753d10101823165921d884bd05f1de6e1c10d -DIST @babel-parser-7.28.6.tgz 437848 BLAKE2B 45f8c7462035fc03884f747ac4748fca6d1868649894f799f456a84b2f61ee50be253b455780b369fe3a00c31fe975fcbed421a197cdc06ed747be93c2a9db87 SHA512 4de47dcd6475f01bdb7cf9866cb6a6a4f316fae5b53599c9951bae1eca3c8bced064dab625117d8ba460c51aad12afb0406b12d7d34d4d6af676e867138f667d -DIST @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz 4319 BLAKE2B b3d2c78e023daf854b3e57bb3287c3bc94ba588d4e77eb9c219f9ff2b6861d17829d649e928b6249d81d063b90069ca6ac3cd6de2d50d79054aed512b6719cbb SHA512 f3b183312dedb263128bfddb58eb5ed546e52fe6144c5315f1264f67679210bd7bb3be02c3f97adeb47a36619528c616d86622f399c4fbf77a1f0e4dd1b124d9 -DIST @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz 3564 BLAKE2B 7c4d694b29cc21d3634fd487e7ab7dc085ab58cd808ff2ad8b768fa773a5e56a56e0a288b0ada238240ba9fc47731f5d92dded6aadca22d379eddf3ea82d4c81 SHA512 a8d7aaddb08a9c680b9045d4b85af2e9d3e519f09d40d65b9fbc9400f0889f00091cc53b4c725fac14a8ce4716ab9b0d33a45c1774bc5f240bd80e7628d47d20 -DIST @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz 3137 BLAKE2B a5e24c25f44b4859d0508ea4849e2440e72fcbe3bfb58268a666b2a10b694bf4ad02de600b0d999136650ad35517d40520b914cbdc816434a4eb56edd494406f SHA512 8382fb398ba7d383755b2a8c36395d17095f3c22d5920079e00fd809720265806cbc9244de40722aff5cf7e47f9c07e621f8e5dab2982cdc8c1dba186d969668 -DIST @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz 3751 BLAKE2B a78bd7ff35066ca2b5f5d2b530f0bb6e80a160d4b69014f68e3311c7a0370c47be75003b79bed91b38bbb4709a4264f4026aa1945a9fef66ad043aa56792f528 SHA512 a0ed3681c38d703e4ed624cb8bfe9facc2412305841dc7961921aaae90a610bf27a20892e89f4f065138f0268adb4fc9c752ee46697d6837ed2e07635d3f3e0b -DIST @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz 7879 BLAKE2B 1e71fde5e28b92295a08a6c554bead40ec06ab7835ee63cc70b5f54432a99ec479e390318732e477e53bd4d2244af363a07a10078801fdcfd76e128e3eb7127c SHA512 6fa6135f5d3c7afb2f1386205b243ddb5640145426dc19fe080dfe65794d5673e1c7e51fb15511a0f8df1803c28c182baa8df4c97fc2da76465fde83c6f47d23 -DIST @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz 7884 BLAKE2B 61aca3c8bcf937a050b3edc1ee67c7ea702f66e225b4762a3d79988388071660f0023a86b24d7f0866ef8204e481584f7ba56fafe3c448ee40fcf3f8d4b13d59 SHA512 6b468149c55394d6a251edf952d7f100dec0fed7a1bef1b8fc1c8eebee3a54f29345295f9c016c80acb415487ea80910ac34e6843913f8804e2a53a8314c50d2 -DIST @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz 5818 BLAKE2B dbf8d83fe34bf1e24e7a5fe69f45db6c2f84f2a13dfbae8fcd5685e98624aebe52f45bc5dbeba5964cee5eaddfe019682059524b89d700110265b3a858e4ad9a SHA512 48e4a47c90dd75a33b99a93a70f129b30c93467b9196d978dbd84cada4048255be3a4a2f9c2cec8accd39acae563ffea2c58c2a500c546f8dd9b6c00e693e6f7 -DIST @babel-plugin-syntax-import-assertions-7.27.1.tgz 2563 BLAKE2B 401b024543dd17d08e75b6a432db3a14ccf9b6b86687ec686e5a32498e2d625705ca3eeb6c56f51858f9476aa7ca534237f6a913829b264e73c07337e9fcd372 SHA512 513fc9ae1c39ef183820b1cb167cc5a4f0e531b71d12271a02d8cf4296e3f706bc4f8af92955828a61dc2ffe3ad20f07b740ccc43ca3b0b8225929158e7c0f16 -DIST @babel-plugin-syntax-import-assertions-7.28.6.tgz 2590 BLAKE2B 2fbe0d5503d6cd5584ad562d29563ccee4e424bb93f3fa908bd0267879a11dc88b4fca07d87d735392fa2b95815fbbbec4350d37193b30b117a9eef52f0ece31 SHA512 a52254a451ddc7dcf99ea4d28ab38232d6153f6c058285a13f4a7783c38d2bfe081e12c805dd01f4d62a02f214021abe3a484ee15335b44342b7472396c35287 -DIST @babel-plugin-syntax-import-attributes-7.27.1.tgz 2730 BLAKE2B ae70e0959aab3a47c1774cf97fba71bdf9a963cf6844c1e278ed4f70e3630eeb677b812f52fbc32ff0a534858b3b28ac6cb05a86d54e7f14d448beba869c1b26 SHA512 a054f416b287805e777f8bceb191a2d87877237e4f7d2995b3820114b163e1d9da7cffa12160cb8375722a65077cba0b1e5cb16380bb0c6b661ee2609fe206c3 -DIST @babel-plugin-syntax-import-attributes-7.28.6.tgz 2725 BLAKE2B ab5d1c91fd32773b8d14bf9c6557b0e6fe037937ef5d233b58e399f802a3755ad76f334c49d19a59851a65f3d14ec3e20c2fa72674c0bf0648286c00145a225b SHA512 8e22c2d266bd5e4413dd3289f6e62f95a926eba3da9b2c28faac0bfa82fc1c93af73a4d67595d57e1a89afc082cdb4865006c33b39461c90b553ebd17cb403bf -DIST @babel-plugin-syntax-jsx-7.27.1.tgz 2207 BLAKE2B 7932a13f0e96b1bd75c3c78298f1a08f87abeba710d4a56b9e598248f741f90b6570d189e3129807f6f22b5449d73a937c7a7baa6a97e6ee698ee1022b348954 SHA512 cbc61334878aa3284677d3b4262cb3cb2aa4f207639ee9864d03eccf4c4e64e43646691525e675be699f22f1442aab9c046e9ac4918164313fee2239b2e508ff -DIST @babel-plugin-syntax-typescript-7.27.1.tgz 3091 BLAKE2B 73aef57a7f6299a4351e3a8ae27c80263bfd75676bf68c5fd20783e5a83e13d3f8ae813fe7f0f9cfd0452e7b414e182ef93eff24130e0d54f173b045e7d045e1 SHA512 c5f60204cc6f787ad13270169756653d73998f390df364c716f2e142115716df356791e737e12d524661bffcdc2a9993ddfce6599074cb0881adb0b7be881bc1 -DIST @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz 1713 BLAKE2B 389c45ad5597001f08610e89d8384e36657bf61edb06bc4b64d5775ba03e4940256d0eeed4ed3f2b661fb67c4379a7d7439c49a9b377912fe33d98d28906331a SHA512 ef6ed890400fc122104efe629bc407cf7ba9aa9f762535a189d202f354ddc78549608b5efd59dd29fd6a2ab7e79e13cb88f8214ad59fbc2fe215a30242eecdaa -DIST @babel-plugin-transform-arrow-functions-7.27.1.tgz 2622 BLAKE2B 927065a646c948b01d5af38c363e33d4154ff2167011fd5a5c2a74801660e4bda146d12fe908348bb059b66c71e7fa8b7919c560290da88da4be158d8734e2d7 SHA512 f19e131a273ac56ef414a4e10391d810a2b206938eb2e713383d438d4ddf6710e0f8adf30497173059edff8c908999dfe7e32238c49743d3da10afc8961d4378 -DIST @babel-plugin-transform-async-generator-functions-7.28.0.tgz 6392 BLAKE2B a61a4eba18fbc687834448ad4e31d06a0d0a291189e4eed88d5872a38bfc0836aa1c4a8ab33fd0aea7aeb7a8da3a4340b22325ea3bf20212326718075e03428a SHA512 04439dbd7e3e33beb989c34f65e89dc800c8bd0d66d609ae9d7b9f5f1bd1112cbf8cd3727e8bc8a94c84ecc5601818d692d0a8265cef140d53a363b8ca620edd -DIST @babel-plugin-transform-async-generator-functions-7.28.6.tgz 6402 BLAKE2B 6d07e79fe0e661985abe3f2b753da2c7626d931e699c9a4edb70b5fa67f7a0b724dfcb03956ba32d7bf828aa1e37fd59356ca20206383a72f7d1cddf46cfff14 SHA512 f649ec0a182c333055e5887792486b64dc47de809801f30190d35a54de1c3f64559453def3061dc307273ac01b91d0e857d52316d3975ab581e7633c5b88cd78 -DIST @babel-plugin-transform-async-to-generator-7.27.1.tgz 3093 BLAKE2B a66384b89a19e4eb8426d2c0325cf132837e526924915ba095a346aaf2a71004588011271baf537f923f015f30266cd90b4e5ffd4eef559dd713e4b1b6cda5ae SHA512 35112466c655252e31993afcab3139cbc01f20faac7507d1b9488b4531336fb4228bc885582c8329a515d9cd2b0ae8789630d9f7c00b1cffcf7ad8815769dd74 -DIST @babel-plugin-transform-async-to-generator-7.28.6.tgz 3105 BLAKE2B 6e8b1144d4b5914890fe0aa69c1b9f6954d4bed68dc29557ec6058255bde6b34570496ad68fcb240288af52f46ab977d41ff8b6db53b93e7026d9a962a0f4269 SHA512 8a54d17266ee5e3b0c99c6771c04937b871a1f94e9a3ddcf913c45f681b6559b125ac6a1c9d99c107862c7d224d76d917139d99d4ccf6e6bb1e30875b307efee -DIST @babel-plugin-transform-block-scoped-functions-7.27.1.tgz 3067 BLAKE2B a3171b0c43fd2ea1b53da9eac52da21c200dad80cd0f09a95336dd3e01ebc87769dd81b455bd36106385886fbdf677286bb18c9dd71a524556a0aa9f93c1e4df SHA512 727aa4b8eb592daa56619518339ad521dbf59d762e155225b59e9927b9c88f9f3942c8ca3397612f616efe52025d9d4ec8800573b432f9bbc302d4d7a86ae586 -DIST @babel-plugin-transform-block-scoping-7.28.5.tgz 21957 BLAKE2B f4000b547ada8f355302962a3043d7b117acbd449fb69ba8e972f6951b45282d2842b9f5f12f5276272c9b1a12b2e8798ddb0099b7ca8d37b0d3ecae0465d9cb SHA512 e390e650ba72495be6abd3e3dd7f41fbad977be0c91a8bf6ed0adabd0254d4b2dc6a947aff5d22fa061502e706189a47069e6663120c2b89c3013fd00cbaf8ee -DIST @babel-plugin-transform-block-scoping-7.28.6.tgz 21987 BLAKE2B 13930dc146f23912047b4c73936d5907fc50b7c583cb757bff958ad17620d5d9175b26bcc8e57ed84daaec10f4225290b2548ad0c4b0842156114694b4429e3c SHA512 b6dffbc0eb419b01cf34c3eeedac78a5d3f3eac86316b9870e086f342f851bd42f8fb0fa989728450205e5dcb89e39b147de3597aae0b6f7d2076cd7dd595423 -DIST @babel-plugin-transform-class-properties-7.27.1.tgz 2411 BLAKE2B 70d5c7c58ae31e70835b9d65dc22aa18c9014c8703c407be76e211dee645e539843f1defdff20f1cfc42e59ad2adb487c38156ff17b60c47bc8ee397145c0f3a SHA512 0f455c6a50a10ccb6e46f248bb753f7f05a37fc64cca4cf9899b20efb36e8fcdb5bc2288df30b244bc117566ecb89fee470661674d3642d0aa224c02fd992f6c -DIST @babel-plugin-transform-class-properties-7.28.6.tgz 2426 BLAKE2B 50d85c0261b29d0c180865f92ae31f94d3ed9e46434b02ac27f8985cbefbf17ae05591c61aa9bf24b284836aa12713672f08cec0befc28872ab948d9fa08416b SHA512 758db04b72361bb0faf7b5479dd37dd5326bf3f0007d740db79ca709323f329c4cb12cc7a7ee76b8d8af613e7008f6b1df085ce3b0d1f016bb726950320db86f -DIST @babel-plugin-transform-class-static-block-7.28.3.tgz 7643 BLAKE2B 67d4ec3267458fc112324d39705b99ccde696e115925f2bf01a8090d94e373fe7da23c513587b81133c452ccc9e9236acdceee22003129e5ec12b21b3652d607 SHA512 2ed3d79416d1a1ce0d8e5fe887509e0ffde30be6adcad6e77ff52a2e8a930dc1181943e3d36dbeaef7e46c3622794ad28f709a578c870c1c8f13e4f61f07ec26 -DIST @babel-plugin-transform-class-static-block-7.28.6.tgz 7637 BLAKE2B 7d1e3cb780912ddaf6d7602ca37b298ac3fb9e1d6a6cfeef36e5fdc2a5e47b6f9e8865ad7ce6b15424563831a13b8364c568671b927287bee2830ed72071d7b2 SHA512 adf43efa0855c13593a90ef0f2ac83c4bd571a286306cb380a64e0191093002f5121b855a72a787ce799b6d6b42db7fe7533485497abeb2721da26c7c2466ab1 -DIST @babel-plugin-transform-classes-7.28.4.tgz 22599 BLAKE2B d30d9aa06f27bbed6e1f1627892bf22e62819dd851585070895ef8784cf2c462055879af8b3cb54fca8cd3e71845449319670724139bc9ea3794e1819649537f SHA512 7053a584860f06ffe206873e292dcce9eb765cfb5b4f61e20917c15d6b5fa5cf4e032a2cb6577121ff5801807aca95110416f1f90bfa9f2acbcc049f25efa104 -DIST @babel-plugin-transform-classes-7.28.6.tgz 22550 BLAKE2B 65fb6f5cdb41c4081bc6d005dd610b81ed83aa292eb0901e720ff5e2c8b2aa5418e2a45087edaec6e13e4506263c4a6e72975460744b27d1b8a2c5375981486d SHA512 105e4a38d02a0b9cc0a93efcde2306b8cd99b66101cbe98930e2a5d810af3d9da556bc2f5e707aa3e3815824be0a87820a9551176b00d9104a531bd3f2d413e5 -DIST @babel-plugin-transform-computed-properties-7.27.1.tgz 6789 BLAKE2B c2e907bd35da409694f965493115a46c3fdbaa7f596cb44eeb2a113610ccb93b88aac7eb8e2a4eb0f4342cf99e4597b5f343aea7e9a6b126e461a25ff59b77b3 SHA512 963f4f196bcc4d592c6d68834f6b56ebccc64bf732a3802467f413a74b104f49a33e8a429ab4a4cf17979339e3a81c730c8e937256613896c199b04b8ee39953 -DIST @babel-plugin-transform-computed-properties-7.28.6.tgz 6747 BLAKE2B 2ead24b5459124b2846d1f8769817425a235a9fb131cddb3aa199eddb88d47172e259674af8ed8fcd98c676452da2872b79c36d84766527f5d996b38800e856d SHA512 6dc7379348a38476dcda511fa451e0c7b798c3d28d5ea39eaca59fcdbc441d418a9d2deccfd0b808d2fd3a214dd76f7b6c335f52248eec368bcdbbc741043505 -DIST @babel-plugin-transform-destructuring-7.28.5.tgz 20102 BLAKE2B 5da460cea8364cc098f23b5973385815300b73dbfbde55926bdda4fd433513b3b2bedd6285e84cbaf4ac46cb245ae98c2af0a4a8b3b8df37fca973bc533bebd6 SHA512 2a5f4173a0f4cd351c154be436e421e1e1973ca28d0ce2505d5cb233864040f32f7a78897718bc5cc2702e8fb14a85b7308abcd5b0f7de57147bd919a65d0c0b -DIST @babel-plugin-transform-dotall-regex-7.27.1.tgz 2086 BLAKE2B e66ebef93b76f987770b1c36369df5beb9a3a39b57ddc4fe474c8b5ea436ba837b7c01820df5f0b418d17169ca8b751f9084f2629bf21316423866ea0e91ceb9 SHA512 8046e40d5191be38fbf93d62bf1adf8328294fb194778be6383b58a5bb348190137645fcfe24a73ad652c62667b209b56234e08c8e952811922497af92b725cf -DIST @babel-plugin-transform-dotall-regex-7.28.6.tgz 2105 BLAKE2B ef8d1d96e34ffc7a29068a6d4079be58d1f883d568aed82cc3ec02e1c17f9c4cfb61e396047c88097315ddd4c73bbe648479fcb954f52c87abf2c723665a1679 SHA512 4a58e3a30b8d281eeae4e6b2bf81683f3781ef88374202edf08549c3d003bd6cb742751bff4d5ac3c238015bfcc189cfbd0cf61830d9fe0dc685c3720c123806 -DIST @babel-plugin-transform-duplicate-keys-7.27.1.tgz 3289 BLAKE2B 20f8158643717031b39e9d379ec9df0fd4819914c954e9d56968bb41e620766c854c27b534e5e217d96d6cf5a34af5cacb8cba9a30d796635684c07a0480b91c SHA512 313c8993df2c1ef4acf9cbd9e2739abb04d31b525ea270e3486bc6194347ade1909ecf8ca6de965ff755cd6047820f9d6198640b85fecd30df91353e572f72ed -DIST @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz 2450 BLAKE2B c5f255320b0843252f24a6e330d83e662b3320ac1c3863aac2277c9603e00f14f214d5e42da3c03eca8041c35251ba6bdd8dc5641addc8abc925a6cb1b482e32 SHA512 86419cb9e4c4cee841df407778909b09878269a1103a6411d0076fce90f82e8374197316cf3192b91af1476c539c2aef35b5702bd37afe343dd8648b7e2656a1 -DIST @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz 2461 BLAKE2B 3905aa728d8cee41a6360240715fc10692e37e8771236dc3a4daf3e9c087ea2b4c3d2d8e8bcc386c281e276bda6fdbfca7ce1605f5e1cbdda6ad5c77666a3a12 SHA512 e6cb95a178c2d7895437a64bf4e2ca20708d5560aba86aa5984a7f8b17578ef827125fe46ae2efbcc3bf5f0f4dc8c73de49a23d4078b54f54cbe26c1812a0594 -DIST @babel-plugin-transform-dynamic-import-7.27.1.tgz 2711 BLAKE2B 7d2f7e45089be057853930a9fe0fda12443ba8c129e417799147857032920647311d5dcc97b7e37f43e7d8853e78ae445e513fc353e76bffd9196b1f90bbb226 SHA512 307ce45907049a3cf3556f63daaf0b1a3c065a91b69a3c1a681d01350c2cb771488eab20f02b7f988665bd23c9bdf8bdcb6002f268bf92dc5b1552fda59d48e0 -DIST @babel-plugin-transform-explicit-resource-management-7.28.0.tgz 7583 BLAKE2B a3a2bfcdaa88e5507742a9b9f1c7a50bc09c6eedcd4563b3d547fb81fa759dba2b205b3465fc3fa45cd2eb0a831dfaedfe4be8577006c3536f57de4d0d514f65 SHA512 2bc9e151c9f77fa881f8fde0c02bff9e8ece77339941c29c856e8ddfcf55e8f0fc35458a647ce774e77db0f0d56cca01b1b9a332a941e0bf5f9be7c414d565c1 -DIST @babel-plugin-transform-explicit-resource-management-7.28.6.tgz 7598 BLAKE2B 2e77b00bdc5b96d5942ee4ce07957d9514d78f07bd9f84d55f06778d2a0bbde5e0d4c8dac33c22f3fafa2a51844b7852dfac36ade61e1063b8fd57e5b4d3e370 SHA512 21aa392a89f3c766fa83b10fa93cb8d1465b71d5c4d76ead4f1545aff9c0223f9622d3718ca4984c4c37442f80dbf65eb66749b20b9e2f52a168c0901e42cf22 -DIST @babel-plugin-transform-exponentiation-operator-7.28.5.tgz 4140 BLAKE2B 082b3c50a148e9888dac5d7dfe49794484b129ba80a654b17174ae8eecfbe090f22f4af4dc330586138125d37e30781bca041097b14fb41cd139da30130759b9 SHA512 0f858831a16dc1ad8d8b33a9f9d9e816345ecff0a52a20b606aa889b029dd57dbc9ea06d644c82609da8cd0aebce5c4016b72b8f1a37f52ea485ef51343946cf -DIST @babel-plugin-transform-exponentiation-operator-7.28.6.tgz 4148 BLAKE2B 23678faac65eadb7b65343a5b9cfa1c9b5957eb61a0b84f22635450fe25ad5a636a7cfd74c41fd82f7efebc1858ea08727d11e7b2b35d2de3eebaedf32e792c5 SHA512 5a2b5a6ea8868d5fef27468f38b4857cd635bbd53747b5b7e81d37af92362a8362c7e6b7b0e849de928507747922df7f5222bbf0d88ed0a13d3f6d5c32194f93 -DIST @babel-plugin-transform-export-namespace-from-7.27.1.tgz 3133 BLAKE2B 95393eecbd1b82f253b002245ae663b0cad883879915ad6b0b5da3f4e509b156941946c22f71fdc329162629b80f08b0950d271fa76c585d89c5a7516a2b7235 SHA512 b50bc7592677fe31f6c6eabfbd90f2d23367f9975725e33c807bd7e259c99ac737fb9d323e559d65721ce5acbeba65fedbfb4922a1ea884a9c26fc65988bd1bd -DIST @babel-plugin-transform-for-of-7.27.1.tgz 11409 BLAKE2B 6fe1217ed1e8a2e2c1df8bc30be48cd4637cd3add20449343cb4487374b146e0f42ac7ffe14d26dbb865ac18ae173f995d2d39934fe074bdc26e290827f43bd3 SHA512 05f6d6145109150ccb090e4df15a1c9c2b40f09d422e43537b632cdb0a1c8fbe5d77a5698aa4b9679aae4d8714a28e18abe0cdd2bb6290e0dc72ebfb454f35b3 -DIST @babel-plugin-transform-function-name-7.27.1.tgz 2872 BLAKE2B 1d3e471b42fc3036322eb59db9675001bdfd241411b43022d429cf23d20abf4bd6e07e65dd6726a6458297ce06038b3faac86333b987b584ee2c5273500d173c SHA512 d5b41ec9d245f4daf578108c31b0be85dc26465b2fe5760e32ed37612585c0db341ec026b52c711757f2b983ea7a6565755c859a5094ef0f14135e0bba951265 -DIST @babel-plugin-transform-json-strings-7.27.1.tgz 2773 BLAKE2B cab55f46b2949cd1a5c4abe5750496d6738b02fcf2c87b4d607cf164ec9b72461c5127067f4fbc64e4063d9a2e6008270ba7a51977fe17f96da7fdac3bb0ff20 SHA512 e9654b5498938ea7106ae0619f52e4202b11d87fb39bad88de1f5f6930cab75a8fe239f6a3bdad4afa8cc2d1852864e9a2371ed2026cfbbe9e676b821d1661d1 -DIST @babel-plugin-transform-json-strings-7.28.6.tgz 2787 BLAKE2B 1e9ad29b25c91d96307815c829cad665f968adc32c201807ed944bedca2c2ce91f9dbb2d65e5c65f06824676d4aed3501c33066e5e38648198a3b7d39e451388 SHA512 36bfa110dfb481e424ce16dd81054fa2aaf8ee565b9bee5f09498eef4ef6db125977432f6f9f7edf740b2261a3e85f8390adf18038b5615cac3fcc210fa15003 -DIST @babel-plugin-transform-literals-7.27.1.tgz 2208 BLAKE2B 8d02358dfab2fef0c329b66ffaa0025b0c0cef8c9e3bd6e77bf35356d7271ed7b9a85ef4b7e3b6b22dfd5c11caecc9f42416a93ac143e33334b0a65c3e528e86 SHA512 d0708549ea48a4b4e42dcb22f3a186de64d4cf15798e999bbfdee14c44d6df2ceb0228fc6aa943dfab680750f475a54524cf0d2ba1af28ed20b255509a6fb364 -DIST @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz 3307 BLAKE2B 52caee2a183b0bd0a287189a21d0775f229fbe6b90b8767e6539ce64e6a7419737b2b40535d0b3ae4c9cef77f6c2aeee92f80663a4fe14d97198eb677fbb16ac SHA512 6b152eaa751306e5f21c6709115561f6939168deb00b96d87c4ec51b33e26966b7b3289bf66ee0fbf213ff856008e7b652979fe373c7cde02f72b55e93a42eb8 -DIST @babel-plugin-transform-logical-assignment-operators-7.28.6.tgz 3319 BLAKE2B 33a6dda946d7f0e647a46a842d1bbb7c90189e0a9754137ecf18e99f733a9b7c5946b3e49022627b72be38c1e27514f8ad1765b4a9b2db8cf85e15fc668e3b23 SHA512 f9a9ca29a8abea0a62f15b0cffde649a898634c0f478bcf5350f3e3dfc39b00c161fd7c66174f9d04e79669574a4750759fe8851358f33e7ffec001f7fec2bf4 -DIST @babel-plugin-transform-member-expression-literals-7.27.1.tgz 2339 BLAKE2B 2ef82419a916d12545e3744fa2cff928011cc88f8af14c5498663df2e32ce77c6f82d55f1385c882eb79726aa408ef6ced244b90156fb56e3d3839dbb1bda6cc SHA512 86aa015f875c675237de309259c5eb3fed4abbb91da977f5a1e6a1ee8a0a38888074a43ebaa7ed80214d392cc0e40312d97207118786160e1c29109da71cd539 -DIST @babel-plugin-transform-modules-amd-7.27.1.tgz 6339 BLAKE2B 1b7fb56f47262d3fc6ed135bbde2478b7e85038ffa6244b90e7c918378137318c489d0a920c453d30911760f4416950089a7fdb08a3e45bea0b4021704748709 SHA512 882b32b4c83f37dfe816aea7fa0153bd460365038c2b990475e6319b1b7dd5f7091b271fc553fd0a7af1a2588cd28ba614445b6b68bc66dc11502321bcfd4b9c -DIST @babel-plugin-transform-modules-commonjs-7.27.1.tgz 11413 BLAKE2B 3ed798048075274e96435ed2e92815d3a7a7114b313b0e8f7996e0dbd8a939d290f4019b2cd7a015fe4e0342611fc0af4a1d437ab68e8de3d5cee566fd7fdf55 SHA512 38982ebb095362537480164544fab0386356b2c6637c851d4bb1cc62d37c7352a6c29c07141c1378566b83d5d96be0c54e2b56396e624c01bbb720943ec082cb -DIST @babel-plugin-transform-modules-commonjs-7.28.6.tgz 11417 BLAKE2B 2df2f76dfc9e2de0d2a82811d883867bc6319007dc0081f1513299cf200f8bac44c494648f86e335be6cefcd6b5cf1864b6426b4513ff947501da7f9b09f68aa SHA512 8e9a556dff0857d8965b0593408c49300242581bae2b1ef5e3be701f0632b6b446436096883bd89400d09e8ded718a52fd3d94516150a779d5b587cafd8050ac -DIST @babel-plugin-transform-modules-systemjs-7.28.5.tgz 14828 BLAKE2B bb5f5cff41f386e60f0c1889127897d36645c44602e9a2a2793d0e88d1068a62b2596dfed144d825c9a42f2e8b55bcda3f966fa27e58b54258c42c60e9b9146a SHA512 be7e4999af7c2c239e072fcaa5e4215dc57659981a454b63c109a3a01b8b3653a6920d1f079a5dbd855e591608ebdc162b02b6703d506cc894427a2e8d6beb7b -DIST @babel-plugin-transform-modules-umd-7.27.1.tgz 7188 BLAKE2B 4be41aa344d0ee6e92c23588dd5955af742a29a3a0de9e8644d4271e74130d42fe70d9153757a9e096bfa0da08e299a4117b90c3f558722f293e42a206613bfb SHA512 890044ff10b9055d4ec496e9e961bb8eaf485a20fec7195984baddc293e44d7df27665ddbe80a9c9f24deda71a20165a3aa4dfafbea9833a8125f94d6de44afb -DIST @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz 2291 BLAKE2B 91e9a4679ace6ebdf43c5a0542e44e1096d5c5267ee8797ac736632cf124a9d2a22a6104b06d5976d536d7dcb26c38153ed4c1c9d4b4a48fb89162f17ff0729e SHA512 4acb51e49632f1d759bc3e8c855d2d33f8f5e9076ce2622925339dd58bbd27da498c7f776f11c4085ee982d736f17be4cd30fa3f1726ff467bdc7be4ee46f736 -DIST @babel-plugin-transform-new-target-7.27.1.tgz 3681 BLAKE2B b09937f796a7b7270252816864400e08bae3c56c5bc8384e282f365bff20559007db4da9a7db5c101494786789e0125f3b7f51f0503932f6a4f3499872b01055 SHA512 7fa3e261ea97434e6562add321f203bbf32d9622946cdc24180a4f52fca8ebeb5ceee691e1c3e33deec314faf5e54cb2720da5654e9bb59e7be42b90a1887b31 -DIST @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz 3890 BLAKE2B ab68c8c0512eda488652b7823cee70a26f664dc600c2228b7323b8c4b57fecd750f9a4883187058f7c1b321d406d3e4ba71cbcd21fd38bfd1861c913f84e86b6 SHA512 686661eb1328eaaf6fab5246730e7c959d59d3e8b4c41db1d1769ab8d2145dde8ed715dcdd1c28584065b1342b638290f497f4b39ae00fa4a23646947497a04c -DIST @babel-plugin-transform-nullish-coalescing-operator-7.28.6.tgz 3910 BLAKE2B edaa9afa7b0d06275d7247db7946133e8828221a648a912d1d6b2a8a47eb6c2e0d60e13ce8fd2c81d0bba384d30bdc388e494b6b196a490a7d71bcbf159e1212 SHA512 df029b4609b361bc36e260c95d3ecdf800d7c3c042fe2994f72a3d73d5fd34a68b1757d6f9ee47d54e508cc5017b8428e0ec7fa3ef88c94925d6c5422e07af2a -DIST @babel-plugin-transform-numeric-separator-7.27.1.tgz 2610 BLAKE2B 5a2cb47d1762d3cc8f979a16cc391595e3431b389fb26f17394b1d14cd5bccb3bf03fe5fef325254a50b88054e9d3c76be22af0537f5e4628584b9470d0abe00 SHA512 7dd3ca01cba3baf1028710c127973ed014da4baadebcb57b0892f4f1ee26ddd7bca897cd22e09cda773b5c960e8c1a133097aa4a6c17274ca9135e110a32f06b -DIST @babel-plugin-transform-numeric-separator-7.28.6.tgz 2619 BLAKE2B 44798508a3d6fb8e829becd0ec6b719e3635c19f2bc2390c4f2ec1e881109f4cae6505016c362635849d9404549a108c30c5173207498e9b6515ad93336e56be SHA512 48947c84fca78fca2eb73f92952b504b0bf388c378f81abdf62b78b4c21fe7f09aabede239cd09b4acac7bca6ebf25e4937785448039203fd77ee9c680ee62eb -DIST @babel-plugin-transform-object-rest-spread-7.28.4.tgz 18518 BLAKE2B e9b995dc80754de9e93d423eaa436322a73d865273ef8ea6abf28d28397296b686bc5407304dcc447c24d6f3ef56a3bd5f205e4cc099906ac84ee00e222334dd SHA512 dfbdca0361d0cca85009889154846bfb7323a4239bab30e5cab33abb8236d35c0bf0ca76c077fbb81f06843c22b34de4dad8bc66beb9672caab35c4ec5417f13 -DIST @babel-plugin-transform-object-rest-spread-7.28.6.tgz 22025 BLAKE2B 970327156a9fef0f0af07ba701e8c71646c30cf085afa9854c12f0cf3af35fb70a7344c73850c1c39f3ebab199fab45a1ed9d92ecaf424a3efd56f569e56c1d3 SHA512 e6b87e251e09042e291a45cb01c61d2c76635ee755c563176c1eaeebe13d9512f94eb1956c7b754e3c466d9f02926630f738e407b8eeb73391380aecaad9dc10 -DIST @babel-plugin-transform-object-super-7.27.1.tgz 3569 BLAKE2B b6c6446dc587924ea13703ecddd55112d06fd27a2f731289af23045681554ddc91e8acf58a9a81c61b8c9df892bc0bb7c1caf2473e00aef10afdfb7e21e1968f SHA512 485cbc4bda6544f6c8731949f00ea64ff0b115d271fdcd3824472dcf88dff1865a552da9c77e23ecd5d1ae51a51e437f336827a4bdfb66919119514b77797c36 -DIST @babel-plugin-transform-optional-catch-binding-7.27.1.tgz 2345 BLAKE2B 6177d057d74b869788449c8bb47519f6b4b7239371e0ef2bb8ea2b3bdf523449bd0b3caba143f1f40e30a116ffc85a79bd3e069a4c51e793dc5e85c50218a79f SHA512 b7110010acd8ac7117e31499378909f8e7ca5c555258a07667133d769704df04fbb26c243665e8e4e451955ccc55d25b0fe43c20b4e0483efde7dba3fb70e6dd -DIST @babel-plugin-transform-optional-catch-binding-7.28.6.tgz 2355 BLAKE2B f7dd5fab01fde94571b76485d561c2c29ec5c5bfaba384c10d3280b1fb7f30c2a0ec54b55e7aef2d78420e385462fb78279a91f10125b42c1c1adfddc56b25c8 SHA512 47c8dafcfcabbf438602f017421493996c8f24f9a5fb44cca9794ee70f80b0c122c1bd9f8375a43afa1bed4c4548bdce22db4548649114a42c3a127f5fa1d075 -DIST @babel-plugin-transform-optional-chaining-7.28.5.tgz 10453 BLAKE2B fd89f5f83413fa24eb2538c12275061bb78fc0916d3591d89cf52c3d6e2cdb22ef16cbadb2843d7ed8cf7acf1e3c39901bdf3b3b5203782a51790d2445cd7638 SHA512 37a7eeb7d21994f9e33f08224245cd85bf9c4fcc1028594936a71991695c4ea91cab1ebf914e329c698b1686b82d58814a2ae7d39600c24fac4016cf7f1b58cd -DIST @babel-plugin-transform-optional-chaining-7.28.6.tgz 10463 BLAKE2B 97bd0d6d8da40c9771af69538e29b99e785400ced23b2229933713929d306c014ea38128d892ad0c8a183d6b0978863904b351357de773b0a3a44f6312d46224 SHA512 038ce86e29111894ec5fdbaa54575a7f31a4a83df4b76e9c9362e63b302e2cbf1bdb1ea4dd322a4624f6c55bc0f5f36615e4d7e3ce15a6c76098a340d1b4b6df -DIST @babel-plugin-transform-parameters-7.27.7.tgz 17366 BLAKE2B 49364dc46773385e03755536b5c6f4c7961406807e065bc38f889b609891a870ed9f4c30ea14dad7d364043cf59f2f0b961460f03d78b4d383272b7293bd3380 SHA512 a819184d809befa451c5433a09c640e4a46ef0ae1233c6a3cd579481574c54ef4d37db88fc669598183f58a2491a7368915f5263c17134e556197ceacd489d06 -DIST @babel-plugin-transform-private-methods-7.27.1.tgz 2380 BLAKE2B 75257089da9b597d1826d37030c7048ddaba58dd91d302df6a445c2263bcccaa482ce99c5476eb19329c2db057c5f3782d00df244584222ac546e0a5b3f0c1c6 SHA512 d74155b7e5f9e408d101823d06b74848df7f010587aa574e7990d4a0bca27f52a7d396b9eb15415dbf19a2e2fca59f637a6f10a5768eb7c4d2ed11d4212f863c -DIST @babel-plugin-transform-private-methods-7.28.6.tgz 2388 BLAKE2B 38588774c821f8142edb10014d385e2434889384d0cfd22e928e2c69fe9fc55b7c8dedf0bd5f904cf54b8f6d9a5a406d6e8e21eb7615c6e8c60b7d1e56876769 SHA512 a628ae6a95fd091bfbfb4b2df259ae525452997ea605c55e350d5be006332717c232e05f074bc15c38864a69b4de9289c35bfa719f0a49e33ea149cceb2004c6 -DIST @babel-plugin-transform-private-property-in-object-7.27.1.tgz 6312 BLAKE2B 6169bd88e77f30c6c14b441c9f9768ed878b88b4771c845d10f2cc3a4c1f96a8d7e1f34ffd3c30da10c7e20a180e929b1c78bdea85e1e7360ffd45b427819445 SHA512 e49f8886a4e2d573dad035c5f378d839a011ad7fb8d6039ec166e43f28cc3510ea80e0aa75f7c687c2f77ff124e6eb5a101644c63480cdcca3995f5248058e6d -DIST @babel-plugin-transform-private-property-in-object-7.28.6.tgz 6325 BLAKE2B 56379cd273d744c2068bd0d2fc57406a0ae25301121dc1cee39b1839df4002b107f0dacafb69ae70dcf6a863221c95cd6cd39413f098f01ad1163f2ec4a035de SHA512 6fdee3bcd48e6f9f9e8724260699a13828940b9a152b83cc9e946f3bbfb2985068a988de0c7214f639eb354bb01ce88bf51a460e8281a525626ab57e054f9e54 -DIST @babel-plugin-transform-property-literals-7.27.1.tgz 2294 BLAKE2B ac38d7b760ac3cc297b67325c27c73271f36ab6672e75a06e14b4f4e8e496c3ded566b3f113fc50d9954099623ec2016b2dbe022408b117222c7a3dc97d90fb3 SHA512 a13872dc10ae0a16bc90367c66480e8367b1bcf614969accba42905c8d6bd69278ecd0afc5f904cbcbcafabfe14fd9c5d006b81f55943d96631d316d02119f99 -DIST @babel-plugin-transform-regenerator-7.28.4.tgz 46129 BLAKE2B b5a90d13fcd3abdbb27ce8df3c31ee01fed849e3092d176a7aa478c5deaa69b1b59648eccfbf73a4497850f0e3a8765aaae8b576ba421712bef4adf43f6750e8 SHA512 f9911d425068460f66d8d9f3bc478b82dbc130ee2d905070e524085202c80a04ebba62e853b96bf8e8218ba926d8f163f9d6d4b76bb5a1bcb6c370433bd6109c -DIST @babel-plugin-transform-regenerator-7.28.6.tgz 46163 BLAKE2B 857bdb5d996bf65621b8bc198c93f39283aa16270688a377a25bcaf82a42759e8cf77e67e8b7878a47c97af4502b7eafab691f665238a2625d0b577803156637 SHA512 7998681191d840b2f9b9cd604b97bdfe84e49d2d2c49202d7794e428c529dc9f92fc26948da81cd243943ec11b0e631ebdad270b75969784b1558ebe381bb17f -DIST @babel-plugin-transform-regexp-modifiers-7.27.1.tgz 2089 BLAKE2B 751afacad8de2c2ff31436fec87c290713b0aad466e484994e5ec36bc1eeabca8a46b93afe1996825a7167973dba8e21ed05f703b52340f4a460f76c4ca84937 SHA512 4ed11c8aba1a88e0ed5ef2d9bf8ae67cc8640aff23c77c202a92faf0fba23e1d8ce1fbf3e6386c03bebdecdd6032f92faff253175dc3ac563211b63d53b7153c -DIST @babel-plugin-transform-regexp-modifiers-7.28.6.tgz 2094 BLAKE2B 7c6df904cbcb5c71eafb6040c6d39d52a407526a92b3a52635f18b96c49eb9a4cc52eebd85cedff886734beb324dd97db1e0f7673effe9ea049d6fadbde4e7d8 SHA512 4065807a99bdab1a5a22ced433d16f5129c21a56fc51ad51872338fef780c4bc2dde031ab7f2d21ab662c72ba3e08ebe2a7f62c2fa82c8f4ed6ddc5a9d8a1662 -DIST @babel-plugin-transform-reserved-words-7.27.1.tgz 2144 BLAKE2B 7f5625ad76ae5d2523cd4670e6c5a6c6ac650a167425294701b3e7792ea0ff56b8378b4c9dd1531940cdf5252ce336cc69b9b326eeca87c76e82c366a160f50b SHA512 5760013c72095f8902ec77a02e46280e97e0f4f566b96cbf8babd43397862b6d9bc78615143dcce45d10427590a03b3a006b1459354ea290623054201da4a457 -DIST @babel-plugin-transform-shorthand-properties-7.27.1.tgz 2738 BLAKE2B 2293d49501d7774db1c6b39742c0bb4f96821909762c4297a10a91e6e56229be8560b8ecf4b9f8c3d1de652e9d2eea7a704a7f8b12d8a98cd9ce9813fead5bab SHA512 37fc07d6f727e2861ac1b275dd8fc5c5c42b5a4eb78e17cd6bb8de7f48a1ecf1d22075f62c1ec6584d6b90face9e46bd9303316fa84c975f69ee589d03e10799 -DIST @babel-plugin-transform-spread-7.27.1.tgz 6877 BLAKE2B b593285e989717b44aa89f2f1cb2d2bd83cceb5c781de63e8c82615864a1c15bd659c6953947dcd9e4073ec772097e1fef19f2bb77c996e79081859eb9986096 SHA512 9296f71d4a9a20b04971115584552ce93add7789a4af37065ecb3eebf9b151ddbbdcf7db5aa4831d1ccc4f6db7e20220d9061f023bd72d2aae3f5c44092834f5 -DIST @babel-plugin-transform-spread-7.28.6.tgz 6853 BLAKE2B c89703af368d2cdff304252bebf4ff9591528f76d363ff08f6ac2ea9be80706688018da2a63cd476fe140e27e0eb6658dfe5622946b0d4a07b3750026fe7c412 SHA512 f54e1039b502d05b49974e40b1472875abbf4560f2b6b53ab8a824c6ed3d98b47d1cb0c0b543283eebac926e61b90b2892d9ac62923e6c69aafa26a90dcae228 -DIST @babel-plugin-transform-sticky-regex-7.27.1.tgz 2298 BLAKE2B 91ba2d4869956b6faecc27eb4ba6077f7391e8f062be3771b0cdcca61ad963249eb5cb744ae5df24e2223b3d1126876e493a56ea040fb6dbcedad674309fdba9 SHA512 96122704ee5b8bf2a8c1edbf68b74101ac228f1faad6943389c4a09e407a7543dcd7e442f109891ca7f63a3bd4f8d6568ad82e24711a1266d5e95584a2e4f9f2 -DIST @babel-plugin-transform-template-literals-7.27.1.tgz 5420 BLAKE2B 4586819fdef87f87a64f67674edc5220827e79555d4f2bcd5ef02aa10fb4a3adc325321af5ece3242a4e5f2153ca94f02a4b9851d499d81cb22389d0ce3e9d13 SHA512 7c124a895ec5d83c5952483912d1ca5d075bb1b5115b70d9290516a610ee9b4b913fa7871866bf1def667349b2a4bebcd296fe7bf94322d851a2196ff0d08792 -DIST @babel-plugin-transform-typeof-symbol-7.27.1.tgz 3906 BLAKE2B 1ff05462bee78a5cb25b45b02c9ef30c264731980839a8521c0168006698b574f9ac6d7dc85c0c4e2b4576037333e126e5e7f02399883903503fe18d2e406123 SHA512 4624882c2fa744933b158e6cac8c9ce3f7c6230521c83bae0527569f8cbac93ea09bae760e9087663222a609fa07b310d484ce52700a5a2c4452341120121c2f -DIST @babel-plugin-transform-typescript-7.28.5.tgz 34202 BLAKE2B 73834ca224bdd8f0105ddec017e675207f424698454dee8691a24cf1aa8d507ca1e4a27436b36011593efe661aadf4a032aadb953f090df657482e7f6685bf8d SHA512 c7641afaffc2b84a17ec3af7d6201faf4221227ad5396654ff6bc9309d3414e47fda733405c044725a5a7fdb1608373ebf97bd74cae1487f3f6adabf917efe6c -DIST @babel-plugin-transform-unicode-escapes-7.27.1.tgz 4731 BLAKE2B cdf31b58057f5a5eae0567441ef2598ffe087a61457ff5c4f95773732f4ae045914bb5be96134599346c16c74359a21e738f5cad34d54cd38c3c7ec373ae03c8 SHA512 62c838bfa026176ea4f6fa5f16e4d983c1d17d55b3b21d6455fa30036df2f63fc6bba74eb9a85d5158642eaa4e6e9dc922fdbb30b4a28ba9e8467b8a37c1f432 -DIST @babel-plugin-transform-unicode-property-regex-7.27.1.tgz 2367 BLAKE2B 91bc3317f1a9391264b8a7f57fa56d34cc2ffe1c960ec415e69d06d3b6a96d44638b111059a115838ae851d94db1adfbf068fe36c7c77bb4d79af62d7e50060e SHA512 b96db44b7f4f9da4c89b1a77f4ee6a1651cb4bd2c912600d8cc1bb4b12216a9f2b087aaed0893eb4b10f5f90ca9879fa0ac590ee3de58b1dad14e6b962d2f5d9 -DIST @babel-plugin-transform-unicode-property-regex-7.28.6.tgz 2385 BLAKE2B 01a59b481279ba2aab6cfe3728d6e70b7123b81abc9b49451fba25502c40d38fb612a3b8a2f034998cb0ee574d06dd6dfdd50fdc6f6422b21f3f4cd9e4bcc0f8 SHA512 e1695b765fec2198f38bff12b747af17480466b80eb3054ee9a3b3ab187590364e97d5a62eb1ead87b468673896661d960a3fc599d4c0cb0ade43016c11a39ec -DIST @babel-plugin-transform-unicode-regex-7.27.1.tgz 2012 BLAKE2B b1e81f9bc1b565a648c02d81850c52a73797c7fd090427eb58a1862f918169a1923cb9a03b818c02386cadb69c11b8fed4acee4ba9d532c206b63fcaac2719c9 SHA512 c6f20dab6e134688c3bb2b7a246b479a4564adf555dc53d3d7abb2b712262de059a96dff1f9db237e90cd4c1aec8f908431af32b03c7b3953f30fdea2b2ce41b -DIST @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz 2357 BLAKE2B cedf03cf0e02502fa31e28da09c29e9ee88832517fad1ff1541af9da1fb447064674dbe7a9a3ce78f5fe458d8450186c9d2378cc627828f943920e9a3eb2eb2e SHA512 12d90eba36dce1c82f6f49a5a5079f8b83533c1ce14887af6e515ebc008d2d4b299ab00b82610174bfd77e7cb22137ddf1f28166b672b3ddb339672293b8fd4f -DIST @babel-plugin-transform-unicode-sets-regex-7.28.6.tgz 2363 BLAKE2B 28dcc316e371bd5d3f73c00b3851e085fa093c7034c6d86b0601043b3a3e6348d87aa5fbb4cc1e14a0786b355df5809616064f98a857ddfe3896af294573fca6 SHA512 ff01dcfe9693526b0360ded2664a56c68813381367971ee705061fcba2499424fb1b7995865b64ddefbe37bcd5d177e01acaea071778ac942df47d7a236d58d5 -DIST @babel-preset-env-7.28.5.tgz 35586 BLAKE2B b9a6f5395e2ff6e652df682840b4d5b8dbbfb150e315360e57247714c4f9e70ed50de61c933d499290c9e54265ae7d8241022fdbc0f61c719668551fcac644d5 SHA512 4b7ea63a88b549be85cfdf1f05f13e5194a9630e66266d0d507b482ab3ae35ca9e15abb2d49e9d22f5e6d8a4552a86ce49a1aae2dfe105774de07194df02fd5a -DIST @babel-preset-env-7.28.6.tgz 35400 BLAKE2B 6a5143749c970f3ceb1038016a1fb7127c03f220e09d9812c38bd9aef79c4608f6bfa6131e94b104d1245eaae54a37f4301094e4bc7a5e3dae383a03af388415 SHA512 19a4c8e275c3aecee5d2a689e91834e9db4e5d30421ba4cc0c1e38cdbaa87c2202e0fa82ed212f98516da71cc20f0f56e5a27b44a56c8605d32ef2dd04557fab -DIST @babel-preset-modules-0.1.6-no-external-plugins.tgz 10008 BLAKE2B bca3eceb93de242a50657d33ed71ff2e6c96a7ea8f11d986bd2e66cfc57651715f7e09a83f36e1340bdf1afc0385f78bec8259c3d1075d08ddff8d94a42dfaac SHA512 1eb7207081122e6f5a211f38db2849e5159a9ff81e6d0509e84fc4e7eadfd32f68ea88fbc3406bfac5ae2fa90443fa3f01d7ef47525ef631b5f3f827a708c4c8 -DIST @babel-preset-typescript-7.28.5.tgz 7283 BLAKE2B 77ea07beddae505f2a8fee3a1ffa7181217e07e2590710b837c0ccb9c207149ddac6ef716d5a032e5599f29163d0318edce860047ea990d9a2313afa5e704583 SHA512 f9b432e56388d95e8b259a4f57163eca9eba5dd676ca27eed0c73568fe4240a8239f840ce483768b97c0678c4aa29e3ba6bf2ba5586201ebbe9c341ad760bcfa -DIST @babel-template-7.27.2.tgz 18162 BLAKE2B 913e68e54e14eed191dcc49da3a2dcb84e496d1cd5bd86bad6642395998bb2937a386dd4e4a7da44b96ffbaaa1cc8257b553bf406f474e4568252012fde641e1 SHA512 2cf0d9f39684272612775f3f0e48cd878ff2d67b641392b05075938aa811c6bbae64bd85d72b879628151cbbdc1d8daf3075edb4a169267e8bc1f23b730ece0f -DIST @babel-template-7.28.6.tgz 18158 BLAKE2B 1d93ac8433a53bb2a444691b881f95255ae4c38cf80bf54e0b1e0e05645d76afcb2f70df20fab283dff9e159625b3eee22070ffe15087dd6aff512b9fc184f51 SHA512 600e8c6b62ac09d19bf960ba5290551491972f9f0c0c0ea8c8e35b8f217ffb9b0183163f7709212e881b313d865d7c94f38fc8851c3fd83d4eb3507f822cfe05 -DIST @babel-traverse-7.28.5.tgz 168141 BLAKE2B 07852ae8378354ecd23c747dedcadfa7018db91fc5d5f5ea84383e23d0cc8f92ab0a39c456c59b8c2c278490c8ace13a3c7c11451383e0193ea26969117dc24e SHA512 4c20a3e2de7953dd24865624555ff44df9099009148378d9140dcd79beee9d94fc08fa24ee28917da5f417e5a7a96aadecec613a7d2e04a5c2c3895b2fc5b469 -DIST @babel-traverse-7.28.6.tgz 168187 BLAKE2B 00a14b06258eed05e7b1099326db8e8a05eb442077cfaadb627be0ede2587d9e07f95999a6a9c75dfce27bede5d3aa92dae2a2f8a726067e0d38b14308392468 SHA512 7e0597eb6934daab63a9d48d4c01b198a618ffb1522fd5804b5a361eee7e2399bd4f4cb1673af8727adf5d0fcc5f4ac889fb61092b3a14a4e5cd86c970fb4c36 -DIST @babel-types-7.28.5.tgz 301922 BLAKE2B 49b78af5432b2a69d3156a1adeef2b955645b1b18b456515872368288e86dbbcbe8865f30aea9d425ff37f83469f6580fb88a894ac6983d8ae7a17fac928b96c SHA512 a90e66e3c788fcc14b4393f1423e0f15aa6b8f20932c8dfb12558c98db342bc2e4ddd55e39d36907792cf2373bc8ce420e6542ef778c564fedae4ddf826ad4a4 -DIST @babel-types-7.28.6.tgz 301801 BLAKE2B 2b0f6867e6baa18eaee70f323b62719788f454eb37b03006ec447e5287adbcc81677cb3b2810417e6505bb6fe5de5918fcfbf63c6d914416a2e90b133981f280 SHA512 d19aec9175441d2588a9933fb10678115de36495d1922a3f582c5aa8a64fd60fff0845843d27de645726b385de28108753464a9c891d25e53f905f9e469e6506 -DIST @develar-schema-utils-2.6.5.tgz 15731 BLAKE2B b69b983b436d4599e725eee95e18f7c997a36619c80ecaecb235d0cdd3fdeba7e29829e57600c937bca5abb48ffb3b56725e16e2aa2887bb7ae20f15f3707edc SHA512 d1ca783ec590ffd6afa9354c0ad67e1a2ae2908037ea292f8ed1f0794e3f8fcc8bb6039b234f8950f858152720c25b5ebde181d6bb770a6f1484dd385dac838a -DIST @electron-asar-3.3.1.tgz 23427 BLAKE2B 8ec40b09154b598d634ee319b8543bfb1aa10c6ce78ab6b4c874436ea5bdc9366280442a4c6de4bd2f7d738eaefd027d4dfdc5cf7c16f658b0ee22fe328e2e19 SHA512 5ada42ffedf8a74b2459989aad18cb032a9a017efc0e87e10f19d1132fd5e571dfbb55c45db14249231c0d0ea13423c915a3f2f3f36752062e7fdba20a4bca3e -DIST @electron-asar-3.4.1.tgz 25591 BLAKE2B dec17ed2da4be2572c8add4e41d86131337394d78a83b6c62649c6bec9f6663195b2e920d0a272270a4bd8df5c96dfae1325802f8799a6e7a554f584733b9b45 SHA512 8b8feb34f452f38b74bd245ad87a2b7ab1915d6c85e2f4e17c77acc347667161e9f9cb292bbe3751a9c0d2cb80e50e72f24cd8db2e982abbdb2149faf4108088 -DIST @electron-asar-4.0.1.tgz 22428 BLAKE2B c25287493b50d415eb3d9f7ded70649458cd35d4aaf1a4f9584a9669dc631ac90d9190c24963f288bd33172110678b40aaf55b58e026da00169be21c75c02e0b SHA512 1786249b58e2046635595fe8f10f28156f0dab4bbe4b6fef3ee8f3349b5d489e82e0b1c2e028862e7edcd7bb3b4a8959db781cbc279b32772666d35cf8c9313d -DIST @electron-fuses-1.8.0.tgz 16825 BLAKE2B af8247ce1efb7fbbe1a18b1f16c722a6c4848dd7ccc2bb85634d9f95f6a7bb9a19e1ff3ba29280a0149ded2c66a98e11df60a8e2c1cff1bae61ede0406aeb215 SHA512 cf1d0422aefc5a563f9416f5b97973899983648e2e6dc09720c278b868d7cd95b49d2d7d4e348f7973c08f3cd398a425254666d126e66613ca3fbb6e4354ac13 -DIST @electron-get-2.0.3.tgz 17544 BLAKE2B 437d666e36aefc0ff8f0c7e73fb0aac028b8a22b64644c58aa572bc72f9116de271bccd2f5d0d307ec8d710117999a4696854fc17ae4671457f49641e42e4606 SHA512 424ce9836b3d1a7555d88d818d192c522e375397bafb369031c8e8272d02f82e68c5a2a5f9f99c9060d016d469669655d0d41e92e659fad1b3ec403d4d59d0b5 -DIST @electron-get-3.1.0.tgz 22554 BLAKE2B 261457a107305919bb41516ffaeaa6a103a4bd1f4be4199568a1c887c8dccb84b96c6fff1ebdffafe93314565babf69918bff4309496c8f9b4daa8684ecee69f SHA512 17e9ca734c56fa455b051845cda3203f2dcac26b8d4d85f57f1ebe171c684a7360c185fa2c3ec02814d6914d0c43a201a1eeddcf4ebd08d911ebbdec3c082409 -DIST @electron-notarize-2.5.0.tgz 14677 BLAKE2B 9b90ea8369a555f7ff2f66d142ba00f932dc1f91cef55224b929fe7f344b809e00473bc1016cf6b6c386569c7d84d47dd383f53b02675df191dd358b1de1cf43 SHA512 8cd4fc9f01f57fd5f91842135da43c205fca76c92f2243857c1d82bf0ba6b2f79589dce949cfa6be185331d0064981773be36ae3d949ef2facb0e0d15eed3af8 -DIST @electron-osx-sign-1.3.3.tgz 31787 BLAKE2B 98be4bb9213d0d776ab1454a91794bc44a92c761700d44eae54d7b658ee8b2a5abcdb63f7e0d9aa126928ad86827f65e193953b3b2646f3a75d8f06e273a7c33 SHA512 299f26857bd6bf6ac812031b599e32df76c31f250a3179f1e0cd2c4f23cd2bfbdc07cd4899d798f4681dab2d1259b3038266eac90fa98607a387a57747642e4a -DIST @electron-rebuild-4.0.1.tgz 36109 BLAKE2B 7b05a5c056cdb149d3a436072ca2701222ad70ab400f92b4e0e462c656939618672fea784c3ac6d597424e726df9993bc70926a3fe52a9b90cf28638bd399279 SHA512 88c1976fa21bec7fd0deff81299268113805f60e8a30d6556ec3b86fb0e6a606f9a9316ac854f3a96f45dd33921ddc9bbf6bca60acd24bd3a264bf9d7096fed5 -DIST @electron-rebuild-4.0.3.tgz 36448 BLAKE2B b3053efe4561da1357da7fa4851d7e05ae6c09429dd0de862f90b5ae1b5779bd43472630a553c8661edd6b04cd2a9a4f242b50190df4cc71974a0b01ea971843 SHA512 bbdbe94c744c90e602b3fd452e249500567b15b8ec5caf9b42ecef88965afa51bb047665d67cf9dbf21c1afc1adec93cd3f7dcde596eb4191b0aad74561f1640 -DIST @electron-universal-2.0.3.tgz 21147 BLAKE2B c9bd65f8fc487aad99f536789277be183ed9b2aaa967b25fb380daeb8bbaaa79f3406f48ba19f9387cce0aa0eb37680a5bee302ee840ed8491f2c6e7352f2cb2 SHA512 5a7f6c3d8215151165e479b030990044209feeba8afc4bab91f43fac9675e261cfde26138d94883925689c40278567805f0b70ef339e90646573ac93b59d2dfa -DIST @electron-windows-sign-1.2.1.tgz 207766 BLAKE2B c9d9bf534ffb4a6afd8d67890ba2022262a37e0bfae4cf67d2788a35dd0566a88e1b11a0f50cc51bce12cb858e3d3cfd6eee5ffe011c37b3eea9b21a0e1a6cd7 SHA512 61f0129eb849faf7ba438dd9883c26a41818822daed1b623780562dad0df37b61600a3bc5fd1043ae3c6b6a6c9a4f2cce937c01e29a08480a359ed9e689f0102 -DIST @emnapi-core-1.8.1.tgz 217592 BLAKE2B 85983b1b971d4fbd0deb38bd9bb05f0c79ca7b2a416d4f5db90573031e78b00dfab98bdf667af0ec29b1e43c4f8c958c480b7bdf5d3021f4f2fbd0de811243a5 SHA512 02f4fd405a712b465df09d23a2979d366fb0ff67c8cefb4f28f8eacb0f63c2f05a45e4d3a8f064f478b16b3eca6e38a63fe40dcfad39fd79e315c0c02f6a6a06 -DIST @emnapi-runtime-1.8.1.tgz 65421 BLAKE2B 7d3683757824011ce1f277be28780b692dfb1c47bafb792c407d80415add80f6592e7ad0116f99333b9e263b5b54389ed8c693a03eea779cdabe6185efc36aa6 SHA512 99e85f2923168e336897ceb9f59f0ac4432b7522430e8b7949732ad3474cf01378a3e08b357434c47d95ec47213475784666d92e698f74469765ce47d855e60e -DIST @emnapi-wasi-threads-1.1.0.tgz 39274 BLAKE2B 5572fc534bae35d67f951d7692376b20c7a0e9c58db3537ac05ef7c32293ef8cf74e5f2f96ad80c214f3f5956c2a39c57754dcf2a5bf0239afb2dea8806afacd SHA512 588d03759f311526e0323475b05b0a00127f0b93a746b8d3d3a2576d929ec491ab0ee3d3cd974361f165b207025c2c9ffacb86e505367bfcb55a8d95fce6a92d -DIST @esbuild-aix-ppc64-0.27.1.tgz 4516779 BLAKE2B d03c85db34451cebc79dc4405c18513636359ec74abc72280d6200551d8d440ead53e5dde226ebd4ab9f1f66a0c9f3ca93dceacefe69a3585bd4467e5563c509 SHA512 1c7079d2976c057ea4e3b4b8bb983f09a2e3a92deac1a39513920bb2aeb88f2ce03212ee0ae67cac6cccf7286c0237e391b8143cccd910f6bb0c0a7bcb3eafb8 -DIST @esbuild-android-arm-0.27.1.tgz 3640277 BLAKE2B 44d2619bc45427a083a9ff1f47fe12560383c45f9ad01696c5b2030960862e922be47165a76a75ab5b35a7317fae1c831aa5a1a94d2d5c77cf2f3346c81b77fc SHA512 905a9aebf51c6936c69bf36770df64cd538e0e38595bc7be1517527b2a567ba8f7de0cdc947b7094036cdba26bba93a7b65716981d2ef3ef07668f2ceed847be -DIST @esbuild-android-arm64-0.27.1.tgz 4403982 BLAKE2B 665f2c0eaa687cda1941c6cc2d3379e27623e01f6c8159076b62f2c0779eb0c64b26b5fd1d4eee1248cd647af174ba05fd42a9ab36483f0e205ae4484bca3593 SHA512 e397ee2a6009a719d05a2c4e182ad2faba3852f6f845ef7e51389e518d9ff0011cfadedde00699e9e509dc7bdaeddb6bc400161ed94416c5c530080d9c653db9 -DIST @esbuild-android-x64-0.27.1.tgz 3640280 BLAKE2B 7f534f1c0b8296ae770098828b3d09192375a828d375fa8856341be8c0e494db4b7397d9676798fd63091994b49b6b5cbdc3c3cba49b3d362774c57fe938959d SHA512 2c11293b3d01b2030478781e9dfe5aaa69ff94b35315755fa16314a31f02b565982bd5f88e64335a3a06a0d6fc9660189a5fed43f62cbe6f2aeecceeec1a3145 -DIST @esbuild-darwin-arm64-0.27.1.tgz 4349604 BLAKE2B e061ea02960a3225d9073608a76808bd2b74e5fcd7c005b9c0d58cb5402e3aa2b7a13a6036a7ccdb2c16ff84239ad4305d44085be42c47bed093683048410965 SHA512 bde83b7cbf1e31209528bec85b8a716f9e10111b5e7450df63f012aee98afd26c5b179d16b3c58e18ca437f4c762a1671702746958e252b546d8fc1c74012a41 -DIST @esbuild-darwin-x64-0.27.1.tgz 4707419 BLAKE2B fcd8b8190e5df1a1260a7c9c5ec714f536da3ef7f6b42dee350c702c5fe871120055fc600a5f38e8a36be7c40ac9eedef26bdc1107395618a52e5540ae1a843c SHA512 fb710b77e9d3ce17d66f4ed5a25ec467ee4f4db27fbbbe270ba8afe3f970214f7d229e6eb98e90a087f41e7e26d87a15d2a727462bcddca4aa73e1720878e855 -DIST @esbuild-freebsd-arm64-0.27.1.tgz 4186443 BLAKE2B 3cd09f83aeda41c6f5b2e4e4fa49a9b2dc37a692561f48f6259c687e5afebe1a310ad4fd81504ab86885da781d904d78952aa4e304144e00e904a0757be1b421 SHA512 ffc45f827b385c3f573925e5cd40dea46f0f5fe015587962625524148dcadc607ab6a6dd8d8a9d85c6f804a45dec2d018594a8682c61bfc913701adc6563fec6 -DIST @esbuild-freebsd-x64-0.27.1.tgz 4625395 BLAKE2B 07d3f03e23b3620b9a7dba61ac6e14adb354b5c47ac3ca333300e010ae559915a1a5247fe788f529ceddcf85d48f3a729a166ca57ba064f96558bdf4fb92b8c3 SHA512 1884e90fc74af42fabfb9c914ff50a553dfa87f0d02ce1ddc06570c281e27659c0d7af280f7bb103cefc5e5a1779b2b8525de00c1048bc474bee0a3d802505cd -DIST @esbuild-linux-arm-0.27.1.tgz 4415859 BLAKE2B f45a4cb3964d202aa3e807b26b69734c391b5b5499a1634c35b4e3f0a8a08915b7b80f9e414eca04f3a7f1b3cd68dc2cf0d20463165587592c5c274e71a3fb74 SHA512 89e3080f4251658fd9782aec150dd8dcd947342a88853a6b25f0e0481dff96fe63259f055f786a3f25d685efa0bd2e4044c049db8d8f33e54dcff72d363fff78 -DIST @esbuild-linux-arm64-0.27.1.tgz 4207887 BLAKE2B eadb4c5a8616c1858cee8d9cfc9ee178b0dbfc3d7cddb8e3d4490fa9714bca985c13e7f8263a9f857210978dcd94e23fdcbb6e6e8985cb00d33bbb22bdaf128e SHA512 5bdfff902ae1ffa8a7f6b58805d29a32db934f3363ea349e1bf85a581003a8b2daf4ff0ee584910f3803e72f500689380189734ba0111e27c06fbe55e86ebbd1 -DIST @esbuild-linux-ia32-0.27.1.tgz 4390982 BLAKE2B 3be285667806c80e04fef2a335f52c2f44a7101c42f24e2e4d897995a3594a94fb2e3f21444e6ba752f3bfd7a8b3ab386bcb37f3be284279e74b8176008c302f SHA512 548515e33f060fcaed49531f023d5a5c56a1b22ffeb5ca175cd6265e0cc848bf8a077f35bdb49335d7991c71c862a1725dca0486ef67e5c4fed39b51bf5deb97 -DIST @esbuild-linux-loong64-0.27.1.tgz 4365103 BLAKE2B 4a675fc48d9a3a350081f1b032ed2b8b6da609736a852fcc4ed0f013cdb091419021abbc0f62475fa080bfa448f262732a09d70cae3712e6eb694061f5165e45 SHA512 978adf8a225137bb13348fff7dfeb9cc9f73f14fa4eb37028342c02d4e62116cd8f9ad66559f22582d64e44b0d293859ed7090e985adb19f045989bbaf5504b2 -DIST @esbuild-linux-mips64el-0.27.1.tgz 4031875 BLAKE2B 416d8649ea46e540e748fd5d45b34e8588716e088bcb2eedc33555236b11fec173ddfb0dfc0358669525600982973663aa36db4f820dc7104ad24b04dafb2d65 SHA512 5346c4b8038bbcefc35857728131d663c0b4ebb157cfe51bcca8316215c2d1f0e27856b490322b6b514086c00045125bbc4caca3c680aaf3dd371cd6b92b419c -DIST @esbuild-linux-ppc64-0.27.1.tgz 4249698 BLAKE2B 796fa55aa41ec1c9ccb129628b5c7772ff2d3ccc5bab743e2059a21f203831de31d6228fb1084247ff1f961b1ff795f973efef8ad806e30c3266acfa471e28c3 SHA512 373750fd7c2eeaf3d27ff1a476644db0e7c87921a787b9aeba776c588b6606c56932834f56933ad6a373015637a59d60973cc0c4b478d14c98336dde6830db61 -DIST @esbuild-linux-riscv64-0.27.1.tgz 4392973 BLAKE2B d59a4377edb4067dddd92a49f4a6449372ddddd8d28efc890572e41488084965e6854c218426f0da5e5fb437a1d491f289542aec1488b2fb630b63fb06d06da5 SHA512 ef3970f29dc802972c37b985c343b56753f2124e8f94a32ed7cae82267e5de24074e7affc807d8bfab388573e275b0e8236434a56fb9c5ea0ce1e4c20b451dad -DIST @esbuild-linux-s390x-0.27.1.tgz 4477553 BLAKE2B 5ea3c42609ad3f11104801bf4dc2493ac01738e19d1392fcca261722424600e930a68f0310045376cc6bc428d81cb3070542be4959c8c104485dbb098706a530 SHA512 7068f9c258be1be9e4550759a37fbb143282db9521e195703802ba034e87b2f82bf16a8106e3b2ff5b3e3d411dffa25efaf8df9bab2d5f492689be5bfced9893 -DIST @esbuild-linux-x64-0.27.1.tgz 4647367 BLAKE2B 34ff7399ba69596f08d1c6f5bf30addbbe9a452d772e64f9dabebbb64033fee76ed2fbb2eceec8f46095fc14d6d93c0f9f35475c7cbd6c97524f19039825f28e SHA512 cf71ff1d823d30cd074efde1419f357fe00a6fec84a0246551bcb517cd2f6d0e5777310cc98ffd88d9409a1aa204ac383095f07e0b21ec444610e86b3359e230 -DIST @esbuild-netbsd-arm64-0.27.1.tgz 4173032 BLAKE2B 5476b4f8aa85ad837bf68e753ff35947dab5f44fb570141a141443f4a0c5a6a1e0f38f4b9ac3459d0c448a37d4edb200b06eb8988e393dc482febc128ef4bc17 SHA512 c330b6e03c40be4f049b4d589955f28e5f7a32bf9e7133f23ae00302f8c683e7f20691a6c6672bd84e6db5fec89bc0f4b17662869c733b58acbacf0c7633025d -DIST @esbuild-netbsd-x64-0.27.1.tgz 4608175 BLAKE2B eb85ca2a6eca3b6296c374cedb70803f49b028af18c810a12bf87ff21a13782b2e0cc68256450ab8cc16a35c7e636d6f9875e19791d3c25397c8ef957da7f600 SHA512 d5843cc9b1a2db2217b30bba78dcc9b2b608185a67973116465ea247980c826b2b47415c3685759bd93db1cdcfb8fe6b5012ec84e67295cf67a92832988f9362 -DIST @esbuild-openbsd-arm64-0.27.1.tgz 4181608 BLAKE2B 396cdb64f37bec38957b53d88dffc4def36d027038c6ad69e9dcf2222adbc9754ae57f98b94bffaf3217f6f4709bc71a746c3e5d593b04324b81fa03757f5636 SHA512 e59f83ccb0abab9c2653b44368c0ded835573119b6b530ef5f6294d78249541376093feaa2fed7562c7ce50a09a8796da6f00e65401cde7754e7a1d2316aeff2 -DIST @esbuild-openbsd-x64-0.27.1.tgz 4615118 BLAKE2B 2f5522c3cb957f743795bd15c3a0599d6d9a119e4b37b5df8f2f5b82aa49daa99fb197949eb5c558baa900c2804d9708ccfa403aa4d0f964581b7c20a7b0034f SHA512 43bdc437321d3c5e636a9e30a8bb6c7e1f186d8499f10d309f1a653a56543b2672ec1e19296f035c65a04c266617c5560fb4dc8b0bf917836c45feaf62566daa -DIST @esbuild-openharmony-arm64-0.27.1.tgz 3640281 BLAKE2B 456b82b1f8b4238191f6672e31bd35817cfcacc01c209423b0a8850c2e6ae4a7eccd96c3aac6e3bb55ed24fdfca2b86ecd0ff1e1f57a23e93ce5cc152c6874fa SHA512 6a36c7ac633f5e22beb1733427311b2407a7fb413e24c419da5e11478545c2f57d244111c7ea31b60929a0abf549ebe18dabcadb3d91787937da98f392d59b1a -DIST @esbuild-sunos-x64-0.27.1.tgz 4620950 BLAKE2B 49f1d2b69752ddd966b20b4a901e9d88991efc97f1efe8e2a24cdaf69e1c6cfed43c98ad75ab610ff574b530d7f0ee911ed91ae60ea0d71ef3e3927fb4e72103 SHA512 20f516fb2e15223b83567f8e3331dce455781ae6c8c0f9eccfab9b92f37c72e844a87f35368bc1e7721496b94190f3043f1bcd9dfefd306068cfcad9da25bc1c -DIST @esbuild-win32-arm64-0.27.1.tgz 4245147 BLAKE2B 34ce31c6b5d70a1c9554f444f3c5d68b063da53abb7e21e527c56d6063b80bdd847afe5c376f0174c5a22f943f771567ae2808df3f2a81ec3c0418db2b0a4147 SHA512 4485515a2963580e82755bbcce459c46618fee2451208c2f84329e9bc50c0633ea9764d73393e40d5befaf332d8f557e5853c1e0aef390818ced5cd1b4592376 -DIST @esbuild-win32-ia32-0.27.1.tgz 4557102 BLAKE2B c53ca211a8ffbb97098965ebb0c47c341a57862ea34e0850ad7a41d8ddb68ad0af6a21a4050436bc4c27aa73f3f99d3563c8b36f3537577cb1fca4ef97188f47 SHA512 d8147933c08f6e9b42d402b925b253d5f5ab1cbbde8f066274ac7750c485d1e70731afac9a18b5e9dac8ac212082482f881c0b61de67c2b14b4a5e4a868f7a45 -DIST @esbuild-win32-x64-0.27.1.tgz 4735457 BLAKE2B 689ba5b5707ded310361f37c598f4cdfebbdaa8da4cdf4618ea72db2fc8761b2c92ed14b6744631ff0a04d5d38935bbf59cf5d5a4fde8992001a68df49d23844 SHA512 7795fa44c62fead688ca64a4f0904ffa7c6ff03400318e80e7518f82eb2a2dd2bdc01cf9c16217cb52a34dc93a1e78c4f61a89cc945d93ed69fede6ca126c2b7 -DIST @eslint-community-eslint-utils-4.4.0.tgz 63694 BLAKE2B cdd49eb64718456c501dc4bddebccd67e27171591c2fefcca4517313a984e24af059859595fd6bb6b0eb0c4afd6736714843c43215b71e27d766119fe1373c1c SHA512 d7fb00e1dc2bcc1032794a10ea8c5a8472a6ad9bec9cb0a0e117f15b76451869909123503c534b57d09410540fd71f446171d3a39a7ac5d85933535ef69fc07c -DIST @eslint-community-eslint-utils-4.9.0.tgz 80151 BLAKE2B 01783bd38dfe3794be4d51cfcae4124304fc5b12f13cef16f79ee08b20c7ae89750560354ca3e0576255dbbd84e74db32a3673d8d1a4bf0070732fdf25c73b9e SHA512 6b25451ddb59fa1b2ad6dd83cb6e300a619719ee2af46bb7b2684b6002c9aebe3bdd91f6eccb2748bf8b2949629a9e01589a8c0cc2e63e9c7f43d47738094be2 -DIST @eslint-community-eslint-utils-4.9.1.tgz 80321 BLAKE2B 37cbb732221d184eb8d5f7fbebf7c26e012ddfb802247c583b0e8be4b138f0703b412afe078617ce80626dc63771081bc849ef7ec66ff0273bcef5b595b21660 SHA512 a61ad898d898a6947bce714476a81f5875d1e8d0a46442bb8705831d95238adff6fd4d2be97be40e5d12627a0ce751eaec584219d2c34facf1082398d617b1b1 -DIST @eslint-community-regexpp-4.11.1.tgz 69866 BLAKE2B 21f66ce50498c26748b3a95a8f1ecdd7c0df3f01288165976a6b4733502fbf377c2f03706348e45aff6065f9be12b062838dbad706e848f9f37c2a22d2f30ca8 SHA512 9b80d537d66ab246682d4e4695665a7700e7628def004c9d8946b207dc2274297d7df5b1d88bcf9e9ea7de89f9ac99b38894b0f41bfe6770a10d574cc17098f1 -DIST @eslint-community-regexpp-4.12.1.tgz 73232 BLAKE2B db25115038fd16dd8645ac0e733584c38371be59990000c6fe7803ba53c113b7e727419a4ebe3c5f5996c2118ae76b9bd136dbfa8f7e955cc872b3924210224a SHA512 0826420c9b9db81f4e524164636220a69359322da5050803daacf05e41226b5e9c81eda98a363f6978bde8224caae0cc9f79c97653d5d40e4aac9117c1f2cdcd -DIST @eslint-community-regexpp-4.12.2.tgz 73417 BLAKE2B 1b6793c60c8fbf956651338bbcb9f968c99ff3a3a605d9cdf56918fe1c05708b1775d3d5f3a6e08a4b00760522f6b21aee82d9f40a9065f04d23137451abd31f SHA512 12b8924e5b79382f7fed25e445208085f4b1c684948019b7dce1fe224c1b769828aac4ac520ef2dee87e208088fd08380415abdd4da2dfd4699b271bc4cab87b -DIST @eslint-eslintrc-2.1.4.tgz 126226 BLAKE2B e98da24fe4be15d2b9ea9a8f5f2369a9a6feeed768c68f2d6f83f91fe5cc5bd020cdca4fc4fa04cf5cd89a1eeb382dab185c06c9f4853164e9d5520f962be300 SHA512 dbaf59dfd312eb0549b6ca14975d0beb459d92125574f1b6e10e1e6531f79e717a969bd24a110adf04230d7f494560143ef3e1ec23a8b8fa54f48aea69916fb5 -DIST @eslint-js-8.57.1.tgz 3778 BLAKE2B ba2ce095e5f5f32d44c0a70a69012d7256cfa1da3dea484efae8422826d563e39adab6a8d51ddaa0a72443324087bca96a622c231f704e47fb6a8360121ac8e2 SHA512 77dcda31149320a0cb85cb731f5d8cb57bc929249485a1dc8d5fb667e18af84118ed72a93f9c91e31f8ddd301c1d372ef7ade722bf9331c09be03042617d73e9 -DIST @humanwhocodes-config-array-0.13.0.tgz 15888 BLAKE2B 3d7bd0d1ca8ee442150176aaf2780d634592e48cc4fe409f75ce08e3bd5d96a3eff7ec43f4b1495a691e0043a4589f6733a9d8b672bb183ef43319e48bbd1e00 SHA512 0d92c412a1564058b22ba8796087b29cac7b265bc26162f470899f4915d9f65e1283679f905193b857fabf35e32b572ae8862453e120fc98b35f0f930f6bd137 -DIST @humanwhocodes-module-importer-1.0.1.tgz 7090 BLAKE2B 7ed185c929fa88e2f327543b0079ff537b3eb9f0a92a8a5dc19842d0f0d1f674d4121fb3743ee2c15626785e8b7a6beb8a73b7c0150a064d455ea504d44f00c4 SHA512 6f1bde57857cbf961be277054d3deb3d281904ea429237cad32e28555549c08b8354144c0d7acfc9744bf7cf22e5aa7d9bd6e7c8412359f9b95a4066b5f7cb7c -DIST @humanwhocodes-object-schema-2.0.3.tgz 6184 BLAKE2B 5c0dd038fba5c59389110c1c2757aba54d68acbf4c7c52c4a0a56b1953c88ad2d0714010d276c8153ae3a563a342b0b2ab6e200ddf4492c7cfe5146d9c2ef20c SHA512 f77cd874c112fdcd43ebdc9988a0c18f4576e2fa8dcc1fe4a05dba28f69a8007dddcfff8814961dc3cace688002be1318bd432ce50fcc7fd3c66def020a70370 -DIST @isaacs-balanced-match-4.0.1.tgz 4438 BLAKE2B 0c41c21148d58cb6c444e43a5bd2d90bf51b92ca96d40008067f37cdaff85c29668060aebcf7d08038e78a87ca07663c907dfc914d96ef451c7392c5cbacb2c4 SHA512 cb3313b7d9446fc1afef3462a148a54a0948d1cd2c999f64e43eb9ebbec32d62ed589697212dc2a9c1b250507260a967523e939232d5b39e1f065ebe4e21900d -DIST @isaacs-brace-expansion-5.0.0.tgz 7503 BLAKE2B 74188672074d6e912b010a3d97a15a695ee5d5b5677735cd11806176d7945885d158f7c9bd587f20899290cff50f90e712ba842387d644b2deb1f36a788391b4 SHA512 653e790432d5d32bf44419b673332267e4aa0863bb02f98e3371bfc36c6154f1feb5ed1a2a0163981bc694bd5d1feaa5dad8063b7315adb6f78c22b2be9827c4 -DIST @isaacs-cliui-8.0.2.tgz 6089 BLAKE2B abf8043fabebc829ac69f8407cae6d353ae725ff244fa8a8be7a12581e7dbfea6edfa0889afa7ddd2c3d9a15cb18ffe9f4d9cae5bf40f617a207373f6e711deb SHA512 3bc8dc8da6d76a578e1bd0d0d3e0115d66414df9cfe16340ab3ba224aee5978e009b118abff2763384cf8f18d8df39c109fbc15c5cee726d6dc1dc85c9b16a10 -DIST @isaacs-fs-minipass-4.0.1.tgz 12383 BLAKE2B a54f95647f2f68ad8da0a8977759ee218e64e6fa64f0a5a3141c8b71f1bf50ad1239d439c0c2caa9d3bb4892f25a3f84c7e6b3e05ecb631515b79586817c6b18 SHA512 c209bd1219768e97aa3f7cf0ffb9a8de4447169e4c10386a01dc32d5f4c69070309e418e56c829bd084bf01e67d6a95bd358d5de7fdb23465f669e65580d64e3 -DIST @jridgewell-gen-mapping-0.3.13.tgz 17972 BLAKE2B b5dd0475691651bf1a6c8816739572b720266a7d6e3fc81c6bed8cad4928128bd76f74d89f1cc54a4d06ab14ddd7d5fd79510bd14f3aca5850d58b11ca2c4f4b SHA512 da492dffb9e227a32010fc45d1b61d43a7ad65a03e7d0bc370b29c921cb5c8840ecdaa0a8c10634a3eb7fda2d58d8137aa146de5dbccfae5327c283a50a0816c -DIST @jridgewell-remapping-2.3.5.tgz 14624 BLAKE2B 716e3ef231d79beac7af535fca345e1277a9200a329c492b6a2a0e3b08e7c798c29ff1583b444a1ec92118e315291ab60c217783b484a643cef7e4ea5f5aa322 SHA512 2c8f6effe95a606e03b354c3292256d983eb22571560ec22d9f502eb1078de5b9e0a383157895f7ce0990ad605887e9334e5feb50297c7ded3e082876e1c8711 -DIST @jridgewell-resolve-uri-3.1.2.tgz 9622 BLAKE2B e1368c23a75efe6d02a8986bf6688a32ce860d954330ccdf10672aaca8687530514f78c6d28b756fd886b2e090259f56333759d853bf287409eae242550cbe23 SHA512 6d12128022233f6d3fb5b5923d63048b9e1054f45913192e0fd9492fe508c542adc15240f305b54eb6f58ccb354455e8d42053359ff98690bd42f98a59da292b -DIST @jridgewell-sourcemap-codec-1.5.5.tgz 17469 BLAKE2B 3504411099bcc4a7ed0af586a061f1be19dc863261cc865cd1e744e1102e62be26a7c2df5dca53ca58443df961885553888eef8d234c0f1645cc89243a3588e2 SHA512 71843ddf5d20aeac6e7966e5f96b885086a251a0dc8fb58eab97d58449633558117ce52163d7f2db34ef7e8a96b2779b87c4a5ef45527056c80af2672ca0743a -DIST @jridgewell-trace-mapping-0.3.31.tgz 30747 BLAKE2B 2a477708451e3f5c8e694092636e7b2ffdf017ed5a43f652704b5778858f2979c8ac66e270dde53641505766f0a3b28b82654729a77367b042551db163b8ea6e SHA512 cf3351f9275048327373c8e869e3fc410a0242bf0db98c76748232b65d507811191c9f6e5ba85e6ecad881bcfc849c1441aa374d608cb667d5f0dbb5b7038b03 -DIST @malept-cross-spawn-promise-2.0.0.tgz 8110 BLAKE2B 62857fb1d338d391ac10b5cfbb10e82201f26d29df09dd336829c26a378b3f6965005e57bf668025068e1da1c8861938b387d8e884dd405fb1bfe77940fe510b SHA512 d43a4a5346794e196d0708cdc92302d788340a46f28426b3f45921c6a36c648eae00f257152f1c3179412a8dba149f19b96e92f4608c711f483b99365f9ffd16 -DIST @malept-flatpak-bundler-0.4.0.tgz 7051 BLAKE2B 2ccf4709f0d374d1ede7f749bcb40655a377a6d3cadf8e260ec785f5763b29d60552ca0a046164b3fbabc81e59e3ab2ed823efbee95664179570937dee1e0e64 SHA512 f503ad35f7dc385fdcd6c78c0839e37246f747d587706df8b64cbe147a4d28a096d3073fb1c60bc0cb4efa9b721947cc5b4fdbfe7e2a46200b95a14773d3a3ed -DIST @napi-rs-wasm-runtime-1.1.1.tgz 591433 BLAKE2B e975e70f5672543727b069fb2ca43b3e6576d0bc0b6cd46420c1e3a3c02958b36ac22862a12a1ff4b1e9f3525eb1ef690434f896ee9b14f58523e0909320d353 SHA512 a7ae1a87533595df318d6bf7a9bbc5c07885556aead7216f5787fbc3e9b36aa891e08952824aa1711747c2c1a0a26c33047e75b11638344a302f19da063716fc -DIST @nodelib-fs.scandir-2.1.5.tgz 6586 BLAKE2B d9f7ab1fb336fad0d1829256497b6f1938507ca8e502100a3985411dfc15b422f31417336194e7c6fa4f25896deb8769e657cf44f20230a6cb07b338ae638207 SHA512 beadb806adf29b91c4426d8d282af7c970f08dceef4ec1138510e7929d832bda75baa2d1f831eeae6fcd393a34286ec760753b7a9a4a663dcccaa62e3017fada -DIST @nodelib-fs.stat-2.0.5.tgz 4182 BLAKE2B 662139eac73be4355cf602f8d41bd81f460d8c042687ea8a3eb136fbdc18ebdeb4e4ea32fc35ecf59e6a623a6dad1ee1ae2c1590d70bd7bf89ce794c4b41bd11 SHA512 46484f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8 -DIST @nodelib-fs.walk-1.2.8.tgz 7360 BLAKE2B 0e7fe6a8497efc7f0ad61b689e8a48b4277d9a9190ba614f4947af3638e314f04546927be1ec4e96cfdaaac03951435e07b8c21761b7b02b4011e92c8d982681 SHA512 a0607e53196059c810920c28f067041b07a6a1316ddc520ef5a6da6c199a1b05c8a01299f864f2d293f5f396de1a0ecb96287f3521d25765c0b35967ce7a1c4a -DIST @npmcli-agent-3.0.0.tgz 6044 BLAKE2B fbe8539a73196170527a65213f0e197390dc67f1981f42b37c119d17615a513c6969079a5a255b5eab9e81591e5231eddaf453ccbf79f09674426abaad65a076 SHA512 4bbf4d74480341dfcd1826b2e930a85735d28fbe2c9116482897292630b994eab7e12673c88e8caad8a25a88955a856b4dc1a335e0b88a96e1d552079697c5e5 -DIST @npmcli-agent-4.0.0.tgz 6043 BLAKE2B db9174d16a93d2da321bd0f0c16ce549c11f432a50190a307b54349660927e5e7c762d2c2596a41c8811c5fd814d00d9387e79351f2ad1d9b062d4d18ffdd74a SHA512 90041370437d13c1112d583902c1b02cda056fea041ba7a781ba805363f8de00f8244224346307755434f7a16c380018a593c1d114add338089ca2004b597940 -DIST @npmcli-fs-4.0.0.tgz 8719 BLAKE2B 3c8ee22729c6bf254f356da88a22e0726b2678fea94278ddc3c04d63fa3bb0c61a90048c92ebe09acba07ec9b91e0386f1f616c881abae45ca6e595b4bda2cfe SHA512 ff11a57b323ac5f18ef4dc2e2659f0cff2b5e2a0f59024801ad69c0479c6cde008b8919acdca78e4a3f936ec80457a0a6fb730ba5006595b1b792c5d1bf71bd1 -DIST @npmcli-fs-5.0.0.tgz 8720 BLAKE2B 62b7602ec0a9990c94ca7cf4e98464c2c37ee759fd71291e0d876e5ff3a6489ba23a7a5e801cb393d48d06c6310ba7e5b59757c66f52cf3686dabff36e05f1d0 SHA512 eceb02d6034e44111ac0e6b9fa3da95cdf6fb2271a20e1f970f5f1a11e9f24e987ebf117a4907609a8d73aed5f3d116e9f69b5964b44157d75f8ff3d86a3bfa2 -DIST @npmcli-git-7.0.1.tgz 8942 BLAKE2B 9ac641f33e28dbcda70e505d1f069a15c99ad49fc99679dafc8c64c5616f5e558f9e13ac3f3f09f1f9a2151912d2724f75c1c5b1e0880e5950d1c6c517cfea57 SHA512 f974c5c4ada3245fc4249e52a00cd7937ab02037ef15ce7f83e6c3dbbe0b67bb98ecb13cb137c6e99f2b39a9cf976644bd95aa36f98476d5c2db9704e7855ca0 -DIST @npmcli-installed-package-contents-4.0.0.tgz 4873 BLAKE2B 53587716aa3698f4487ddb9b60acabf5f5514e2d3dec905f12c3a6a70b74ecd8f3fb3b1c7bc47ae77eeb9cd69526064eacbd891ee8db3fa17738094824d12a79 SHA512 c8dc8076407107bda0b59e06af05c233465479da3d9c86ce30a7c68ede82bba0d77f4a7ccb53d589900a0c2f2af24bff7ee7f1d164e3441752972aef9cfee198 -DIST @npmcli-node-gyp-5.0.0.tgz 1597 BLAKE2B df3e893302ccd87a7dfe05c34f7170260165abf472f436e1182bc4b267372df9496c701a301b410724dbacde5a09823778cdaba41c338fa265838bb799c179cf SHA512 bae1b91d91572dfc852aa83c432a6c9a02d05bbb268918d5738e5ba83fe87d965c47fbb112381053ca833efd2cf5311e314880014fc60b96d1ebef947538ab21 -DIST @npmcli-package-json-7.0.4.tgz 14773 BLAKE2B 5c12b868cd4c93a35a87dbec5d61832a0855310f4d93e51e3d44d6d86a26147a92a16cbe5e213c69070eaf242769751f2053358746958b70e36c498ae2ad5b2a SHA512 d30227246de3fcae34389b7fdf76b1e3b59f58ccd94e6e8e43107d703853b7986e08fd9af60d869e5b3199f37e3ee948b4d3c8a4fad9fa47f0c148a5ede1dc65 -DIST @npmcli-promise-spawn-9.0.1.tgz 5334 BLAKE2B c9ec4136385ce9296fdde81e470dc716bc9eeefcc9ea1a05604208d6d9e0b786611817e648b20df70b1f74e15ff0190b3060aad2fbe11d82c18eac01aee752c8 SHA512 38b51aa2a06ecb1793a94be30371591625d47d80b56a5a7749af7d816dc4503cf7b59dc26d70dd719eea58a07389cac995e220b9ca166a6587d6c680987fe5d9 -DIST @npmcli-redact-4.0.0.tgz 5843 BLAKE2B 33b3dade4afb1790c0a3c43eb9d2d6d72798db6f6da63f665150368b7e60a335f1a04ef7abc8c7deffb02efb259974e319b2ace5a1e53873ba5fc1cfb9de1386 SHA512 80e060e581cc7d9cbe4df1c0adf56883081f05e42729b6c6a37a525322bf812234015bbea4488355c2a541bd03f0c8352cd45920b67a5c6f08e5d2782ae01df5 -DIST @npmcli-run-script-10.0.3.tgz 7482 BLAKE2B dd3d11d485a942f259c89eacef980fa9b4129f7b8b2def5284a7c577f3c0a6a0cccd7433d2be7d0c462416542362befdbf24d09a4ed4eb79f4cb1096ea7afb83 SHA512 111d8dea2b5193359b6ed56667d58a696c5594a94e781145d7fef1c7e280e49d7129ae098d4c0175bead0e9934bf5a80f9df950f01c8f6a98b7174967268be47 -DIST @opentelemetry-api-1.9.0.tgz 126777 BLAKE2B 5556cefb651c9e547eed2d60f7142079ec2aa76eace1f8c2cb83fc1d3b0ac615f39905fc16b40464f26e9957955caedc668a2322499b93511850ee2a348f3740 SHA512 de0880390bd9887e45f5b325322bfcf8648f31eaa0d1d6da7a8e7cff44a503db314aa6619d4b71cd7f7fd85cf2852f6c5907f94b418913400a06b16a8e979872 -DIST @opentelemetry-api-logs-0.208.0.tgz 22469 BLAKE2B 0c7f16ecb367784cbf8edecf5398e59518f1729be84264d2938f52d007afd5e980c77115cac9b46e952331b11a6f52639d2741d37052d786e23f4b282e2ea27e SHA512 0a3aee298f55e8d32cb0bfd3d64005833a2c175bfda3aa1e37e697e4907f0bfc4f36d9a0209a9c5c71bb7c0f363aed730a958697895139050ac14344d69302ca -DIST @opentelemetry-api-logs-0.210.0.tgz 19720 BLAKE2B 42152986eed7eb81b58613754c7dced153b157a4fb23f038df189bcd6a8ca783045661b88c5f3fb2c967b55142151e19e49d67f85b08b45c6967b66a0c9397fc SHA512 08cb4bc69fa5603ae2bde65e8e904d0ffd9399a76bae151f0a1cb1ce6905b4768c0dd48a7cfe7d30063203420206f101766de25f02dc6a3ffc21cfe99c6c3d62 -DIST @opentelemetry-context-async-hooks-2.2.0.tgz 13597 BLAKE2B 117b51c6a964b7adfc0352e4e54b69b0f3bd34871a942f44a76997dc8c10901a0e1854915ed708c7d9e4ec7f712256abda6845a9696bfebdb4b8ee9598d9691f SHA512 a9190b5a250464d02661aa59eca192e42e0e9812dc3ff1f67e85de3846a8c18091d308bcf5f1de8eb7d87dbb8b54230ba7f7566572af42eb1d6d41198c445fc1 -DIST @opentelemetry-context-async-hooks-2.4.0.tgz 13593 BLAKE2B 849d627013b72ccac93fde520f955faa6eb7cd4dff2d226a0037b6f826f7b8971b3894650b63bfe536d07a846d214d887fc23526e1a85d3afbd5dda8b8a87771 SHA512 8e7d29849fa153b66ebdaa1913ff3f12ec3782f1c9ae7db28be917af29b039b10f54f8edc029a4bd70d14025a58be7c24d317f6923ad5da2ebec22c8befdcb42 -DIST @opentelemetry-core-2.2.0.tgz 70571 BLAKE2B 3e0563e0c2136994d1403fe831a8c5dfeb7a84f3de20a8ded4d7e679e6734b0250104eced8b10b4c9775a292467ff9c78a1c5bef36009258ba66659cdbfa917f SHA512 16e69b9e7526f0b7e59e2795c6ce9e3fb677f37860414e16d5edca252e9a386dd1c56c5c1f20711fc7c3307360bbf805c7f3368ef4ce5bfe3f3c784bcfa6e35b -DIST @opentelemetry-core-2.4.0.tgz 68663 BLAKE2B 81b0b0b46dce0877ad4229913917215344acc987e8c84f6b6e41899ff204e7223964b8cf65430661e29e93d02527116fbfd83cdc91719a84bd2e8b4f0fa3c2f7 SHA512 2ad732147b2c4e7e59803bba497994ce74bcd0e16cff037bcba33215145c294e933b0f2135c1b12afb7c86c75a2c97e1cd4b333528d445eb6ae50a6469dd781b -DIST @opentelemetry-instrumentation-0.208.0.tgz 85709 BLAKE2B d85944bc8cb654724637b18bd59f889614689cda682556a09f2d83a6690e8d5ad234e0eef828558c8a07f1f9d101cf656c33c02a720c1a7f932dc48b096799c8 SHA512 123bb42f8a967104bea17c62ea9821ef3bc4d9bca880091cb15bf43a31c5ffdee23b3d4dfda284e9eb521a8c189227be600d6ea3a0cdc1d4b169a3672ef71194 -DIST @opentelemetry-instrumentation-0.210.0.tgz 86053 BLAKE2B c02ded19181e5d7e13e79eca5e83fe81738a32b53c302f25438c6426989ce6d075a2790fd35fda8a0c9a07259e379a28bd43a8a325ea0de0864959f691944c41 SHA512 b0b321c87996f646ad55a2d438aa5f0a7c521a166adadd51796830b2ed9c4a0c660d5301ebdd07f536a7b9ec5a9e9148f783c96a892ba9ba7cbbd298643513e6 -DIST @opentelemetry-instrumentation-amqplib-0.55.0.tgz 30953 BLAKE2B d33096e5d8a4440cf60f043eba11ae636ee82a332a989d5a5996426ce629d7715a473e2a1819e52f70802f2e94d66755032264d9b7142eedfdd7ea47a3097ea9 SHA512 e542e853ca7eb56710c393c36199fcaf24a9b4648b647357ffbb2baa8d938a83e700072f4f2eac405417b0d3eb027c9146d60631eb57572654cb939a5f5f887c -DIST @opentelemetry-instrumentation-connect-0.52.0.tgz 13106 BLAKE2B a8549ea99aa34784e0517557a09b31acb8f3c6b60ffbdc9a3300d488787e6825140ef086790458fc7dcf5513f01eabb6d87580b707b9f086082549515e07354c SHA512 1973f17cd079b3331b57723d6fb90d592990068073c3b313d2e8ba894fe9f8d233571ddad3a462d9c7503bbb46f4429be1a2922e67d7f42c3970ac57a97e8e86 -DIST @opentelemetry-instrumentation-dataloader-0.26.0.tgz 11463 BLAKE2B d270f5d860c47cc87ff1d58fa942335a41fb727a54df4c5158113c8e1d230f28855c76aee53f63e092b6304d18770710e5e8120576677ce27436291fd3f234dc SHA512 3f60609c57d339aad9e4e28f9987db5df0c58d0e0ff56910d498e2ef21f9fd6c01e969bf927ca7028035af16e359c0e562ea459324f43358fa5cbcc3cf2d1a08 -DIST @opentelemetry-instrumentation-express-0.57.0.tgz 26078 BLAKE2B 7295dc571d43771dce8a8f3e69859dcfb335fd4a6a4f7e784fb341b00c87efea04102704730f5cd1332f9e1e55809cf5236f73f033046425de2703aa42d1ecfc SHA512 1c0771fe8e7cfbcb52479896fabbb83c79c47a3c8aac0cbd7d816194423cd68d749d8c6b19a8673001d68928e10c2ed441263723882370f812290cf8ae6fdab2 -DIST @opentelemetry-instrumentation-fs-0.28.0.tgz 15744 BLAKE2B 624682c16fffcd6f3d4aba052a9de30e6f6e90258b52e3f3dfa9f8bfe732f46813a4e955205c8fb695810bc95bcd3b5c45198d10371c5bd10774fecde7e47047 SHA512 145be0f1fab9dd145754144765588ff84331311d37b6acc41a9baae7994735b54fc859254957d004de74b323e12b9518630692b71d1ec82b47b5b46b7aeb1ce6 -DIST @opentelemetry-instrumentation-generic-pool-0.52.0.tgz 8988 BLAKE2B b8ae1664fb3a42f61b43c199ca31331486de9d903dccdb74f78287dff9510bda72d59754db6534aff10bd05d95f4bb898d59c7b22d6045807dd5d863aa8227b3 SHA512 21290d72fe42336230bec3152f7d5397ad7fa76666d88d8d02c62ae5248180eb0e9dd4f44e39e9b63b9f61549c0a70f964b0f5b699784f71846142cb60e74875 -DIST @opentelemetry-instrumentation-graphql-0.56.0.tgz 29839 BLAKE2B 362942c3cb1267f3ca02032235ad6a7cd6d699cc9f635762f6c2fbbf10e278a148623c098846d3270adcfec105b2a446955b1e567dd5ee38f7de2a2620b2c30a SHA512 20fbcd93c005a15cd300cd19dfdf6ddf85439860e0c13eab22a094ba0f0ff680067ab976fcf10860c3ce97fadeacf1aefaaf204967666c54a3820ecf0d545ddd -DIST @opentelemetry-instrumentation-hapi-0.55.0.tgz 21204 BLAKE2B a6be4475a023712e4b08a0c00d0ea4e2b681105b73c7b5d4fa1f4c2c81577fcd0e2ba131b6bd567b7061fb3118624e8f675f2fd590b419a6d30ac0b662236b2b SHA512 a6ba809117fd7b8784a72e06dd4711df6a6b284f0d2cd940f744dd114d54b2084e4e0d2352fb38d09cfc2d058512ce4d6cb6d71d81b3078098564088f1e58455 -DIST @opentelemetry-instrumentation-http-0.208.0.tgz 58575 BLAKE2B bfa565cedc6a34cfb7deebf3f23e0fda21a9dc29469a99c9c5f2a09333759de8f34e72dbed70f36361f444c7c631804be7deb77e28206cbce913635d01432210 SHA512 ae198ae3a0d15846d0401efb4719955c6ca3b3aefcddcad70a71636108fee2d0c7fcaa6ff516e0de1da468dca9e55cf67a61757fd1ce410bd9a07cf031638565 -DIST @opentelemetry-instrumentation-ioredis-0.56.0.tgz 14172 BLAKE2B 9044a645d61da9cf79070a7c9caa752372da889b8af789c26340e70c328d648519adbb6d89d24c54d2b70fd9a759a8616db55fda8b7e095accd3521e9370ed7f SHA512 5d259eaac777aca4ac4f7581cff24a2437190f84181256446b4c55757f1ff5d8788784205e12912e8ad5b1590adee5c56c2dac64a012d83b3e628946c03f370e -DIST @opentelemetry-instrumentation-kafkajs-0.18.0.tgz 24934 BLAKE2B 054cff798a353a9d10465728052da81abddce5db2b97fd1c2d4473bf06baf89fa61fd454df6a9076192e568d4c4f2f3d2a308f9277aaef60d8c20b20b4e495cf SHA512 2822ffd479d9379ce450c80fc8ec5f1a32e36d78e9778a1d0d3a32fbb73e52cb6123354b15ff7d2e77c8044f18492ad8138fae4bb3b024c86f860ded5a3a8c06 -DIST @opentelemetry-instrumentation-knex-0.53.0.tgz 17555 BLAKE2B a87f7dca26326a2e897927a321ee620c6dc3c5241780d22c010a2d15932a3a70d9424929bcc3db10e339e1ab6f0e5cb2c8100f706c7ce96dce96a11c807bfc5c SHA512 c67827e5c1f69955c59a24f55df435687aaad66e316f9c2f53a8fd95280b962849d5b5f3b0ee78ddca43c23ad99b69ccae5a5d7417f9e70f3e6df4b8a8387ad2 -DIST @opentelemetry-instrumentation-koa-0.57.0.tgz 14647 BLAKE2B 44563ae10198cee8ac245d5388412e7a2e7a5d7b108881a287fccd0efa54abc8df6f57621e5ea77f4367c50974a2c62a490c958f38773c89f9b85c4670ab3036 SHA512 dc94bc3d4fc3e44deadbde66c25a14dafedceff9be0f20aa76eeb6048cd6b7edeef6eb63c42f504bbbfa5a650dba80cddd133e43e0f51a98f5dc4468fa6ec21a -DIST @opentelemetry-instrumentation-lru-memoizer-0.53.0.tgz 8118 BLAKE2B 6abe60de526226c9accc27cdba8f15c8714ee4daa1a601e796830cb4d5acedf1d29661bda6c2080186b43fd78c5231387d2dd58ae2022cf93130baba646e72b5 SHA512 2c3c16cf970f9165abd07048b99523b25caf8a39634f09b0888b693131ee8da50b642c5c604f5e538e107ffa5b542f13ba54f4221662f91a06bc7297bcd872b3 -DIST @opentelemetry-instrumentation-mongodb-0.61.0.tgz 27906 BLAKE2B 67cde46bba418936b396de38b806c44058b4182b1b9d163be65594a34def54c3115f8b209e0d7f74d403b7b51b42415fa0731bd330cdc42f0086636a12f2d785 SHA512 395de2d834a863933fa662e4fbaf31af946f90753c0d10770ca3336097700dd73178bb3adad2db926472a8966c61fdc7b7b8f5d6bab7e691ce58bb8bcd72fba5 -DIST @opentelemetry-instrumentation-mongoose-0.55.0.tgz 18592 BLAKE2B 24797710826ebd628705430b647c457f12ebae5b065d55f22e3c11da0fa92e0840d88583fff7e7cf82b48ead5565097a94c1ffba0675acc7f26066423a4eeb4a SHA512 e5a7e3d077c5e9a33a365aa0bbafcf3c7164f1005f21edfecc5f451a95fbea358f4b4fddba3a04627f36fd770b49a5b92cf5035bcb278be61e2b4bd304dae2fb -DIST @opentelemetry-instrumentation-mysql-0.54.0.tgz 19243 BLAKE2B 9f6bb070bdf0b93bbf2107c7063b87c4e672aeb6830e94fd8c392cf2311564cee47e1205209551302179149c8a2879762690e50590501c71548cec17ec62c586 SHA512 6ea0b56219f001e5a6473cb5fd77fd703ab1346d9dfc90e46b19ea17937a88928dd5e55623ebe0ecd7c391fe76fcd820a77b65d63702fbea6d0bad410faef7f0 -DIST @opentelemetry-instrumentation-mysql2-0.55.0.tgz 19953 BLAKE2B b0c4c3940e915d113cdc899004567386b338406e24d5ce164961b9f0100d56bcda54ea417c7eff7cfe86dfb9f5c239ec9c990ebe940fb7ee34a4a1f0b1997538 SHA512 d1cb3cc21406e796888b6d209caf01edc728e8e2ba37e7a73615b4a79dbce0cbea27910f8be2356255ac597833bff5761c58ab11e8e4bca888e08c36d4ea835a -DIST @opentelemetry-instrumentation-pg-0.61.0.tgz 37197 BLAKE2B 39ee92dab5a92eca040e4d4e9438f15d96ddc8b72a61df5b40197fad5b032f8a95c8f99f39a0d83e1227565c57f24c10acb678e94eea1347268d9a70d3c6b9c6 SHA512 51e57b29e4e745233b1021dadd8b1ca2496152d4d03ece95eaa6291b6f37001ef1a673c60940947c40854fd8c583afe264e413b77147901d7019324235912f3f -DIST @opentelemetry-instrumentation-redis-0.57.0.tgz 27543 BLAKE2B b0239e4043225d018139a1f163aa201905dae49eb113ab483d8daf651ed2f8b93b963f036901537afcfa695ba981fa5f4e85323eb1e02a83506e6725721cd8f6 SHA512 6c2c531d0157ceb537794d4b667399437b392d447140f0e5537feea41ce5598efba8e235199b86a1f6b38f78edce372d30978110984dc081448113c15f5929fd -DIST @opentelemetry-instrumentation-tedious-0.27.0.tgz 16679 BLAKE2B 4c65e306b147a217957fcf95eb67ae43378ee08dcd6e5c33e4db4d49a2006a903c088e45b3c25c80e3e71ac4080690bad693578dcac03ed129c626789b94ca41 SHA512 8d1b72509359a693c18cf69ee198c84367aa25b7116917c992bd2540b1c598e53f9e8e40e9ef6cd4e1cb7795d9c99a0127fca69e0662b5a9f24510397278ac78 -DIST @opentelemetry-instrumentation-undici-0.19.0.tgz 22954 BLAKE2B 49d97bd98c242d8891b87fe5d0817e547d2d56d9ca907ec754f93fd044f9d1bb0e2d06f5ba12277cfd71b1504ad6cd25de4f2813321019fba8ea6656c4521373 SHA512 3ecb7f46147ad40d8ea19419927e8e2e9755a57a7aaa7dd8f76c176baba67c97bdad5eb8d2be1b73a496bf0e293cde83890a8fbb673c82749264f0ed0ba265a5 -DIST @opentelemetry-redis-common-0.38.2.tgz 7389 BLAKE2B 5bdfe21a3aca94ba01f68144c46293593e976682b80b643819cd2572891dff5c9a8f14b01a3f86d3b6b5ec7130c93526e25e1d0adf2caf4c29bcf5ae5f197451 SHA512 d4109c53dde2c12459bc3020c14c42fc35784ffe34e9290c7f11aabb9a2373702f348f88f46855eefd09d47963b1cceeba172714b62a0f9566c155df0861f3c4 -DIST @opentelemetry-resources-2.2.0.tgz 52938 BLAKE2B 99f9dd8d07772cc6dd77c45a34731add8a8fdf02ebddb3b753f62226aa7a633b2d60df6c004f67fcd8917fd59c97657cf5886d780c4de33c038cd158cd9eaf2b SHA512 d693507ff25acd04cc0340623b9348354cc7d1c6cb6db97b9a7b4b6b86893660825d28f4ab4dd3e595d72f4cf0e06e794e374bf53cf7d9cce718295ffbccebe4 -DIST @opentelemetry-resources-2.4.0.tgz 51903 BLAKE2B ce3688d510b972dde5bdd7ce61a85fa36c8cd3d5ea725ab1c8197b4321815fae1a2e65296eaec71c43fa5700ce0db6f15481ec40bd62ab30f7ab62ac469a6c36 SHA512 456bc62e3da530365deccff9b63908ff65473295de6cb80f2af05477d2d16ac116476c40ca70f011866e2ef63d3f63461bbdc7174ee36db8165f60bda1abdc42 -DIST @opentelemetry-sdk-trace-base-2.2.0.tgz 71931 BLAKE2B 264641bb1f1ce5660f1f91835c864c62d9923e01c69e2d55a87e26f8b969e6d75479bdf14f609f4b3df792c3d32bb681eba24511e250ddf60a8ca9bbc63c8949 SHA512 c564202f406672db1a960e8f6971319b375e752a77832295f26401c0afe3f5519d083bb67e65c86f68007a104a6e45c2a49e073e482fdd07e8256453e1d1d66f -DIST @opentelemetry-sdk-trace-base-2.4.0.tgz 72214 BLAKE2B 71aaaddd3363b322d9bb1af5a85de3995462db055dd4936847fd8e97acf08c7b45f4160f26b0c7c0dd0508ccbe533a42ef90ee215f3d8bf95125b81195da515b SHA512 587d315e4cff3873910cb2aa6b1714652d17fadd6cee01a5ba6af679b88480d6509766f4ba92b671da03d2d6ad7fb97c88fef8c28189fca9b17bcda376f71647 -DIST @opentelemetry-semantic-conventions-1.38.0.tgz 1415561 BLAKE2B a3d4f0ec3cd9f6039b197857986e1f1c920ced10dab8c13d85033c75cecf10cba8781d4ee0a7fe2598b0a0429eea60531e9e24190c2ff864721517854fb5e2ef SHA512 9287238b1fbfb128207c98705ea0a56778bd63f308d1fa7b6fe83b902466ea9b32d9db1ff2e0294d1725c06d7c87c02f9bb0bdf9f9edf8edfa3eca49fcece85a -DIST @opentelemetry-semantic-conventions-1.39.0.tgz 1452020 BLAKE2B f1cd20aaa81c2437715435a3ab6d91f3cb0274ff7543bbe5847e70983f598759461d0798f23a06781943dda1a1b5882f4bd660d18b97f3c2045741eb6e2ddf90 SHA512 47947db5bd805ecd8844b34a2c1243ca78647e6c7b997d2f8bc3648596f781490f5879fa1d793927c890fddaa5d14dc0a5f5b29b89175e60434463bea1e39f8e -DIST @opentelemetry-sql-common-0.41.2.tgz 8392 BLAKE2B bcafb99efc23d8e12638a85b27541d99e31e1a45182784a1b7724f74935a68729a1257bafce943baf899305b09041269f9a86b1269521b841007a3e1fa200679 SHA512 e268569b767ccfe8b9d3ccd027bafa5e2ef2e269a826976f1f47d93c54645ab769e5fabb8616761e162890438b91fa923203d1e19f44c81dc30646ca18ea9989 -DIST @oxc-resolver-binding-android-arm-eabi-11.16.2.tgz 886587 BLAKE2B ae47c4663001baf2d0c43516145aef7a6f7788ddfa14e881912770fcdd08f2e00fd6f16bdafaad362dae3d5e8352b5f3fdc40e93150a4f60811bad6196fe589a SHA512 95525bbf274b4080d91ca51be99b3d46af344154d0f71742404df4782f7f723838c2c32810e83ae5064fca6500215268b695005890f45d873013bba07f1c7991 -DIST @oxc-resolver-binding-android-arm-eabi-11.16.3.tgz 884369 BLAKE2B 825248381c4011cff0c97a9b39a2b6b7dd1e7c77444c082643c0fb414c4198be8f7de05e1985bfaf6a6f02b71b7516f2dca47daed09b4cc080addb3dd139b2fb SHA512 095c961eee80083a83709c51e27986886f2f0c5e13212247a9137369ce73fe03d0c9cb3f42b3ffd690ec241cb4303ee34b0f2756ad84e56a9e1d029a6c11bf26 -DIST @oxc-resolver-binding-android-arm64-11.16.2.tgz 1096712 BLAKE2B f58038f513442bb7efa124b66a4f9dc5dd5be4b1f0191927ce486f6bb9a9fbe5af5eed4c2450a373d042b23b39d85cdeb801520161310208d5bc1966576b82ba SHA512 7c493e83f836ac9e8b9c154fa9e2dcc7efda95667f0dbd549571be6558af8a9d0d76b9cecd12f8f0f0269f14cc18eacbc2c1f5503264c18df03a3aeb425b42aa -DIST @oxc-resolver-binding-android-arm64-11.16.3.tgz 1094893 BLAKE2B 51db771f552ed9c635e2bb05ca788ef615b299af9c811119da85bea20feaff55b5782295c83e5ca3d29f0a7de7a629342b60b0ffc12fd35c289f74d00d5b84fe SHA512 b5322807ba652de876a3a032ecd9d5e4225be9051777123b4a19eca76102acb495f3593ea1513759762b41287896d58bef98b43a0539063ddbb2eca0e5231ea7 -DIST @oxc-resolver-binding-darwin-arm64-11.16.2.tgz 960423 BLAKE2B c4ad377c9ae851397b1a120f1dfcf6087e79fdf1839dd30bf979f4195717b1ab06d8e35cd5ad937ee8e5394ee2cee518e2fd532acd07e852f7e20cc6885ccd33 SHA512 3e46e9d6a8bb91d517ea4dc59353ef020ea9eebbb06962a0d4084e94382b836bcb5e3b6ff591e8ec801037a90b8f45bbef574f2595aa371a2a4cf69ca76a1858 -DIST @oxc-resolver-binding-darwin-arm64-11.16.3.tgz 958907 BLAKE2B e46bd623b0ce3e1f1fefbd7ef7d5e30b993150e0394fbbf6453e984fcee19e0279e588d13289ecfdfe271e807c21a700d49ac0c8cccaed9685002593bd743aab SHA512 3972951fbbb061ddd16f0d6cdb225977aff0fba6f4d626a8919b9b6210c0ab8b4e600aebf98092fa5afcd6ad61b133cf459788b1613eac92ee9667f5a8775864 -DIST @oxc-resolver-binding-darwin-x64-11.16.2.tgz 1006775 BLAKE2B e02b64e2e7a64ac52a182409b28ca1138e3c3c6f2b346a6e0a8785347769222e36dbb9869700ac1e0fb70fa4b65d419b69a13ad7420106c4dd0de101d17b2625 SHA512 158086714d624a83e400318b7d06ee8f41d6cd2fb422d8c30adf4f2adbb61f3cba4f47713b86357a729e08ec42c1e3a598b1244b15255b950f4f8c2f4f72e702 -DIST @oxc-resolver-binding-darwin-x64-11.16.3.tgz 1004323 BLAKE2B 90278e1cc7a34a3053f78695e0b1d80c0cf6269458a4380009b0db0d039332c76490c73741fdf1fcad52967a70f7dbe38628c5ce7ec56c62a6c4e9bb496fccf9 SHA512 5b08d0e167670b15586587777b7a18e576d5dc978bcbda4f30af9e410da6f03b6a52d6f19ef3e90180b62a7bffd9b4baab926292da8e549d877e26b7392a34fc -DIST @oxc-resolver-binding-freebsd-x64-11.16.2.tgz 1014850 BLAKE2B 59c112db1476966a6890a074181227be7c110cd80665c4e94414b45a4af47025dbc68e8562729ec5e83f9297e9f40f9abb771b5175e927b8958f34c3d6cbccf4 SHA512 d731c2a0ae9f31c063139e0fd841bfcfbd2b4e3711c6fc8a7ef93813f415ad62f135a86e183159231a04a28e241a79c47263e3e351747363e4ad06ea9698dae6 -DIST @oxc-resolver-binding-freebsd-x64-11.16.3.tgz 1010978 BLAKE2B 1da17c4c31fd9b259a5e66829e4e7519197021d1413780df865f126233fb5ef98a655a52c0686acf28e2c184730a9d9f69f627bf1868078a7d56f02503161bbc SHA512 e0e1ca14624105f3a7b899de95b092e1e068ac8e9c8f9e055317192701173dea0b73ccb3391068276c3e7d06f08e541c51464b120f76b8684a091894a2ace78e -DIST @oxc-resolver-binding-linux-arm-gnueabihf-11.16.2.tgz 989382 BLAKE2B 1887b80ff483e19b8c1bfeb82248c05cd26d4aef6a1755003e5f8331d0096738e5deaacc12b8322f842e0b3d6f2d339186c142773c959df63aa74170aa58b5ec SHA512 fae70b633f043b9143a7a919e28d6e0e68683fe33df32b2a8945b8848dcd99f88e25058bac0cd08ea69374f7c83b39425c153d207a790a0c6eeb03e355bf1d6c -DIST @oxc-resolver-binding-linux-arm-gnueabihf-11.16.3.tgz 985602 BLAKE2B 2ea254ac3e13e002956bd4d58dd25461d9666a836cacf2afb8ab5a014f5902b4b654ac8d23f7c1db2c63e8f38ba76fbe860ee0213cd2e64bf8823bd98b7d9b91 SHA512 38cdd6d0d2edf6eeee2b01bfc996de5c005a9ec642d2865e0c5d672a0bdc668470e3f61a93afe5e12d289c17c315e60c63de1e61e02dd9b97ad1edf4960b1be4 -DIST @oxc-resolver-binding-linux-arm-musleabihf-11.16.2.tgz 994568 BLAKE2B 0b7f3ac96cd11b1cbea1b7a52a9926e00e4e595be05ae0a5cd0495512f10d33dcb8b6cfae6a111aa7d419d7ea10839cddab53c220afda69767aba570b5b56317 SHA512 aaaf93a4d5f2c35a1d0e0a0e351a4c2f31f88738709c4c39e77f7c74bf2b84a1afbd86e2a3bd56ac9d348c4fa11a5122ec7d46925d752a83c945a3e54405463f -DIST @oxc-resolver-binding-linux-arm-musleabihf-11.16.3.tgz 991471 BLAKE2B 82ec553f35c81b3ccf7dd36801782ccd4d9304cd1704bd9d28e544d0bfae92a8272b24ca52afe1ff9b39def6ed57d6d80d027c7e804eaccd3be424a2ab37db75 SHA512 311b3b0fb8b5b7b002b00753b8ff3580b6444bdd7c129066894c8497c7eedf4db2401fb82fb2fbcf4522f015a7b6151341dde7014f5d5ef10d2cafd2a91547f0 -DIST @oxc-resolver-binding-linux-arm64-gnu-11.16.2.tgz 1085883 BLAKE2B 8fa179bdc70aa0e54cef6155a6d494b9180759de19857cec5e44c79dbdc0e1266098d137e1812c3733ad021e682527553f0c91f5c5168309288c7300052169da SHA512 c65321e2036da65350130b85e62726ebdb9d0bbba7d16cb34f9cb039e1eb3cc12c8212a72e35e8936c1980003ba1c4e6f7e26c23e9d55c841ae573b5c7e1cf42 -DIST @oxc-resolver-binding-linux-arm64-gnu-11.16.3.tgz 1084680 BLAKE2B 30a5e7f6f80c1815ba1c0cd6b16d536531c50106ca34bf2a1c9ba945af6c8ca563f6cfeae5ce81205f5d8c69f9785265ddad8899a4d05dfa0826a3e908d83a46 SHA512 d1e55867149c78da86003ce1955e1946a9071747e35b145740e07b430979cb580dfd76140ef31f8a9fa782dce3e1d33bcd04f853dee152127b3d4292cbf24819 -DIST @oxc-resolver-binding-linux-arm64-musl-11.16.2.tgz 1092857 BLAKE2B 4615f186769d442286b5003f4d49e2ca446e62b73a4cac4ab1d68aecd86904e0191c446efdbe0584c01c78641ec9523d275c117799dd7528d9dcdd52c84cf014 SHA512 399b37dd04cc8b4c661efff83f4f9100a5c94c193b51c307e6da53682cad5915e5b3f0c6689e3c8ce1e6ae24062b663052a5e5fa89deb8dc8f3943b4a1b27e1e -DIST @oxc-resolver-binding-linux-arm64-musl-11.16.3.tgz 1091897 BLAKE2B c772fdeb756338cce20a1db1231ffd1dcd6a751316a4f0d227b3603ccf4556f0de91abf0ec4e84e7e86826579e659d06ce12acc472c32ed5eb84f1086d879f57 SHA512 07506f2de65b80375537416f538d25e50ee57a3f37d745a569b0816a8ba4f2363b1fbc5b23ca61b68993b64dc47e67af81fcb984899a409bbafbe3a67056f635 -DIST @oxc-resolver-binding-linux-ppc64-gnu-11.16.2.tgz 1403866 BLAKE2B cf249ea068c990c8c6286ec864922d2da8476b02e80bf6b60a75513768fbcb7dd08dddbc8a253e13630d5d7574c77e73ae13830f5f14a20551692fff50af1f88 SHA512 515cae85a577d9d246b45e9f0e87ce701b2d83d27007625f9e37dbf231a5bb7c5c1be4ecb9b1d186e4f043a259d6c0a894d4f59ccc418aeef374a504662d64c2 -DIST @oxc-resolver-binding-linux-ppc64-gnu-11.16.3.tgz 1398167 BLAKE2B 388e0446b828cef569e93197aff34231e52ea2c96f3d07e85cd58ba82dd7da265baaaca51f99d52e773d8995992f23d7d95e02fef0bff8ef51c04464282a7411 SHA512 abb92182589cdc9a9a93bb83800dcc1678c3788ee4ad04f9f79183669bc5abbf397e61584b1f2b9539281f39a142d522b18b65e171bb594b1cc2ca22745508e3 -DIST @oxc-resolver-binding-linux-riscv64-gnu-11.16.2.tgz 1123562 BLAKE2B 578fb8f56a2de03c57469ff8bf1a1c9d82a3f7f29b3cabaac301cdbe35a0c033a13e88250d89bfd8aa910cdc038a8190952e7bd2e92c74905ade06ceac6facb4 SHA512 619652d32bf6ab99c4d6e2ff164e18ee6f74d7c0d21260cd486f28273cb54c98c0d63c791cbe768443f18bdf17854e8e62148efef0b58dd909784f13207ba0ba -DIST @oxc-resolver-binding-linux-riscv64-gnu-11.16.3.tgz 1124297 BLAKE2B 14e2fabc56c30451c54244a4c53349139b45c496057e2092892a35d67e1e2dc83fc8fe3ecb85a23140ffee37b7614a2f89ada61d1e8b54cce3ffee0540492e24 SHA512 68544d99034fcc381011bc36b3773cc896118a669c48323ebbd75ff2b9f99d22b34d58ad1e66c4a59a9fc69c0d2c2288b8b48d9a8cc7475cf5393fa8655798aa -DIST @oxc-resolver-binding-linux-riscv64-musl-11.16.2.tgz 1124845 BLAKE2B a4156c643b223207992aca69f37ec2d7c2df8c60cc60c25de32273d918282396b69d5e6819c6afe1511c91618ef395f2dca2b61fc08f3149acb1127239ee5f9a SHA512 f5562eca9c2dc7892dd6551cc09007e1d3e6809c92878fcac6d00f751a17d814da671566ff21171ead269e5ffc4846ab8f332f5ca6dfec29ba501829b66dc367 -DIST @oxc-resolver-binding-linux-riscv64-musl-11.16.3.tgz 1127235 BLAKE2B ce7993cf368e60bf58070b5e1df955c922e69da575f1bfd8947a22e6feb71e879f9eae80d7dbf92998653b12581d0b0dd17a585269225c022cafe1a30e5575f0 SHA512 bd923ce52bd23000dc10bf46d5322b57446591cd5f63932ea740dd9550b91073f2b190788575c7a6bfa1d3da6394ae72fb9a26e5fa08cc34711356da50269638 -DIST @oxc-resolver-binding-linux-s390x-gnu-11.16.2.tgz 1122526 BLAKE2B 999829efc7ce57af8898495d462f4dd5e858fb427984c60500c7bd082d9aeb396ed49522d2b8f839fb71b1a71e32567c37a643265b822190b7ff44c7e6952fa7 SHA512 de06f043ec652f9829cb38120dd0bc078a8833899968f0cb6853a2ddcfc657b0aa21d5497391195d6e15dd3eb1c2d3c13a95cf5dfa902db8539d40f84aac09b4 -DIST @oxc-resolver-binding-linux-s390x-gnu-11.16.3.tgz 1127343 BLAKE2B 6fa26179543e98ab7a18e94d1256aa49b08276d444ed803d6b3a31b1fcd6b1704dcfc38c6218c5ed133f2cdc98a941c63ae417eab45caeff3dd8a6ff5c4e9631 SHA512 c622c19da52575d144cd11e21e248610c6e483c130658e950fc17edc67e716c88adf183fe1ba1a515d9bc1777e9d4ce5dd40d038c5b541c649e232526f4aa224 -DIST @oxc-resolver-binding-linux-x64-gnu-11.16.2.tgz 1138538 BLAKE2B 583db6bfe8113cda444d39116a3580dbc4415649af8e92fdaca10fd05c349d24b11bc3e56bc916d951e1692b58d0263e994bb6700a434db239a921df03fbc5c4 SHA512 9b459c2b48f9e2d4b059afa141a24c49c65d5a77aa13bc62c69fefa45aa591b86e296f5d447ca43c016f498835609dcc260bbd67354da581e13ca262110ab9ed -DIST @oxc-resolver-binding-linux-x64-gnu-11.16.3.tgz 1134012 BLAKE2B 2a0621a2cb69d2e5abcd650b9bafddb0535b57a29092a55f47f070652ff7b364d6d660b75c9a7a72d760956c8d8728b79d74b44cb1013b8bdd2244565bc13c7a SHA512 eb2d1bd39c086b3249830bbbc94fc060616cc33410b9d60904e6ffa2d0e188369ca75fbac9ef1e828c71eb7895a3d952a436e2a4bfbee7800940595c387081fa -DIST @oxc-resolver-binding-linux-x64-musl-11.16.2.tgz 1127406 BLAKE2B 27b93a2ecd8833421820c2c465537bccc9236e63439c3ac64e136dd418135b09418fcdb4473df03076e909cef9fede3d22828c3d56a3fc7d19e6b29790f2ea58 SHA512 663526df0f7a3f6b78ee75b2c06c23d40da6015048ffc2284bb5c785ca205827d79c423733a34f21140f600656e2ce7fbb7bbac35b8fb603b07df8f65c839bfe -DIST @oxc-resolver-binding-linux-x64-musl-11.16.3.tgz 1124200 BLAKE2B 82d48a4d41359ba5daec30d05e1fab732cbe960ebac9da7efd93f244259b3045174851a3b45ca075c1a4f36300df00977b578e416ec882c7d58e199aedae599e SHA512 466320c2e31ae3673d968812ecf8e9adfe4a0a9f09d5ad5b162b8116d1bdffec8cbb4061636b7ed1547fba6ee9c2d90d16f210a80561ea00ce83f3e7a0a45c75 -DIST @oxc-resolver-binding-openharmony-arm64-11.16.2.tgz 1099607 BLAKE2B 91c20cf0201e1e1bc8c3b7ab6655dd410009333806cb3a1416531c1d044661bea4fb1a643df779ef8cd87e907e6f6969d8795377202edac30665fe31c2e6aa8e SHA512 385550db1dd57a74e9d779c897a1dc43fedd9a116633d760d848ca7c770eb587eb54b41d351e931c553b1a431d99cf03758d732d47a2947c0122ccb1bf9864c1 -DIST @oxc-resolver-binding-openharmony-arm64-11.16.3.tgz 1097801 BLAKE2B 23a933506bdc6fbd56c7e6031f6309f408ebf537705fd3589d2fe68eba3bdf646c89384e45e32a732dbfe070598de12ce94ce77e487d4d5849040dd1f55aa4fb SHA512 ffb0184648e35bbc6ed67ac7816505cbdf43ba3e3fc9d38155a1ed38389ef7f33a7c59e0a3ef2e4031459f39abe2afffb1dfdc72121eac84a9ffc090e53b2a20 -DIST @oxc-resolver-binding-wasm32-wasi-11.16.2.tgz 543699 BLAKE2B bc74aa82e31dcceaf08bbd933c2c6a928e7e11de6e8ce0db19ae3a00dab84b450fbc70c1eb493570648e810fd4662f38f9a7fbd34caeac9a97c13dae4b4d26f5 SHA512 f8ed6c63746b1b203602a0e7777c9a0c2b2a66a09b9524c4a58ed36db68e6b0d17ee221b1a38d12ddad093d4ad1b7412899b81cbd15d170a2d222497b70bdb01 -DIST @oxc-resolver-binding-wasm32-wasi-11.16.3.tgz 540051 BLAKE2B 9a11685dcce243ed0c6c5502534353848f351ba2e9e91c9a429cb165bd1e46096478148ad09d738c2787d28605b0b8d32aeb93d5748ef62a357d2b22bfc45ae7 SHA512 bab33a6883db8b9762e014a59e977f4d6b432601ba443d3a1ef2c1b8d33ea8e62e16d635ff13dbcd0d8b6a7048db2729a88a08670b02872a6500bc0031dc9f09 -DIST @oxc-resolver-binding-win32-arm64-msvc-11.16.2.tgz 921583 BLAKE2B d5186c1db0cb6133a2479a48e905aa741513e106463f017d7cfd02e492eb4c7c0b0d7ee8a3432c374b0fe154f5c3cf94544d8158fc1cb40f34bbe22b3d555f03 SHA512 8ccacc24bf9f931eb1a123053ce7b243572d4c58dabd63ce49910a518e4f79b0f04260bd72a12be0b85d4e71ac3ad16b5982d7944538c5678c741a1cfd72a438 -DIST @oxc-resolver-binding-win32-arm64-msvc-11.16.3.tgz 923414 BLAKE2B 76907e4b137b0ce70528c117103dcc09194bc3581a20990831905f7e883c88132aa0740bfa494d89a18272aff42a8ac01e30fa1da0d421827d32bed11e83048c SHA512 42ebcba8629fedfaf15874394e7adc6340bf849a4036c69ecfdf50e1d024d617a7ee50d30f81413ed0733e79ed2c55de6951b73e74a69d58e5bf4bcc20bc14ed -DIST @oxc-resolver-binding-win32-ia32-msvc-11.16.2.tgz 932558 BLAKE2B efc6496143ebd5b3c85e7334d9fbed518c94729f56aed0202754bacc35de8aa8100eeeceb0ce49a0176fdc694870a6b0cc8c5a465cfc94c152ff5c3709c20487 SHA512 b65d310c0e5d710a651b6ca0d99860553e7bf1d85115a7da09fcaa304017abc28da68afce67279dc2dcf2e97f10f634accf8a81605847b136c8ea462fa45b632 -DIST @oxc-resolver-binding-win32-ia32-msvc-11.16.3.tgz 931163 BLAKE2B 371c76a0b2a422406bfc2bcbde2b343766fcef43bf01326289eef7387a13333a73d3f8e6c4b37668042a282f73a456687cc470a1660280555719cc7712854220 SHA512 411ff08ad5cae819984e510ff020a30b97f1786e54f40e9ae74a4da42d672e78407098edcc51bc29c4397ad572fd7bc22e20dcedf45e680591356b4268884cf1 -DIST @oxc-resolver-binding-win32-x64-msvc-11.16.2.tgz 963281 BLAKE2B 9e74b71108ca52724e4077b0ed6c33a0ea3e5a9c4d336f7c0b106c138730b6336431517ac58881e8d08e6e6fde822eece54a18122c4ece545f19cd091c5db457 SHA512 33bcf4c63610ab51dd264d83c5348b32f44cc81488e309f815719c55006c6c08a18177af0117aac0c75be7dde79822bf3a217048d70e68623352fcf2cd0fbde7 -DIST @oxc-resolver-binding-win32-x64-msvc-11.16.3.tgz 965735 BLAKE2B 7d38227700164190195c93e0dc829d886fa768e3744a140e791791f3c8ccc72962a208ee333d7fe551259695db562517a654ac874c5d98cba946578a4ad6bf00 SHA512 6c5b8944a3ac72c0c0119fdaf017b37133007b6050fce0517ee30b154b8835f4d1e6a195726e1adf1048ad055ea4168fc458f5e9225d46319ed39bc38b066617 -DIST @pkgjs-parseargs-0.11.0.tgz 21691 BLAKE2B 1c3065fad453da14e0648ec38b084d40a5596afb8035e672bce78f5aa46ae9f73db85fc9fa024f2c6a7298c9a56ce527e5a71d21ee141a764957fa0b11504636 SHA512 fb55648dd0f44012cfa1d1ab2547aa6ab1fc54022f40e0c86f087d5e93f94b28ac7fb628420b0928f345a2aa8b425bbe550fed552b21311ea5a0f327f14f9d3e -DIST @playwright-test-1.57.0.tgz 7782 BLAKE2B e01278cb8af65fc28406ee1808dbd9a1add3957189dfa09ebeaab13c0e49a3d9d67947e81f96209e0596ff55f09281f5290fce5f8a8036dc9b3b1a0539ebd0ee SHA512 e93c849c781de9202b40ef143b638c4f1b21967dd031606d3c6ace0a0b37c15126426c32b8db41d7421931f9980c4d2b8b0351d5cbb8abea4f731315b5a1b74c -DIST @prisma-instrumentation-6.19.0.tgz 8635 BLAKE2B acba864a869753a130d5d01015d33b9286db3fafa05353b898ba76fc47562dca8728dc3d1a2ac5ab550157769feed08eb539ae6e53042909a940ac6cb5e547ce SHA512 41cb98cb6e6991733c049dfbc151413bb661df89f2455d4639bda7de53e491b4587e5e215a5dcf4dc2263f8d4fd0aaf35577daff8e69e9e542a2cdbbc777b122 -DIST @rtsao-scc-1.1.0.tgz 1862 BLAKE2B bd5a3ce2b17f261cb48f6c49d36103520edb4a0d1ec0e5c561ae921634189d1d2790209864707d68b1269a25031b2cf37bbd539b96a9985c0b29ef946c7aeda2 SHA512 cede8e76a683a0e9c9d5962c0981adf58996cc35e5e2f41d293c897afeb680585118a771ee6713e7857d2888e0f9ddb08bd117b0fbc03ca7bb8bb5a37d5581f2 -DIST @sentry-browser-10.29.0.tgz 307012 BLAKE2B eb89775ffdae722f5542300b2230ba76762ff957a708eb765bc3582e83bfb1383ee681526bc6fce3851b8fd650a6bef5d4ddabbbe05d62dee5dd0bd23f687ede SHA512 5dd6f2211e85e2aa11f59d490964e0ba755c4c98d2f69d9387ebf8c18b38304f9974b0b8b6e28a99181883761d4885829f50817c881d23ac2a11349fec7e8d8f -DIST @sentry-browser-10.34.0.tgz 309570 BLAKE2B 3070e39c507dc751a187e73f391520460e560a0b1b9ed36c1e436408776ffa28bcc4fbdfb871b0b2458d07ccbdbf93844c9116360357ba93b7da6b67cfc6e61a SHA512 f160ac017962e59f9e20df1d318f0a1908eb4b75e0529d67a7fa6375e58dad53d547cabc5e94b7e2a73e7fecbf2c5ad8402f5bb3639fe5a201c11b43088bd1b2 -DIST @sentry-core-10.29.0.tgz 942147 BLAKE2B 8439af831cd16432391d3e40ee7896647261ef40631e8ab8df7039f0bfba9c2fd0fa3b8a2b5353b7f1af2e6119dd6e6ad2ee60169304cb6dbd87719c901c144a SHA512 a254360d4f5d03f070b33dcfb40f4a35744ca8159141290fc3e331c161285352b5aad88cf4bd23ea56c415be62498ddded6603e4c07ed5de423ae823481ac7b7 -DIST @sentry-core-10.34.0.tgz 968877 BLAKE2B f44428f4e47d294de3015176e39a898b170e847c8cd703d0a0222947e9c084ae7ea505682d2693370544bc47f8c6e2ca4d503186e17f0a84c8a922dcc128fc77 SHA512 e0516960131fd1515d3dcb2be20ac3603391f3b991bbaa027dbe75a108d4fcf9dd9adcbb520628d01b2ddcb102ffcbf44a9cad06dcd7abe5b1fdf930ba505eb2 -DIST @sentry-electron-7.5.0.tgz 265333 BLAKE2B 4f6ed70a9a44c059a0ec5207b33e9cec6891db3df768212667895892ff35bcd79c3354a043a1fc660275fd55bdd32602ac493617cdccbd2119fe0b4bca3ff09e SHA512 f3cb7f62c07988eef97da29d77b948b89930a7d1462a0165903b9a48986c26255c8e5cb0927f02c146dcb406d2d20bba4ae734ada1c217850bbc6ca4b0a028c3 -DIST @sentry-electron-7.6.0.tgz 274230 BLAKE2B 1729ab8a7c1587c0a4f5b6073ce380cbb919b6fe59fb79301f8a2ebbbf79a4d12c27b18a74a90f97cca88d2e426f36c082ab552f7f2c40d9810ac1d6bb94d13c SHA512 b9e5b70a86b406d39014f69ff90688de6047322fedec29199eecd9e8f3685691dee828187c2b4d744ec7d41a4cb02a46d4584402008b049b6968c2b240115dcd -DIST @sentry-internal-browser-utils-10.29.0.tgz 151972 BLAKE2B 013143ce65d2648b55408805af0ef09499ed60ab7efcdeb4207290913fb9a5453b0908023439acac073bf13cd2246c864695818cf3b3a75fa67416bc506f888a SHA512 33793270c63a7f7298f5af230d869cfb21b4137660595592c653840b93216325fe83b9aac64c2b6f72c5432bb14a6fe6f820a031309a3ce39a076b705cfe8442 -DIST @sentry-internal-browser-utils-10.34.0.tgz 153978 BLAKE2B ca02e54b6554c5a4ab3f78115215e0dde731b58411b517d963465f73f46ce9594ff66d9972a561c60af3e5b9b9dd346cfe54060364db9d7537d6789f7f3d0dfc SHA512 d1836beb4ac61f279d9b090ed256c3063371d8a0264f79166a68daaaeec0c3e8ec112a0f2e0b7e7f369356f501be47ed043ba2d8f7934b35e6fe7ab3b2c72d62 -DIST @sentry-internal-feedback-10.29.0.tgz 139079 BLAKE2B fdebc84fe5236baa0c038f321932973bd63df2428fd85782609edfae6c40991677152566d6bea50df9fe2807c694c238536278f108cd7349afeb71cf510b54be SHA512 63b211b0d792f7d70438dbb59995997371ef6e3367bb9f478329a6d2cc0514a6dd81b0a0753ea5f39927da82ecbaae04c3c0f0fe92ff4a0a70b25f5481816952 -DIST @sentry-internal-feedback-10.34.0.tgz 139153 BLAKE2B dcf6ee54b24eb55bf94acfc091ca757e8f71fcd72c9f02bc571a13525583770e3bf25ca4e2ec50788d5d31a676c3fc829536b6d87a47215b921640b43aa341d6 SHA512 c201a7abe88dc6c15239ef565ff14ebeda08b524e380b249e1d424558b5c54ce96181548838c203587c40829d1373b544cfce96472e30bdafee0fca6e39d430d -DIST @sentry-internal-replay-10.29.0.tgz 565584 BLAKE2B c8353cdd6b5306aa6d746de5da10ab09a707beaccf294fb65fa4c60af5433a78947b59c7c419b32796ec59edb832d1217910f909e640d6fe750516599c421f07 SHA512 e39355c3d3f007d4d0f33fb127a1ba65afb0990d514c0df985e052cd1e94e1b9278fc2e6034e24da2c27a1bbf10811105de2df70910ed6f1606a0328a8c64c07 -DIST @sentry-internal-replay-10.34.0.tgz 568186 BLAKE2B e1bde7ee8b4841de89c1c9d0f89df6f5d2f6e0c2ad6c471bbd1510f6a37e1b1a92bf28676523b80b2e5ddc0d12c9c0b099136e9828f88d5c23a87b1136815b35 SHA512 56679ad0670e839ef3fd2d5b5528f7b1a15c46f0ea74bcddcb8c1df5f40ca4c832e4e09b4e5a3b9715549dd2b36dc6676a799aeb317a571c275844755ae37d44 -DIST @sentry-internal-replay-canvas-10.29.0.tgz 170936 BLAKE2B fbbad807de5492224debda4372241fe1f50041518abc890c1970e274e6435479aa54cf4fcf800aee449a420c4d8384cc27c1ad588f5852ad7510f418d0dd7f33 SHA512 b72a58e09ae90104063ee4b277f043f3e9cd09bbd3576515bcacebfa22a02349b5a9ce03cfcb4767835f6a2b3667c7989ffa4bd64a9540de44453989a1815d23 -DIST @sentry-internal-replay-canvas-10.34.0.tgz 171467 BLAKE2B d997d231e7001f64e0ce76d8487994a23f949cc5242a76f1765f5e68dce39927aab0d71d9c6e6f473846a0a04f94898dcd58a6bb04573a0e83842747c5973b08 SHA512 5d61fff678ed80c0fe2cb5a373828a801a5bf9d4c29285042050f172fcc6ffceddfa38ab9b37f4fabf047e92f0286f86aea362886455dfdcc8aaed127cf97e73 -DIST @sentry-node-10.29.0.tgz 256643 BLAKE2B 7cb4844fc45fea51087a87f2bad69192d9af56e90be87b3074419ba825710bc956e2e8758fe598ec14502d7592c905b48b78d473811b9be2985e6c0fa777cf4d SHA512 f63f15cd5d3a5428fe1fcb65c697daec134de07cc7e5ec6febc58eb9f74c4d7cf358b3979f3add343a18a659b51b64b72ccbd6b1cd52548ddaf00d32058ee85a -DIST @sentry-node-10.34.0.tgz 275815 BLAKE2B 837f574f0d88825f825d5eaa41c851feed404a92760f4f36c8f793f93c25ba900c01f9a185cc17ad6e4dd436d31b7fb1dccfa45ca18c2c60904de4e16a07e4a2 SHA512 6c43b21fdec7b95b56658019e66a7436160d73e9fa4027e22ae2de7b63fbe67da4b787083d31af2ce49d530c239657fbf79b8e74a649b8cd4850dd16f9831c56 -DIST @sentry-node-core-10.29.0.tgz 311404 BLAKE2B 9cb2077bf4486a3902997ae29886d8336ee799aa6b0261bfc36f2057ad2698c2f07200dc5b1538a033734097832171ee91b48c4f12f6f6c6acbf7ec2384460dd SHA512 7ff634a241e13cf6f91e760d06a0a2bc9d98b97b5269dbdc231d7a77353998743166180679d9d408f117eebb2f3dc7781e7790cf5d8728bab16c098dbbe6f714 -DIST @sentry-node-core-10.34.0.tgz 313954 BLAKE2B 450777949b4844ad0510e7f464c1b3ed8ab37353812e062b3bf5a15cebd67e8dbf2e4a98a4e49a4e69ad48cfb9e06bc3379b8d665d57a5b78204be27df31ba1b SHA512 16b19f0bc1b30f57276433b7cf0438723ca8635670347bd96d74af5d1631a6385789d661bda3eeae380b452074c466858287a698ea75b9fb31ff0e9f40e180e9 -DIST @sentry-opentelemetry-10.29.0.tgz 130331 BLAKE2B d4cb20f13da95565972e9613a692d89a0a05fc2ff5079a772df9d2a4ab5b6711551234fdfab5fa250f38f7f5318d5fa1beceb6b14faf262b6982cdd61c16afc4 SHA512 e50bed0304bbdc7948ffe393175a6800510bcec734b1ef8f1e632c5c61ab39e341be30abdd913caaf91ed3d69e327eee44899fdcd73d27a8b62ad4872676ca3c -DIST @sentry-opentelemetry-10.34.0.tgz 132864 BLAKE2B b03c6c8fe44aa4a9e5866a5f1322fa9885c316bf790d24d75540b1b4c1df431a5a2f6de20f4c54930c63cadaced3693ed5633fb049f460b6675f51f2aa0615b3 SHA512 b8ab942c13a6755bb76d8743f1da0c2ea2a03743cfdd65ad23b4a1bb5d4ff4f56b852353e14f7233d67abf568595071bae0ca0dcbca766e5ecf25ca3b7dd146c -DIST @sigstore-bundle-4.0.0.tgz 9226 BLAKE2B b03a7409b28b58693024e72b16c03b35487a181a3ea98e27793853fe1edaf25bcc88245dd51eeaeaaafbaa3ee6d68d7da856a843d97c9585cad37b652e6a938b SHA512 3700a5e58d15e838b435ec6f913a9da157e68d3690c282ccdb7eabf3d284a231a6abf8cc96cf12fb36fbc8ec003dd5ef6f07ca0e53fe9665e000be2f292413f8 -DIST @sigstore-core-3.0.0.tgz 19620 BLAKE2B 082700ecaadcc6206ab8fe2ce081495bd8bfbf9bb98c003412368636ca64060d70baf35dacfe2a3ed0c86f6a6e6976f3e84e58becb10d248152fd6ce68a768e2 SHA512 3606c9f9a5bd81097fdb9f86204198702ca2f0cfa7836ff95f4e0132e220a037e0be9d7cbc37283473908d0b06f78d7c1c63584711b7bdf117691d5ac83dfb82 -DIST @sigstore-protobuf-specs-0.5.0.tgz 61726 BLAKE2B f80f885dff560b0687849d57757ea830212bc084967d47433135d3a8ae0045525c8a0f97d817923427501a733be5d5f5884075a5a5675273dc064e7eeb8bcbf7 SHA512 30cf172305233766f0bc283542faccb5b066a5c487ae4845482bb50f5d4dc8fbc3436e4711ce281b9fce7107ddfd395ffcec662961110e3d33184db78d068cc0 -DIST @sigstore-sign-4.0.1.tgz 20355 BLAKE2B 6e34094cf5599f2f27beb6a0b5f301dfb301d331350e82742f07d278553557a9d54b4dc903db0fbbd961001b7cec03c0037f1a2e610433638042777d99316be2 SHA512 285346cb4d60c7d6372013c6fc27ab83147d459a4de3737e96ddc4a3311f7a8caa9bcbc488bc70465dd93b9b0fc7739bbf58b1fe9ec558e94f736260c1fa7d3c -DIST @sigstore-tuf-4.0.0.tgz 18077 BLAKE2B 43289244773bc30d425d116106923adc8ca3056e1d207abfa31358ffc379bb91fa24067df2acb13a7e04ada7b06cc6254381454029469a20214b6fc732f2cb98 SHA512 d1016e5831ce426cfbb7aea07e97cd3ba6848e816b76190969e8ff00ea9be24a966556cf5856627d7673931c90041d4ec136e485d4f72cda4c171c244ef7fedb -DIST @sigstore-verify-3.0.0.tgz 15829 BLAKE2B c4f9969b5dbaeb6f3c0848d3d66c4dc7a33237c93ab2ccfcb7ce6c79ecf883b5edce2a0a5fb76dc7d162c0d4f25708f73c197c1d38efd8175d71b470b74f228b SHA512 9a85ed1c7df70286ce853645f31717d4ca4e16a76f7c293bbfafad7892fccf29818835f012c407e971bd1c6c76548c67259366e1c352cdf9532c39d02e621d9b -DIST @sindresorhus-is-4.6.0.tgz 14287 BLAKE2B 2a304f18ec15a08d018a6e045a2b1984caf6bed439165f0758a683f8fd70a4472aed27bbd481348c960b16884d68a7b5e422668461894fff5eb24429e3172ba5 SHA512 b74f6f48ddcc75fb32087a057134421ff894b46ece2740ac8f307c72302629cfef6bf90881e0c8fd3c6c8a0767704ff86deef7e26d1cbc863035a5788b65ea03 -DIST @stylistic-eslint-plugin-5.6.1.tgz 133197 BLAKE2B 5e85ababe06b2ad0f8979f80a0dfdad1ba6c6f378d058353518e65ee42f024ed6b6372e22a8f46026310a00ce052ec753714e33593ecf7e0c74f6d815472defc SHA512 242b3e32aa177d7ad13c66c69a1a3fcc64bf8cc727de278a97f03c6089aa89befa0bc923819c2ae6e505cdcdf494990cbdc721b919fafeff080292f1962dc9cb -DIST @stylistic-eslint-plugin-5.7.0.tgz 133257 BLAKE2B af34f13638985e80db5d00f3bcbeb69e817ead01de095a2c373172d414cf92f71aef88df68c45383b7e3fb87903a0cfdcb6696dc434bc7fbec9697fbef008274 SHA512 3ec4ae8087fd8a9d47fe658a8f86e2fc1944a1eaf15c075af41c9116c62ec2c9abe9a7fd37124bd006a2357b3c2deed1db5411e4a3220ff29dc5967bd4b8c0c5 -DIST @szmarczak-http-timer-4.0.6.tgz 3951 BLAKE2B b0ae5216fa2fcb5ab85fe41a09d8c3e17e61d0caab7f4c027e006c871a436f930266b9e7b5352c87b0a125fd8c781ab88f36bd19bb9221dea5da5ed9e124ff30 SHA512 e0101f7f29183a03bee67cc1598c04dd6f74b0180b26850f45659c2fcc25ca233c201f22a49cf750c27d29741dd512905e92a9f13bad9fcd0766d5acbb6bbbeb -DIST @tufjs-canonical-json-2.0.0.tgz 2691 BLAKE2B 479d3438b95f85a9444080e6ccfb1b00095d26734a950e7505418a3d4c97a9886fd3162d355cfb4900587155c1180d75e6f7b0a963c28a2805422d5b57cffeb6 SHA512 c95b55f33b1da3ca851defbfde4c3cd5d48bc85ec3e7be80e5c0850a2e17ec1dfdb564fb49e91a105527be75891f3fbda8eeea2536a1d496eb0e358aa85b5d58 -DIST @tufjs-models-4.0.0.tgz 17888 BLAKE2B f4a316de44e5070c0bff96770b226410aa10ee7a89971caa5c2316c9969e15224a4d501105ddf8984f9d16560098b423a5beccd0307858580badf256006c354d SHA512 879c7981afe187cd8239ef86a03e3e80a51e5784f789a60ec6a2ede35191280a629cf23b0cc89d84298d5538ca7e10961492065da14979ed3b5dccdd4f88dd65 -DIST @tybys-wasm-util-0.10.1.tgz 125759 BLAKE2B 4d48c7fbfcaaf5a332521fcfbfd37718f1787fda65cd93600931377ca8694c0a7fdd1462760f86a8d6ff49d8f8599e5f4ddc6aaffba0994f9f0cb945a36c9dc8 SHA512 f6d4da3c92d289e8d92b1f819a8838b92b9bb5ea93bc5ad5ad44709261e2c41a341b8b1e0f4cd4c69f7c1350f35012712d0dcd3f05eb18a0e2563c31fc3a4fb2 -DIST @types-auto-launch-5.0.5.tgz 1905 BLAKE2B d8d3fb492227d2f6e8ad464d2bb0df21dd36d37c72d62d932a10762256e56a6839ee3e22a948a006769789610e683cc8d5c7b57f39b2ef1809be0b48f8749f45 SHA512 fe71af4194b333fa6f08c0a1e06b769087a252638ffdc28625b8e522723e03ee4ca15ffb5e64f9e8327a114f1ba9cdfe22dc447b8502d8656ca663f370273c72 -DIST @types-cacheable-request-6.0.3.tgz 2950 BLAKE2B e611661470e0380590eb301073f81812420464ad1dcfdf64bf529ee005956a8304f5c907dc5d0fd5ca18fd958c9eb23453a58789766d12439e7f7d033e0000b1 SHA512 210dc46d3cc6c488a06f5237a8f65cd6b5899c7d019922afe506136a5130c1e16fc810cb4807b6e333f495efe1ca2ede7067d9565215020e0166a6fc581c0aab -DIST @types-connect-3.4.38.tgz 2553 BLAKE2B 7d1e9d047317a731baf100338a692fb8ecbd164c7e053cdeacc08e044e10ebe888ae2f095123f4b3c88d388d62c973666d633da3a63e184b23299bc77e6d646e SHA512 2bab9139fd4b0fcf2e0d0a890a4b40e32ccbd586002ba3607ec234bff9938323ca5ac5f50a72745cf48385589e8ebbb519c4642d66fc465cc560946a1946daba -DIST @types-counterpart-0.18.4.tgz 1847 BLAKE2B 4d0303c2bf85915d246fbab1b124bd6237ddd7f3cf767b3bd85641d0ff9784c62e0efa20d8a659c9e48b4d3c38fea2c992c74e77e73c05185e165b71874a22b0 SHA512 6aa060e68006a3faa1ffec3151fb8c69d0eed963b430458e6e5cb3c1a3354a47b6c62954c417e03ea6a90055407eb5530cc5706b450c6abcc6a2df26eb8200cc -DIST @types-debug-4.1.12.tgz 2170 BLAKE2B 7240c32b8594bb5f9992e3641eb3a364043c7586b480e1ca64cc029fce73ef3a956df19e58358e3f9f01c84148c6c0be98ce04fbf2868b748533263bdad6d75d SHA512 bc80a159d546dcb1b548cc44bc8fc02be15626d865aea953bbb7dbae5cb04e491a38dc24fd40066942d74657fcbe4cc504b566d3390c742aae84be5a3a38573d -DIST @types-fs-extra-9.0.13.tgz 4927 BLAKE2B f82048c1f7b1a374dd13ddc3bdfc024add235488a95eef51c2c4fc80a680e7535c1e8aa74f0f716617095ea3c08965711cec7732e9406a852d736da5baadf902 SHA512 9c49f007efb5bb99550ccd94238735fb947e15868a7da0334b83a87287229a3566de7430dd3bb31f950db2872b71305b8677ab6e5c878f8038f6a5db22265da4 -DIST @types-http-cache-semantics-4.0.4.tgz 3725 BLAKE2B 162be0a26e4f28fd9afeb9cf4dfa3624e4e82b3d57ad530eaaba6fd126d555ffe9926e7f9702f8884f49d640077803c0b27c3a37d1ec3a4b701f9e2807ab2869 SHA512 d66d1b20555cede256caf7bd4b4467b9181c42a17f5dde50b1464065e405af5437fe9f495a841012a995cbe0cf4cda465f086021eb40a1817c252737deadbd40 -DIST @types-json5-0.0.29.tgz 1507 BLAKE2B 98a739e80b3aa14ccfa22d961bd42e58d999292c04843e114fed3eb0f2d0394681c1ff187f52bddbd1908f99cb0c3ed34f2abbfa5a321d4d58cdb18482d3f877 SHA512 7512e30961d8838a1a03bedcc4eeb8a0efbb2700b09c8ce464f76bac2ef58d0990b6584ce79ea9c0aa396d4ceabd99dd9156de14b2088bef530b8d09345e6135 -DIST @types-keyv-3.1.4.tgz 2638 BLAKE2B b3ec70a6443451236ed6166bda3f9c491b189be4d742a72bed9b78e2c17be3e5b79e7dfb417f72f7ae814638193eafd45409366d14438a62b9679d9e76d3b447 SHA512 050e5a64d482a63ec3e8ada4b2b4424e62912c4a673ef58388b3dfa06ca167efbc62d88af5dff70c128f260af2df9f57fcfd4f7ebbb2630be7bf0163b8488422 -DIST @types-minimist-1.2.5.tgz 2466 BLAKE2B c5a1240a54cb023a05fe0b45e1b150de211caff371d2b1bc926cfc588fe54e5dcdcd06d164e739b8a2af62bb7a1adb87c8d8fd7df665f2f964f3a8abd0080907 SHA512 868bfc6d4ba22e2c853c6c853c4d65c16866cd86e2ace5d034da38d3ecb7ce8c3c6855537b29f75562f454515f74d75d03c4b855fd13734eb6af3c8dafb3da6a -DIST @types-ms-2.1.0.tgz 1951 BLAKE2B 8eff0460aab5f39f67855786042aee4291ba28aad1035f2e6b847b6fa3668dc49d00b8f20e421a019bf3db1aa8a8075b6e4c77745feb951d25244ccda7a66269 SHA512 1ac0822190c4fe9de2f7abed12ac7eedd054197adcef37922b7c303c721a453852fbd3a15885d1ab3b3877a93549553c83dd43acd456c56506869e4a5d06f654 -DIST @types-mysql-2.15.27.tgz 7216 BLAKE2B 27c06908cb1422b2b3c83daf98231c49b188cba4261954500560fd60cff2e6f125159006362cb652f7d27a738e537ad8b5dd08e0f713f65148c58a260dfcbad2 SHA512 61f5a2575e8863439e05f04293cfa15ca99d4caaca97028dd4c34a00f06ee496312f0044665ed0cde1291a79596f754c189aeb1a607ce205e21fea1fb3f4decc -DIST @types-node-18.19.130.tgz 383032 BLAKE2B b74a67b0299f2824f081a5bf692b57bc88f690c64e1ba23264da1817c4f32bd951ee127ac16fb9ed7a7d36bb6f594fbc2d5b335b079eed9bb023afc0c3b25937 SHA512 191697431ea319f2fcb0a7da2030fa3aea5b20706bf63bfb2676a697db41ee5e2fd3af0f00e5ea7dcba330ca393e16c8b3a8204755ce0c42ea6a14f647cbf47e -DIST @types-node-fetch-2.6.11.tgz 4100 BLAKE2B 852a01c91178e4da1ea6a765a1a9aafe2d4bf503f652ca47ec96df990cdb9f4e58921d64dcaaedc812f52f0f1a22de867002703986be2a038d2ae0a9719d1034 SHA512 db8c458fd479fab7d024b472339eaa87ec27552621c970b6b64a019ddb58d14fafb9ba8db185c68ee7c1da79fc43a82dd0bac04702fa501b4c092542c25e01d6 -DIST @types-normalize-package-data-2.4.4.tgz 1858 BLAKE2B 639fcd8e96cb0677579712c55d411f6e7824aa3fee28b59be07c4280080f46238aa6c3e5526c93c8cbf4d104af9b164e812bd41fe162a79d8964fcf78b1c6554 SHA512 dfb8be39a59387da9e2b82d21cfb32442ecd6a19c6a2d36e66f8cb4a070fcdb9691c1debac227100e808e6009d2a6edca289ec697d4e7f420b8937276636dfc4 -DIST @types-npm-package-arg-6.1.4.tgz 3055 BLAKE2B 9f608851d1febca80766f47b9eed7e40def3b7eae2c0f818438cb2101b30d4a997c1161a3cd6bcfb168ea79804cb6815dd4de7fca01b1f206fa493f7010e7674 SHA512 bc381d6cccb64171e702bbb396febca54b570a39aa524dd6ac102c45ba11a2fb0e9b16df9ff5a26028e679cc8a8c6ced9cca6ce5d5a9e14ab6a6ba7e225a35ed -DIST @types-npm-registry-fetch-8.0.7.tgz 6069 BLAKE2B 866b947717e93e95ef6604fd2550eec773bdeeb19e96c8f91d13097179a9fb24376fb98d17ae6068c89d78d047c2a923006b4bb38ec1761c8236c8ba6e0e4d1d SHA512 75bf62061ee40c38389514f89385d9e8889e713120142203e2a93e54354f6edcd4f39e6adca64b0a7d3c013af81f6ee7b5125586e950ec65a3976e07e36c7deb -DIST @types-npmlog-7.0.0.tgz 2285 BLAKE2B 558eb38088782021775b6c2e83012f365c0ad239e0acbbc6f56ec060445f57e245a5331800d14dd2efbd05c14b91f39d52e8eef3fef82fc031106f21abbebf0c SHA512 84959baca16fc4ac96c125178d93184c836c48e63a21c961bc6399f7b33c69cdad991f613309939d868c7691a1be3bbd72d58b4cf8424be78b7d0365ba212341 -DIST @types-pacote-11.1.8.tgz 4909 BLAKE2B 796cbe9f590371a1d7e5cadc31a44475a128e08dc1a0e2da0669ceba8ccc99018939e66317c8604cc9a8b628a6d9224ecfb5222513db13a8fa783e12a2e817b4 SHA512 fd72d1d15a138762443b48c9835abf7ba461f5bc6306af6fa2b26e426b53eeb46b5d2896cfb7bb36cbd7558250d22f09c4c94130f3d80d39eb45eecc651140f1 -DIST @types-pg-8.15.6.tgz 5316 BLAKE2B 6623541b3d22ead0791be499495797a5c5ea7cc7272a734ef49e18a52c97661f63cdd16418507b0bdb87352a56f76b4d4f8f0a0c36e185b40e440e21bee2e011 SHA512 36868cb738713abb9b78bffb519b8d4eb7a307830f009d11a7166a5d07f6a97b959533ee1ba63ca78bbd74a45ab9ee328e60bb661cd53b6fd8cb29f6e739eb3d -DIST @types-pg-8.16.0.tgz 5347 BLAKE2B 189af9ad154bdc464a91824a5322ec91daf52c7342e8fba27fed82498e550d95c2cb15b3aff1ba8752e51e8efccd699dff94a96163965398d49dd4bd629f8db3 SHA512 46684c77fc03f8217c0dfa3e715232dd1479725f02c9f5d0d2d1a05ba5c12fc2f82ccfd44c46cd5d845b2f053ac3e0a0aca04d6eb416b78154b537da5398d261 -DIST @types-pg-pool-2.0.7.tgz 1929 BLAKE2B f5d0d0737925160a6ace0290264a7154159e05fadb3eba1db4342e9d61996ff72fe5005f7d085a5b4a4a571e4085133129c23d8fc7a322c6e55aa0e5d3950298 SHA512 5380b098655071b12eaa9ca3bbcfe9b4e2a0ea0102f93aacbe3db14bda3583bd5b521f2dc319c2e992f9ad9282b063748b21f40b0814c9cf55479a3035017d36 -DIST @types-plist-3.0.5.tgz 1839 BLAKE2B 1e1c9e58369ba62259443fd443b863c26a616469823a560c6242e21545da3d8bd4300ea252226fd0cb898fb959a2d9907894ccdcdef01d42bfb688361bc42e19 SHA512 13a3826919807b858399636c2fff5132a7649330c26357adbad91f95693873e01c8c3534ecf733d5f4304d7d13433f8fc6a9fd8b82f54d4dd41698e7adc0e0c4 -DIST @types-responselike-1.0.3.tgz 1949 BLAKE2B 03f9ecfd3cb7b796e5bca134dea48fbe770aaacb38163ef79301f186b7a57ddb1a22cb3a503de3df5f81388b13ac7d21ab2d301fdbb16e0eba7a49f274b1cc31 SHA512 1fff8bf94913577dee7f8f4f1f9a420140553cd8f69c30574cdfaa4b574ec32ca0db897709c89c89c080edc6be1ccbc9059705825e6bf1ef9147a7a5b1be0bcb -DIST @types-ssri-7.1.5.tgz 2428 BLAKE2B 79ef552339c53b81c83df31f940574c4d9b573824737d0d66fc81c13f2ba69f5bd6c5d189669f30b5e8d5cc1eda2516a73272127f9efbdffd7a9f24e7145c5ed SHA512 a1d0ffe7a4b7079d658882d29396972659d8b7df52e91b7d1050c3a86b49336eab2870291dcc3253f528607af32a47641cc008aae1960ae1ed4136deb3e15143 -DIST @types-tedious-4.0.14.tgz 9687 BLAKE2B 29afd6c66dc6ee749a63988f46a797a70e0c93e5021590aac802cbf3747df561b4815a5fb9ad3c63b3590a3e4c6f400f63cfd7a51e26086b82eb1a8f58af7b9c SHA512 2873ec7d7fc5a156d419bc98be4d6af4c3101cb3de45985125974ee39438623bc592fe2130d8210964efcbbadd29eb2c06c9adcf87ae58258007afed56923523 -DIST @types-verror-1.10.10.tgz 2512 BLAKE2B 0b3d11827941c9dbda09c22cab50c7a649c3d01145e8d1c2933aecd56fdc5b90f5541b11ff378fbbac8f96bf7274912bcc4a67a9278f5755b49a4cd44c3da465 SHA512 97830cd09a699f5f216fdc6633ac300f5b937528697fd3e7f346974d2b672b50bde20b4fbc9715d85ac399b39050041f27570a64792d910503c04a9a00a5cc32 -DIST @types-yauzl-2.10.3.tgz 2405 BLAKE2B c7aec1c54a53549f700521004f02e47b645478f7d4bc79c316e9846be58f891a1ade3336f6bb1fa07e04edb1291ff4e376257b0b2468a72cb1f581ba4a6897cf SHA512 a09a1fb6fd0b4ae683644dcb7b80db297f8a4bd1b7e8dcce7926a9f745082b4c8c03f36128986a9521ad3433913516886d07f38d70eb41ad32b49ea63511b3fd -DIST @typescript-eslint-eslint-plugin-8.52.0.tgz 322626 BLAKE2B acdc1321dd855999c536da5d519bfbf46f6f1ab56937701a57ebf6d5e7ce5135055ea0243793031b45db55ebd9361c4fdb0de9c32e9f0ddb7cee79b4d1962dc9 SHA512 a24aad3a0aaedaa99927988de135a581f175ef57599b1d85cdd3afd8afe2c4bd8b6560d2b4bf3e26041eac8dac6bc78011fa32746f7ed15f7a9bb57e3fcc84d5 -DIST @typescript-eslint-eslint-plugin-8.53.1.tgz 331001 BLAKE2B 3c78bb9174f26670233f4b0e0dbcb6c76ecc370eae489c88b714bbb2cafabffa50eaa369e058a5743719607f8f8e768acabab27c0c74ad351f18e17b7f954d52 SHA512 705618159fa84058ba8549c14db2d15df4c989a42d604dede0eebdd9a81b065fb6672f9ea92296b4f8e13d726ed46ee3e112e32a07893c376adc4a8ec265f902 -DIST @typescript-eslint-parser-8.52.0.tgz 4316 BLAKE2B 99a264bebfd90f1efba15cc1ed0974a2c7d555fcdd3c32148415d7577b16840156e45d7fad24c521f7b436bae3b943e0f4de096dc73a1234fee10cfa99437653 SHA512 888002b31f29c519e0b926211e2327d8fbe1bdfa68a4ef455c7ca7d661b9b71648b00681e85d0ac1b167510377282886dc972e69dfc26a8d8502cd56a7bbc0ca -DIST @typescript-eslint-parser-8.53.1.tgz 4316 BLAKE2B a33f28db4136fa591237f03ef7491c7d73270303c33f5fca9dbd2b424d113f25ec65f2a5b357018776bd7445e7992be6cc6505759018127ac61c035faea835ab SHA512 9e6ddcbc537d4aa6465e39b0e5b67a7069af252c893e7d3053d8070196470e7665db017d3e11efefc5dfd3a13431a364e332d51cbf216f6fdcdf65efc8938b42 -DIST @typescript-eslint-project-service-8.52.0.tgz 4928 BLAKE2B 5f5c400e5f0eccf62dba0cdee6389da80b6127b3f152953cf5fbf61e5db7bf8b953ff34da24ed9209f23263cb9aa2dea19745566e1239f8ff1e242d5ac9a99e6 SHA512 c43d0c7dd49d1267856b73a656aa271e2f8272269bf7a96cd5484817fa97fcefe03eee4a5c3d1b63d96edf78e3d387e3ceb5c772ebe305c042f83dd235269d6b -DIST @typescript-eslint-project-service-8.53.1.tgz 4989 BLAKE2B 5560304518cfce1defeb506d593afb07fd708b613b8aac1dca5ac6359b0010f12d0485ee90b02a136a6a1d008bc4dc1723eafab1e7ba9db44952c8050c0aa0a3 SHA512 5980b8141e516b4c6276c9a53dbfb54ac9da48a3e64b782c8c8011c1b1241e4a16968426bb371fca9963689711efcbb22c0d61f2c1dd5963c748b0c8f8cb4da2 -DIST @typescript-eslint-scope-manager-8.52.0.tgz 61517 BLAKE2B 04532e52950514940e7fbf5cb8671aa6774a39b6dfce1276d630366ef9bbbeaf5ccd5db7c0bc6320ac653101f9a6dc1e0470e37dcebcdc2894a4914983a0da7b SHA512 8b1c6a9a609c73535ff12d264b44e427fdcb29c0bc9abb9824f394e886b617fcd4511e290295bb2f3ae9537266b5e3db4544deb3d6c4a917351a0e22c919c3cc -DIST @typescript-eslint-scope-manager-8.53.1.tgz 61517 BLAKE2B 8b49f253533b664dc3de45e43cabd52c00d118cb22066c957c9760f35d7c34bbaa9a95fbdf10b476a1a6e0491f591bee6f0e4c7cc22a7588f0145584f5f65ab2 SHA512 2eedb7cb0d6e24c158f1c51eabb265ae2cc081e42f5ae80d433269f02df1f04a39270e50db290c76289307dbc154e394072b0cce64519947f016b66e2360b849 -DIST @typescript-eslint-tsconfig-utils-8.52.0.tgz 3553 BLAKE2B b8e1532b29a45f9cd61ab509a7f606d0d243965893f961f4e2d27a0c6c09d59c69fa59c2669e37ecbcfd832b19faa2c0e52258e5ca2a82ece93a01ceb63f767a SHA512 8e5fbc7f3aff49dcddc562739eae67be823baa7dad35857f64100471a14c5577fe2ba8e65ef005ae0a3ffb9af18272f5e767fffe90c40180218410191ab55fc2 -DIST @typescript-eslint-tsconfig-utils-8.53.1.tgz 3553 BLAKE2B a87de6eadbdae33f037b1739064bbf52efb6b48ff291d460f0837aea4625738c211feb654713cb9b9779d8e366f88d445e0297ff0f4c08f3772bd2382ca57f32 SHA512 a9fbcb5d2e85e9bd72e37a677f4a4f6d727e6285c80bb1ca834506676eee3087a628c280e971f60d3c6c10376974ddbd0febc7574ef1fe99e53cd54b85d85688 -DIST @typescript-eslint-type-utils-8.52.0.tgz 16879 BLAKE2B 56d2c58ac8475a3479537ce5a6c8e4504d18e9c4fe516ccaeb1a9622e364ca305524f52ce5796e8faba76b92e5ff4f0d69866bd05e8f9514e1b3b01c2c7254e3 SHA512 243df028145682561142402db321b3d407b00eede64dcecdb518d1fdc793c86a0faa6752e6809dc7fa193160f966eaa6a3afcca6c62cd30a7a6b136df3cff611 -DIST @typescript-eslint-type-utils-8.53.1.tgz 16879 BLAKE2B 06ea67b8252249683cc4502a2f9cba3a64b1efc0ce7ccd9b66a7949e9c7288eb1f9c2eeb358dbe55bc73e6966689752e4f9c5150807d48251d48a0d1570b70b8 SHA512 30eaddb4dbf2872d2b1f2bf410dcee6f5778c1060a6f636622a1bba84a8f5855bb329cb68f3142de9436c8a0ef8ab641ee3ca99b9b868c5d90aace8e22abb8ef -DIST @typescript-eslint-types-8.48.0.tgz 19276 BLAKE2B 1764935941d0894cabeecb41b5f13c03461f7b55480e2429a7583f1c49fc9dba4bb40f7b59d421933c7d1b67b45ab7619af11e92af46e104201713e64498e5c1 SHA512 71031c190407ee4c0aa15b300f5c5d3b2b71411eb431628cd5d8b6eb1494b717a1683b3fdf6669aacbb95899574ed4d3ab20152bc47b86fb149c85d14be6e3bc -DIST @typescript-eslint-types-8.52.0.tgz 19275 BLAKE2B a6addee9a76a70797acbeb64e5b9726372f3931685ccc16d1732625f37a5733418c35f240f675b6d9e906b57a473a6bd433407d0302d5757632ad4e16d11c37a SHA512 2d6415d55e2af55e1c4f81f9242231df8f358881711f5524564f99906180575646723188f48a0539f8373bacb0cfc42a083129ec89e583a928bcca1fb0d45a1a -DIST @typescript-eslint-types-8.53.1.tgz 19275 BLAKE2B 387ca8e9793168ff19fe2ab60b8b7e5f33e32b8ac3daa2891ba1746d2421f17930ee37b83588b89967266b6caef912a5876ade765835a7459957518479f31d7b SHA512 8ebfecc2baf66919940148d6e7fcd01db31aba2fffbd096c65c24a8a365fdccdba6e798b8fc2f2654a63f3f45deaecda7a4d3a396b2a7687cdfd385e9e6e4ef0 -DIST @typescript-eslint-typescript-estree-8.52.0.tgz 71841 BLAKE2B 8491b780ba5f378e6e79f45a137beb8cb97ce55553d1d6a44a19ca4e5ce62a474791ebdaf1918399bd9fe3cdad736aaf6b4829343c16335c0465164db3b3a468 SHA512 5cfdcb0a5b0273416c4cae7f7eb1a3a25c800d3877426b0ba7a9ca778efac4d23d0ac4ac2e79a7e1fd23af336802e966c6598d229797b8761e110bfad50eaa79 -DIST @typescript-eslint-typescript-estree-8.53.1.tgz 72148 BLAKE2B 96ccb051b9a68c82e60bcf4cd51285021bf0d6454ae555fdbbeb397c078e6e6d9abf5c926e0d4aa0ee35bf925e685c57bac12455f81aee9efa132559c78f2307 SHA512 4469558a91a14001b81b1575b37e0ef7573143fbd68872530c76d746bd258b6abf046837451ffb34cf100d6824120af04180af98957d89c848c32a0a090f834e -DIST @typescript-eslint-utils-8.52.0.tgz 42893 BLAKE2B 4951e648a4160535bfeff544b038d64957b4ecc5936619659b1ebc42af3e725c730fe93c0af645e39317f90ba153901a41ef10ed001c75e7ef2a0bee46dae180 SHA512 c189dd54c5a4c1ea87a44a703e1c2a1369670f60f10ba5952eea54fc33adff4feffbffa241b6f33b78ce1e398132786ed0380b50bbce694e21e29c07622da845 -DIST @typescript-eslint-utils-8.53.1.tgz 42909 BLAKE2B 070ec613daed3a9a7c0e42dc6128f0efe567a5ca8bd66d5c2a35c87f0cbe81b77576614ba8a215a896e645d2d6eabbcc8eecd1ccc93adcf79d997b0626e4e2fa SHA512 7386ccbc65565b886fe899835041bb7d262558e977208d88e3296dd0d33eb1e8a761095931021a29a5c8215256b7d39f87ac21ae933e11d0d05ca5e3368befae -DIST @typescript-eslint-visitor-keys-8.52.0.tgz 4163 BLAKE2B a861031cba6ff45e3f04ff3528a6e59b80c20ba6d2d97143ba6170dd542c670511774d77feeb8b7b34e62a5ca18b7e819a51270dc01cc886b503371f097d1634 SHA512 8a7937fd9a1fbacdf89e606c3e3a30eb714fe4cec819f7f444a020a91ebe085a5d936d8ceda2f00bd80e70b198aabecc7332cfcd9544456f614688373b89f5b1 -DIST @typescript-eslint-visitor-keys-8.53.1.tgz 4163 BLAKE2B 25a0e17fe2b10b06ee29ea044028d00091a854c0e8548f498adfafe82a43580afe9dba65587d05c74a596ba3ad75bb112b5b8800a1a16d337d3a1b1d8d9fe976 SHA512 a32fb057bc432853d1c8d820997b99412073be82e7a6626cf868734613e3af19766ff8c89728d5a24ce6e3b09908351d5caaf6cdded92e874f7ce06938fc8f96 -DIST @ungap-structured-clone-1.2.0.tgz 7054 BLAKE2B 2f53d7fc1434519c6be11cd787fdea968bc8d7b746bf23553e461e30a9aa35eec59263d18065d373a0c18c0f412a93700d7f63f2ec69e53642f802fec4ab0a99 SHA512 cee55d16b3098ae083414302cd0683e8a2f6f0c8e7aaa37c5e702a884abd3cd9bf8423d34867eb5c239fc23d68c382c56ffb4dca624fc2c35b55e3dcd7116aad -DIST @xmldom-xmldom-0.8.10.tgz 51858 BLAKE2B eda5d84ca04f2594dc0755c07930bd7da2102847354169e8f34f229f1528bae33bc3fada9978b5ded650599ed14ced5603ea1d49ef46a936c70c6dcf1db1f202 SHA512 d9600b7d3978c68d9290609846deab0d315f93d475733981bd4432d7680ad8ab91288a5612171b6f3cbc1195edcff8e446a1d7f1b14473a142d478d7e1351663 -DIST @yarnpkg-lockfile-1.1.0.tgz 75114 BLAKE2B a4e168d83e74726b407ae3aba8e13b3ea904b265f514a87bbe1d854976c9372935309753f63160dd0db491b3b50ca3b55714d40d0675546a359bcf92ba77a0ed SHA512 1a94b0bf25ce70e3a557bd2f6e7ce38f87d6e715bf15d505ea7404b7510dcbb9b86427338b5fbf6ee5543c0aa619fab39ec391345cd432372d4c8a7c6bdb6e09 -DIST abbrev-3.0.1.tgz 2426 BLAKE2B a2f14f39631e8049525cb5615d1b0c6d0be5ca9b080b9cb2ce1aada79293b4a5dc844b102232d574b8fc05f61bc5573e5b298e93b4872b72d5b28d54eff4e953 SHA512 00ed9a73aa63441dd2266189a3ebf9fda2ba3a6820a7a7ec2ebb3ac0df5b777e6e96ee1c0b068053dfbb6615e37aa1d591a1d384bbb31f49d9af462908387282 -DIST abbrev-4.0.0.tgz 2469 BLAKE2B 3d4d39405005dd8ec74ff819061a21e692c8ab88485100c15f891e321f3fc910cf58894c53bae5c0ff91c61bddea90814acc17e650bf0102bbce5a7262c2d551 SHA512 6b5c1f97268bd2d1ed25298b48e5726d8872db6bd18a1e1e76e861ae472382b5869d17eb66da2f2761518f1b93b64923e3b3bf6da7f447ce905393ae629cfc7c -DIST acorn-8.12.1.tgz 127429 BLAKE2B a252a8b0a02349adc7871e2f144d6fffc49111520852a42aea90579b619b660074f8a9de7e5b6ea7d9d07865e7196eacc6d0c7ec53adef0e8df3674cd2b81999 SHA512 b5ca46c88f736e2cd3f496d5ea8604e3bed5ea64e55efbe2d13d06dd2348604d9aa66fc6e61b816b5f8af3d5467a8bdb83e8f2702adf865dc00f112b3ae3ba26 -DIST acorn-8.15.0.tgz 130851 BLAKE2B be1b078ececa9951187e31d809f3e12a4c5bdf2272594936620303a6004f89fb5939e338bb74afaf03286d70104f0a036d794b8b68fd9ea603fd7fb48a2c8f22 SHA512 359c896ab05f2fb9d6c08abe1432fa669ff21c485e3cc3679c9d32dea7e2782ae636f61cb7cbafb62578d54be549ee9aa407e4d1f63515b5b1f8dc1f9a9bed4e -DIST acorn-import-attributes-1.9.5.tgz 5005 BLAKE2B edf067eabb8ce4d1dde453db30b3fec31622dc35007762ed6652d50d68e9934d10a39581cba7797208e18546b5cea4bfe4051cd251b2419e56e04ee50a6f062b SHA512 9f4d95ca4bf9b80dde1c633f676750adc0f9ea42fc4f20dbda9d7ed0ff373c294c9c2fe773e6a76d046120e5a74aae0a7bf2af0cfad8dc2f610ed0bf0377879d -DIST acorn-jsx-5.3.2.tgz 7635 BLAKE2B 97454e9e8677f123ee2de87bc88a45c6a366fc07e98fed6a8fc2facaf970a42650adc22976736b23768010c744da7bbc4b8e6fff1393b8046ab14d52d4819d7e SHA512 aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781 -DIST agent-base-7.1.4.tgz 7812 BLAKE2B 3289afc27afde65da8a55fa18496ec175bf5125bbffcf883bf9dc619e5997832e78c7e191d14c676a07f53f5b217af60738ae63a21a196e216675d4a9181c818 SHA512 32703e613f1fc1f24f801c779bad0c36a6a49b7d173a4c88a07d72ea1b9342f0b43f0646ee48bc35a70b05cacf6cda28f2f119cbb269ba4efe8cc3be094a2f4d -DIST ajv-6.12.6.tgz 202371 BLAKE2B 289865ed8ffbc735067f26a2bb501c0980a2225c4c589246571c73de3f2db454c4ab08dc95a94d6ee87677a983917683fbc49087880f0df7771481fca5ea56b5 SHA512 8f77d52e0bd3a39dbb6a7c98c893864d825b1bebe79d062f1349b99a691cd532be9f1029a6408b3082f4699e1d6e55423681928619be933138654ca4068320e2 -DIST ajv-8.17.1.tgz 217137 BLAKE2B 21d12f2db77f9d3d074b274ba1c5f36bb4c7cf27110447f7a603bb5726955680c61c09d7e3239503788e21984dec87967f9b50106bd196960452b331014766c1 SHA512 07f801b8d8394a2313acf902f80dbe716d11b33c316269fa558c41fe29e5052b52e67c7ac4722dfde84a46120c86abac97b6bc2e34286678c2b39be1c31390d6 -DIST ajv-formats-3.0.1.tgz 15999 BLAKE2B db4230fd30a4de4cb55753e43e12bea76ba4a50e1dd4f4a9bb0e00a28e6641f218722203ff3d199c9d22a511d8a4581764b1e6a16141ba7c54619d3b3c6275c8 SHA512 f2252a979d04511fae51c7514371c3a9ae84572a3776870bf20e5627714d7169aeeb621b90652e7bfa44c8b056f1518a2ae7133e0a9e92ce1f214d43038ca8c1 -DIST ajv-keywords-3.5.2.tgz 18254 BLAKE2B 775bd0d7e3e20be37355041a64d1a880edd38fe36cb7ad7ef27ec5ecd995fd91a842abf36306019b18dcb52f429e06e00e5d18a03e09f1fda98521d67db60cc6 SHA512 e69e964cdd03753195424e958dc123bb5f4881a1ee75a95c7da6c3ef284319e03a6dc42798bf82a6f78b26aff786f7f07756a87fa2f7f3a3ae824c7a45fc8c21 -DIST ansi-escapes-7.2.0.tgz 6363 BLAKE2B bd1f309a58f146007b8cc38c79440e010d15828038c33424bf6110165f9d4be49ebb7756d3ec2b8f9998c23757de2a41a39a24c7bcb0047e2b17ca72d2228523 SHA512 83a2e106c97e1813d15865ac06dbada73058b8821d0642c4bda7790bfbdaffbe036f4d7cfb94d98b2036e9c64902bdd17ede65a6b56a3883f17f956277ab6a03 -DIST ansi-regex-5.0.1.tgz 2768 BLAKE2B 0e3e3bb7fab52b396dd661518956478d3677f134962b3c4a1be99d6cfac357218515899a34cc7b6b5ec7cb3eeaeaa282f5ff6a31996114150fc2950385084aa7 SHA512 aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15 -DIST ansi-regex-6.2.2.tgz 2880 BLAKE2B d4fa83d48dc67bdc281cf1f2a44bd4a0ba8090bbfdca70d8e979a2d07119596f39727cf1a62826421d879eb36de5f385b52683127aa1033d38374fff6153396f SHA512 06add2992a721476968cf93c21ff7273ab2f33c739e9d079040b56e106f0e631d3c305d77132e844c9290c9a7a54bd17ce559a0874d7ae415444c6260f4b0baa -DIST ansi-styles-4.3.0.tgz 5849 BLAKE2B 8b757d5b3ce6856dac441a336b1bbb37bc205a68daedf1d66d5c4e3ae12394b0854928b09790fd6007ab2a8b3ff53c8fbba8412c587bcaf7aac30c3e5778a69e SHA512 cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212 -DIST ansi-styles-6.2.3.tgz 5836 BLAKE2B 7b85a3fa70d56ee46a2e9a437e862849a13d80ae593fa5e40a804433a715ef037c4d79dfd3d257941cd90d5635c39befc483c92ceba2d3b5aba48429f3d40383 SHA512 e038fa336f0907ea001fc9059132d4a3e6b68f038592ea9bdf2b9c53408035c45151bc52d1c3f49d96021a371cdc1357c1122c5159831a0cdac267bbcef247be -DIST app-builder-bin-5.0.0-alpha.12.tgz 72513352 BLAKE2B 4a008734d89e47839cd2d0b18bebe6220ba98558aeda9ba926de5dfafddac016693379aaf6341ea4ff0f0a11f4dfce3f941268ca017a724e275a7fde61ebc0d7 SHA512 8fcee8d23e8ba8f2f7411afcca277a73e4ede600bbc4d7d8a3ab90210928ac00ba32979ac95319ac40f32a6249fc796fec49ce4296919b9de4ea4b43619c81eb -DIST app-builder-lib-26.4.0.tgz 1058695 BLAKE2B 125b7a4927f88267bbc1186e0554d075498a3badde8dc4644fa73f51c2a6df0ee8c81966b3e831575e29ac151705ccc15e521128e04ffacd8876178d47da4e50 SHA512 51ab3a84d7bdf4accfdf13d6c61e4b1a51fc9162158d98b1ce63091cd07dfba84fc83a6373b3503245608b5eab403769085cb6d99539b29f28c3bb6f8de32061 -DIST app-builder-lib-26.6.0.tgz 1074803 BLAKE2B 073b038c6d58dddc01d32caafb9cd195580b73b5629d698b9b350608914628726e74792681565fb2ff96b37c4b93216bd997c553697059faecb7f5ef0e7ff81f SHA512 3f69daa126863aa258e7872a4dc78ef659acd8cefdd1433b040f0094eb9aa25421469fcb3ac84055ce2fcd5958170e1834fb62b8126a74085600bba810a9dac9 -DIST applescript-1.0.0.tgz 4963 BLAKE2B dbdacaead572067cac4878003158e4134cde4e40f2bde7ad4bb2dd9cc8d29ce40d59367b7a9f7ed564e42fe2ebc928ad8434d41017ec8052d7bf54bf55b842b0 SHA512 cafb4d1dd5afb5b6048886b35c0769fcd63e0416fae7f0c0b1eaa53622508cec7d0f29eecce6036d52c126fb9cd2f7b454bf71e81dce1c5e9e1f9db2f61081b5 -DIST argparse-2.0.1.tgz 39740 BLAKE2B a5d8bbd09d9809fdc13c4570ca097f2e900dba0515b5375167d5c6dfa6ccdee69d2b34ba25749bb7af2b5c6e9dca2428e2a3003f8785db5e13aad3ea9bb00b86 SHA512 f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd -DIST array-buffer-byte-length-1.0.2.tgz 4891 BLAKE2B df6d338bf0f114a12230c93dc8e78fcddd189e04c995e6093b836f7a4b78dd617f7b150a20a9d96208425f55997344dae114bac7fb701b0e4f5666ff395f1a43 SHA512 2c713ef01b91ed16060cabe7ae672e4aaded0dc2aff4e1445d0b7f1e96d9858ed5ea1d339545eeb67003f361a2171f6b76278232392fb5cb0fa81c20525d488b -DIST array-includes-3.1.9.tgz 9115 BLAKE2B aeb9a5ed250704b065f2c1fd5be7994e7d57b9cca009bf4b0b35f3709222816c5c5a1dd36e16e56ff40d5ac2b4e8201d83ea0880cacb22bad0803ec9ae47975c SHA512 1667820807a7cc7d0a1f7f3548f4f91599a203f4e6a6776971a4a185f80437d7825639c506aab7975c6b238db2f3e3cf2c8ea1ca9ce8bb8197c34d161e63c12d -DIST array.prototype.findlastindex-1.2.6.tgz 9559 BLAKE2B d15ba42759e28262f740174b2b6eba4943688df49930a6fe4c2044cf729e3171ee2f57d2615469f09ddee80f505a1a1eea7f539c14eb715b7dbcf5fa627d9228 SHA512 17f4ca013933b1e504c4f95fbe6c102862133370c64cafaf900b026680dce5d695ca06c90678c45026e0900bd516c81f5df5f8608a99ff6ec6de4ded757ad3c5 -DIST array.prototype.flat-1.3.3.tgz 7141 BLAKE2B 70ceb728a0bd80609b8ca82ce5baa3a3e4582b39e75dd349391a90108851e9c8f7d9c721a4285eacc379719e11a47f8f26059c4e57fca0b75d5a607f130a2a47 SHA512 af01bf8dad677b22ea0ae199e5862bce703ad83e266578348b5708b242142928aa1770a37bdff05c096cf41f6cd566b67e898cb08bfc73307c8d970f9b109716 -DIST array.prototype.flatmap-1.3.3.tgz 7435 BLAKE2B 79cb30b564809858787da9ab25beeaa16470d7b1da946975f11a120e387338fc9e34ee61ce2458ea6d0d2a30df49fd65585ad63c223c84784eb7ab5614a86028 SHA512 63b5ade7578a252ca2f34845ac909e3c618da3992d242b2516e6e8a89b1b7f9ec208f726e73ced96e3e5738fda0fcb16b0abe5c1ab5ece957853579f93c9298e -DIST arraybuffer.prototype.slice-1.0.4.tgz 7207 BLAKE2B 08a978ffda0d79f3b9e5999cf04cebb182fa643825d221bb574bf0446004e5f6177fac4fc27fb4563e95656a072386419ed6dd0ad46f5fc96ffd92ec6ac87ddd SHA512 04da0263a4975cf43b805da8a483f818113e5f0ed4fa91cc60abb38e008ddc6c22688474f5451e29f85ec88af2efb42dac20650b428ad2ae7f4c447fb588773d -DIST assert-plus-1.0.0.tgz 3943 BLAKE2B aa2631632f2e5a165a76cd8d86a37324fefe080537dbebb80705a1988d43e234f099f2da18a581660466ffa065ecf46c0198855d93f73d9a20bcd729a6f7d4ca SHA512 35f27853304271018b0e542aee71f11feb6fde4c99d211d0a85e413ba27bb4d25e3f9768d6594fafc759f331e89df840bb43c701d3244a8fbca34c3183d9595b -DIST astral-regex-2.0.0.tgz 1803 BLAKE2B 4d9b3ea46c0d4ab4663c9c87d360f2945dc3b925bf1161b50fbcbae946b2442bdc085bfd9eb332b0a9fbf5eacc1219281232f2a3dc27c626a538007246afbe3d SHA512 67bb4cc35cad4d7b798ea31c38ff8e42d794d55b8d2bd634daeb89b4a4354afebd8d740a2a0e5c89b2f0189a30f32cd93fe780735f0498b18f6a5d1ba77eabbd -DIST async-3.2.6.tgz 150393 BLAKE2B 35142b23b0ac34ce98b00b9a197442e871f82e4fc09fed99e34494db753e28c0e4a6e57eb2268191c6a361659954978f3f932bb5092d54c45b087d10c6054b88 SHA512 86d0940e5c72c822cc81a337c578340b42d6db1a9fb90ea9d39a42108b17bb243e6b592860a4ee04ccd13709b26df2e0bc90cc774af52d39f8f84d138ba0b600 -DIST async-exit-hook-2.0.1.tgz 4662 BLAKE2B ea944060ab9ef15b00f299369eb51fe668c39e4ba6ca1abfa2e2fd5615385b4d5250708419c83e25186976ce239492e8bbe3c797389d97666b4676518ed14ecc SHA512 356d9c5fc9b543b28f03b6b933650b41e676c11e6a2393c06f0e4bd1438cc5d8a8564f4f319d21d539b264490f62b0af6230e51480aeb0ebb576510a00079707 -DIST async-function-1.0.0.tgz 4380 BLAKE2B 0db3373386b471affde1aad4b370104438095c88aa1e3b17bcd060e019a1d31a4e77abf4ffd51504a6b4cd84245b5f774909cab281222af958c2ac1ec66c021f SHA512 86c535f007bc0834d1e8a82ef4361fd046c2aff6b98862f4af2b500e86d471da5838aa2493c2c48d5a619d7903920a62d30615b2aad7b8fd1b67125a4ea760a0 -DIST asynckit-0.4.0.tgz 8111 BLAKE2B 72788d9bbc70592c0d54a77531ab70ba362b94999fd27c8f16dc5d9bdf77597a4de7851cf5c995cd90e6d85d61d93abc9088e4c362a5f7836d3879a50e557295 SHA512 39e8bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1 -DIST at-least-node-1.0.0.tgz 1558 BLAKE2B b888daaaabdce715d51805f00acfb26c1339557097e84cfd8229a3fb56ad4625c2dc5fc0b478a2e855cb8d12b03eb42f1765871b38b648126f8aa994afb4b496 SHA512 faafedec492fd440d8da5e8675ae8b2e25f5e2b53d4d5db459ade87de426c0f1596ce328f435eb2db3a315a69c9645ca5a27486a8a7000e6d00eac16b46523aa -DIST atomically-2.0.5.tgz 8803 BLAKE2B fb25e52af7b2ef3ded53d0130180d4b86dd0f9efdaba76a384a2dac653af86e9b85284b5a2de888a6353d8a4937b755fc9f2d4780377d0e3e55d65ef38d58e21 SHA512 850cc5813e3bfb4047e4e0b5775e41ce7d872b6867f086d55ab1a2f49caadea62e46b17e8584691064a8109c71284d40ba48dc1a41bffff7b8c3a5ec6f0f1985 -DIST atomically-2.1.0.tgz 11876 BLAKE2B 161ff054fae338523d081ffcef9d2a9e4e86d1dba14279de73ae5675de1176a8c99686995304343fc03404d8515ed73fe3750d98b8c493237981e550dd72f9c6 SHA512 fa00df7c55d15bab25fc70b06ed6bbccae2e36a6cf8efe1824401dcfb56ef852d01deefb799e1bbdb2468b8844d103de265318300de989712bd542f7740c31ed -DIST auto-launch-5.0.6.tgz 7058 BLAKE2B 4043627198ce57671be11a3d6d9a5afe41f06e1a6efe80d1c782d552a29ec8a5bf2d5d3493e02c62e6ba8dc94bed188feb979a203d482ba005e2d110d85d425c SHA512 3a0c62026e2af4405ff4479774f06254d10d6961378d46687f0ae10245a31c36067b3bb593715164753c576141c46b9224e1f32a64c911dd06ecbeffd310c614 -DIST available-typed-arrays-1.0.7.tgz 7360 BLAKE2B eb4447d6186c80caa735781e58d377bc1d668ef11b24a9aa8c85416e473543b0009a4dcfcec215c0cdf4d91f5a0e6de23a1f39e352ace0f8f7538e3608765d01 SHA512 c2f52306d48637bfbb4a3369abff4cd93837e745190f7abad881592db4404756d23250a8d5969e5be049f83d3dd1ee2120864b05c4c359ee0c8788ef5036a3cd -DIST babel-plugin-polyfill-corejs2-0.4.14.tgz 20300 BLAKE2B 5610202060b3088b2e947a86575902e65925c6d725106a899aed126e0b27ffab87b9e4fa481262cc82f92ac1955fd6dd46f7d982cab2dab11236ae159af49264 SHA512 0a8d98f705fce78b6ce94f200003d77e7d06980c9cb47b8af27d1885f8ddeaddf483bcaf2a3b29bef3a8f721becf9d8f65180512bb7b29ada96275c28cb284a6 -DIST babel-plugin-polyfill-corejs3-0.13.0.tgz 50515 BLAKE2B ed6c5974716e03a7dd3e1e14a969a90d22262f4baa36261a90a26408b62c65e94cbad72150d27fce5176f7085fa7d1ce7f951e564a04f3b43e3c4c794ff63dd4 SHA512 53e18dc0c752160cd599f84d9bc189517f3c01a741deea3d2a926a4b715aa8d20f2a0c92baf31bf9b1cfb0e9a6b96c8872ea998ffa73b75454214667b38cb6f8 -DIST babel-plugin-polyfill-regenerator-0.6.5.tgz 3575 BLAKE2B 1d6a8b363a4b09ef8202327e53bd0c32a88a28c3306e14891725fa6d15a4e160a90516cf4c9c0986c0df062c86a2ca9eb46559b42754bb538075b54afd6d5f3e SHA512 212a90d9fadb88d53dbc8264ce0edd94fa739cf6788ce894435b92981d1f1077a8c2d37708e611b17affc5ec67eb8369535dcfd3a8dcfcbe538222573a0adb12 -DIST balanced-match-1.0.2.tgz 2668 BLAKE2B b0f099627e450582935d0c1f1bfef1025f0b97e44e299010e81325771bb5df6145c01301954e15fdd2e9de88a6bf85f03898fa393c5e722d5936d1e3381457b3 SHA512 de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f -DIST base64-js-1.5.1.tgz 4109 BLAKE2B 02a934034e313a51f530270936124cc8cf52b89217a0943901fd28975282c7e74dbd13ce709e9b52c2493d403cc2139fb1ae6e5a8c42b9afefa675a0f9b08abe SHA512 00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58 -DIST baseline-browser-mapping-2.8.16.tgz 48570 BLAKE2B 63253f742d6b3fbba7362a2a49f126243f4d5075c336e09291af194bda9cef7f3859d4f980758fcd6cbeb1472305e5ce20aacf594763946646d9aab24dd3d58c SHA512 38cbb704643813b3f512b16c20fa5b261d2abc3b9d33f52e25e1e0900bdf59efb41c52425e1fadfe5f0be9f54b479e5123f51b2ab54b9c05d9495c1df72b1663 -DIST baseline-browser-mapping-2.8.20.tgz 48825 BLAKE2B 2fa4830e0d9f255a8ba196a6432d4b4240657f6f7a682baae0441466e34228221018c62299b72539776c6c8e155ab72c112aa5f4ccfd617c4679382ac526119e SHA512 24c5ac745f8ef0eaeadc432e91b50dd507db2caf665f60a4526401716d93d2cf0e99d0142f92cb33feb01704aba97ce55c1d77ca1c8af604ca4b5ac88b339db9 -DIST baseline-browser-mapping-2.9.16.tgz 51673 BLAKE2B 5fa52c44b7069fef444c832ede7e3314d907620a2d9990971910d618ae7ff4a8b7f332c2e367eeb8fc21be52391c519f1b4f20b502f52cc02cfd8b8505f1fd78 SHA512 29e519741bb19e0cbcdb98bcc6fcda2b535c9e4c74b4199bde4f03904baa8ca4649adbcd4e37b2d99b0d7a1f03c3895f2af6c23aef6878dc764ca9b6bc7a9c47 -DIST bl-4.1.0.tgz 14646 BLAKE2B bfb0daf5ad1f9edeabb6f479822c38b4a52b7ebc1a64a2a29aa9fee111342c9aed36c851255633821a432dcc382f865d7b046e9be3cd4352f98a42bf58d699c0 SHA512 d56d3b70cf604ba0dc2e97ab65f1528fe6d62ed68f1923875a13e21b35e6bd525b44b746f36b07fca9fc12d5b556a595039e0029fda1e64e416e721bc05de1eb -DIST boolean-3.2.0.tgz 4488 BLAKE2B b5df04b391f62a1610f99ab0513a104a8bb35cd068655c66de4df35a65f356cc930aa7b3b793d6eefc57397a45de2a139cc8adc7159db7ca5f43db9bc9af9cc3 SHA512 774208fc63bdb9ff657d41c7d8142c8f1cd125905db2382c0625b806f85693fdeaa0ac1016320354dd7d3df5fc1760ffafd3c2313b4b5a3615085ae9798533b3 -DIST brace-expansion-1.1.12.tgz 4246 BLAKE2B 25b924ec82949b3c2034bac6c75598f441e4d4989bd5488b460cde14b044cb223a1c6654b2f9b3aae4d5fdfa5d643982d91b7aec5582b2652b519a2607e74d03 SHA512 f53f548d6debd145b973543b193c25969b57c21bd8984cc587331f67d1fb1505adfae65e3e364f8c13ff5b5644c99d6dc065a89b9ff9e9317894f72a8e70c772 -DIST brace-expansion-2.0.2.tgz 4372 BLAKE2B 1642d9b8fdc6b5cc25881470da64c76b3091f189588bb478dadf0ec2e7f79f1436ea2b384a5068c242b5336bbeb2a5164e1dda0d9cdcc07053a99eb760ea4ae1 SHA512 26dd2f1f233e8e6501aa88c1ec4d4d21869db74bc8d10c63c5dd9312b5bde300f3f84d8b026e6f28c5d7c20e996414c73ee5250e0407297be318175f705d590d -DIST braces-3.0.3.tgz 13972 BLAKE2B 90c44af893d9e8fe988e9395673e7dbf29b140184a1372983c6955392e7aac599087a41174bca9de9d690ea4e70e7b43b42cc106de7ec30b9011756ff8fc28eb SHA512 c906d780efce499543d88b222e5ae8fbb1dfe90d7c109aca484b1da0ccca78f29772dde0bc3f282dc390748cc6ba9af9163f840def203bf9717350737cca71bc -DIST browserslist-4.26.3.tgz 17200 BLAKE2B 9be60220500dab393582de7c059d5ad1c5a5f3f104ad0d5cb7288fe2fa65138c937c0f98058cceabf1622c3617450efb2e24127b81a82c441df874ffae47f013 SHA512 940514fb4d91141b822903e3fcfe8d82395b0a72c1329e14b604f1eef3477775d220917ceecf5ae6b037687db2c37192f43a990146ceb597420a265e551aadd3 -DIST browserslist-4.27.0.tgz 17266 BLAKE2B a6e71dbdd1a025e942cd40477fb1dd4c873286177ec78c3b0b6713e182ab7575a2a324d98237627caa40221d552f77414f9e60e844227d624f15554df333bf90 SHA512 017550c1d868b757aa2e28706ac3c49615f6b4066206359d27d8bf65c8f64ba418223931eb638a49f9e86e4ae207cd42de5e30d2b572dcdb788da4c196d604a7 -DIST browserslist-4.28.1.tgz 17351 BLAKE2B 29bb8d57c7a2a55b62861a9896c7c7bbad41c0da6626b8be6476a61659e728f3e98b3e926cd990aedf2d1213fa0cd40784bfe023650f869f3365055347a7ea0c SHA512 642e417742e02578301aa5249d963fbe4510d38afc3579c9677c988b8bc3992899982fe975237435b3513f16696ed3b8b807c350015f7cef086683371a3f0890 -DIST buffer-5.7.1.tgz 21239 BLAKE2B 971b36d44d161c185b8c1b21d89b2519f6bf48a6bf01bae5cff926cd5a8dbdef4470d216cb16d6ba94646c60da43013c2319dcab8f3f423698d7999fce5d87df SHA512 10773220f050e0148696f8c1d7a9392a0009dbb088b0763fd8906609145ea38f32f6b43731a533597dca56505ae14eccc97d361dd563d0aec2dd6681de3bbb15 -DIST buffer-crc32-0.2.13.tgz 4167 BLAKE2B 36d1e0f8c01a1868a961a620e1acbff8d5bd3d8a634cbbf9e869d65fd7e5e27cf4599993c621d2a855c9187bcbabb35c36bc69a619ff69a2f9175a2ca237364b SHA512 54ef47b7ffa9dd237b48a5aa72b804ce319b4522584f1f90d694d00b4c2b5aa1f1d2fa49ada43a1ad1f1f2dbdc835ae52b56f2854e6071cc603a08fb0744c391 -DIST buffer-from-1.1.2.tgz 2313 BLAKE2B 58c31654e7bf0edd15bfbc19729886c3657c0532641fe5cafa4976c6b6a825f7eaa5195aaa3f7cd3b291cc581c2117d10aeeec625ae3b91568a13b21f6fe8fab SHA512 13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d -DIST builder-util-26.3.4.tgz 38282 BLAKE2B 1bbbd1244c1c1ad4d881be822e0820377e0232b294db584ff9118566052161381ccac8ef64e1b6e5ca72caa06f047dfb3660c529b1e0186ec0d23b09074b1222 SHA512 6919fcf2660c92d1f1cdda83305e80ca3d2b2a85fe668809ef90a4ed1ac8a9b63f69dd0706f9d2db1038b877f3ac6af90f668b2f7bd4e8e0441f8a7428c5765d -DIST builder-util-26.4.1.tgz 38287 BLAKE2B 2a078e4b0f0df6a84efb2ad5315dd72610d14e727b1bb151884b0144c4c3fddd505fe53aeb3d12c95de609f6d38f19950787ad5e4318b6a480c82a353bd6f047 SHA512 165807e375d9e74c3752d4b545518358ecfcbfda8c5cf0bbba932d28cb4112761db75395a12eb535884a9bfe31f9c21a5aa2535ee6b4f9554f23e7d23c65cd23 -DIST builder-util-runtime-9.5.1.tgz 44661 BLAKE2B 99970c38303a1db9235a0ffd84e07589f85c91307969e4574e4485637cf81b958ccd6df8b97c4213e59bb09dcc34a00b6b395d049c569c3e56ef75ffc6f129e2 SHA512 aade35b4c7e01d39658517aca8ce437271f20c858d8331efb98da30dc60ff62686a645b14d4cd5e864230de2e7951d7f0ed76572c5906c0eec0723299891532d -DIST builtin-modules-3.3.0.tgz 2348 BLAKE2B eaccb4fc9024840de0245b72545cc2ffc63fcf1118f2008d7f8642f82dc911a181ecdee8e0fac8bbd2fed917696a97fca2738e7ecb80abebebc5c2b13d80a9a0 SHA512 ce16820e271d2ee58de546cde4832716a34c84d7e8f75f6c1fce72dbf79afb9620f53b1391e671a4bf892dba7a7206054b8b112e9dd85784bac83baa5561d83b -DIST cacache-19.0.1.tgz 19433 BLAKE2B d670627108d8864d2db782697c8a833d462cb4b0ee4b6c173087cac779aa40a7c9c1e7b28b806e3b95d9477b32cb5b3e88650bdea606b91ea7f54578aed10e0e SHA512 85db14c6e9570a2e524c877bf2f455604b43023abdf48080524b4b4de4d8b0ba1313a67c752d1cf2958d0b1c1dae4f587c97a86c365cd98d7cea10ffe5942015 -DIST cacache-20.0.3.tgz 19422 BLAKE2B f31ccb090c5185806a8d40c64dfbfde7f97eed5788bf3ba3dffe0d6037c418685526a95b62c424cb71191e343bd9c6abbc8e062c7ffafd7ad0f012fe380b6483 SHA512 de9529e1ef21bf4ee4d509628d9bba2a7edcf7e6695969388f717c377c4fb8213150ba1ba89c9d2983938f5153ab9f2cae426c5ef3bb2db1801f80b4654dd61b -DIST cacheable-lookup-5.0.4.tgz 7231 BLAKE2B 541e7ea2e87481be672286ca55636446308855622a28991cddc506f0285dcf96adb8b6cc69296b24f88147d251d53d82dda432d8ee8d352196e6b5d73f908898 SHA512 dbf90db1c3e1a5cc6b3a280c6736e2585eddcfc8a585bfe72075371326625d65e97aafdabbca89f1585d7ed324b72de7ec68fa1c819a9501bca2204d07700980 -DIST cacheable-request-7.0.4.tgz 5944 BLAKE2B 573e763c548fe67859d8fa375abc8762a6b09435cc862f86698794c7d2ab5fa0415026ad9f11fdb07a097c5f779587950074f3e183b16ac56e2f9a1970c8b6b9 SHA512 bfea7aa2782cae9d324c66c95e38313e8c36f832fddc30123f891708329bf3f6f046db7d384177c218209240e418dce0716cb65da1786bc9d98250bbb8496c72 -DIST call-bind-1.0.8.tgz 7779 BLAKE2B a29d910b8f10dec311c826093cd146994dfc06ad5bd7826cd429b25b7ea958ed887e4c1a82d3b99dd6ba6c4ac4a3ef15144627a3c866d2336f4b0e31b94df515 SHA512 a0a95214c70cc29520d9e767921438e78c1f5a253fba5dc29097bf3c41dc4caba25fa4696de854885317bb5dc76a5199c5f530090cd91bbe3b617067d629bdc3 -DIST call-bind-apply-helpers-1.0.2.tgz 6067 BLAKE2B 089f56dab75116f8cc39b38c715b72f9eb01af6fd1cc6564bda2ab2f0cdc22b8c1e5105cd78b3351df1069bfb9f1ba47e51e84fa6e89a5a6a9a181348376f9dc SHA512 4a9d5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31 -DIST call-bound-1.0.4.tgz 6382 BLAKE2B 55ae21b5273e478baf74b5da5ca35ff116f9078fba36a5b6381912b394e1a3599b8b9ecebdcdd0d26a409ac026d31338bdbd1647bbde8c21723dc519cb8faa02 SHA512 fb2b3df7b53dea9a382b1fc0069042aa103d12ec49690583420ef6f791f8841a61bf72198346e804abb0629b78617a7a319e4099942753fb72313951a5a49e8e -DIST callsites-3.1.0.tgz 2433 BLAKE2B 6d250029efac24eaf7ff184d577474abe3da9f166c2355cdc0d4660461a13ca84bbfbaec0c8fdc24b0597184471c8be11254108e29e9cbe00de2090c291f4468 SHA512 3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69 -DIST caniuse-lite-1.0.30001750.tgz 348931 BLAKE2B a92d16ee622b4643e32a1223feb9571c5eee9fb6c87073a500c6710c8daa97c73a3414139dc2d366aa8381d2ea486befe9cdf29878ba1664be9ea913c1207870 SHA512 72ea26d20e6c757eabc34d2a3a82cd485089f7f99822cb92380fb2ce90f0f1ea29885a9c57042f647aa8bf4be61228214715fef9c7c2d158351bed48cbf992a5 -DIST caniuse-lite-1.0.30001751.tgz 348985 BLAKE2B a087efa59c353af8a9f18f112dd36c4b69763d95db0b95c030b899274e1ec56671d7dba04bc01b77de4b92c6560ec64219e4eb9875e7473560b0f34eacbade8a SHA512 03440986e8342f2eb8222dde22a1eee57e7579b967de4e324d4918d63f1daeaa561d5ade83f54b8a3378f1c6756d83e2a8e42eaa99082a7cebfd497c57ea7a0b -DIST caniuse-lite-1.0.30001765.tgz 338030 BLAKE2B e27477f93a2a327ec301551b7baea546e3354bccab444fd8c12023a31c68615b8e2adc344b12327e6bae2f9ebd4aa2b7407556008a6055c7c68e975162ce2fa1 SHA512 2d670db52c99ada923102aa6a4fe2a760d0c30674ddfaf03ed7f17bef02a39ca8cbf44719e5a9529997657afe6051ebca183313993cbc3f80eec3ba2b0c1d4bd -DIST chalk-4.1.2.tgz 11577 BLAKE2B 62808a449112472a7ec0644a57ed3372a88e62492467d5cea78a8232a1e2c2fba1a8e55f070cbbfb247c3dca517aafebde31f13501a22e66b0cfaa4359cb1c7c SHA512 a0a9db845c91217a54b9ecfc881326c846b89db8f820e432ba173fc32f6463bfd654f73020ef5503aebc3eef1190eefed06efa48b44e7b2c3d0a9434eb58b898 -DIST chalk-5.2.0.tgz 13351 BLAKE2B cb2ce45bca585c05e24e06d397362a67583908b73728473c29a415d0f96c9c80d91051a8c5ed465736390c982cf0c2ed89b497dd1c4a79a9a719704dabc1abd3 SHA512 ade7b71aac3f9dacd000fb89244cbe6af765ed07d931c52f98720a80466418bfb1381cd1beea791f1a3a2c7b8c71e4b139a6ee24b266e58a7ff7647d78c98cbc -DIST chokidar-5.0.0.tgz 23399 BLAKE2B ddf243b92760018d468e2cee59fc20a09cc4810c8a4fe3bfdf9b15786c6fd78b2d19f2b3ccd40f5b164fb554544f298a2e7560791dad9c11581e90570483ee47 SHA512 4d0326737c3ee40c63a4bf22222c1e6c5ef77510c5e1f04889e02a1a7f5118259a115c10e856f67067b7d589ecd11448ce28b982827563bc5b330a354f132997 -DIST chownr-2.0.0.tgz 2243 BLAKE2B 4e9052e4eb7a6ebb87cbd51b1861d78612b816e6bb0c6253c37616a914a8d4400e335b67aa30c759779088d501a371a7a0c2b4d17af7c7f5c20ddfca3c259bdb SHA512 6c8a26b43179286a5da2090b77d56ca6f17393d29fa72c86952f18155665ed318f0472f9b2720e9f17ac8705603ed790f5be04c9d97ea556c8c84d4372f09681 -DIST chownr-3.0.0.tgz 4405 BLAKE2B 57b76bbbae9501903ded7f38c85d84b490a5331bb1d9f3e8a07826b05a50b3c39455dd9ae8ee1c8065779b222f94f21756b5f3782ff211b6ace6bca0be27eaa2 SHA512 f88c7363d05939077f5ee60f466aef1158c5fe7aa3e64813e2412aed5a1fac3a0cd4cc6846311692b082dc4b4b8b9f5355ac314c09fea2b27015072ba84375fa -DIST chromium-pickle-js-0.2.0.tgz 2915 BLAKE2B a53e7f2a775fb1b3e5b5679a44924e82ce7b54711ef28efb564c4e3740d4e75f7cb629ee37c5284ee1d05b22b4a0c7329acda4b60e014d8705ca41db9cf0105f SHA512 d51e45868fa306ad030f276dfbfbc75a3e4a24d24229d01128e0b06547a7f3823906b796a0ba912c0347d54f3b789cb5b620123ed3271aa249ab466c2e844f3b -DIST ci-info-3.9.0.tgz 7378 BLAKE2B 85c557da2875b394b0e8adead42fe71f6435a0654a8c2d07a02850384fb669d2adbc127ed4ef54a921234c592a97719bb2d10076bac67f50551268089e0f55ff SHA512 348c45e7986fe274aa42cc2401e88e8b5afcdf1cbc26574e1434d68ae839e4a06ef499db96771dd94e958879988077f4d533d94bbecd24184130a7568fd1d031 -DIST ci-info-4.2.0.tgz 7979 BLAKE2B 89808b618d56f64f5fbc81c389170e90d5d587cfd1402ef01ac94b7f0ca31212bc139f2c6a47b4843a731b4e6dae83a9942e456cb45ac4c8f9afdc98a424033d SHA512 71863d9b2a64b18f0d46a8030755c3d518892f7dfcbffe79d678b29c54c691938ed8b1ee0763a6398c4321efedb4df401f0aea76e9b5dfad06dda95dd16f640a -DIST ci-info-4.3.1.tgz 8079 BLAKE2B f3aba9b660541536a4fa0d09bc60372e7b1f3695d5fa21a95897250ce66ce071e09a370b83df9e87ce2613cefe2a8f7d2774ee67cfbdb8c44750f4110090820a SHA512 59dcb6220bbc39c069236a5978f679a168cf0b7f2d983571e562945cac252d8900d28ce8f39b0bb0bbe405b067fec65a482305386649d787ef5bdb79fddee474 -DIST cjs-module-lexer-1.4.3.tgz 44372 BLAKE2B 1df8f64b120abee5c14df5c357925e21247e00146fed4508216014160cf1eb2be6da0d1b4f6ab2b03332aff00368c49123510129f6165035e9a891703993ea2e SHA512 f73f1365a18cd697ecc18797ad4a733eb931f149d661d849725b2260c9bac7fc39fa737ef137ff2e70207cb1900a6e7da803b153c5b01c4ab6bcdc05ea2e23f9 -DIST cjs-module-lexer-2.2.0.tgz 46214 BLAKE2B 0881c68a634cb6d909465d12bb982451fcf2b9aa568a439612a8ba0fde44728c854dfb55bae396e5f70d73d0ed6dce71d1123dd5f689e7f88537ac95577f6175 SHA512 e1b1d34b662ecd4beda0b8ddcbef7cca46cd0798d2d3ed3b12f14d5deaea65027cf45ec323a113ece428fc726e5ba2b4695b0a03d863f7f4556f691054eacf0d -DIST clean-regexp-1.0.0.tgz 2493 BLAKE2B 68339777308546a7f15c80581d10888d52d5b8b295255416eed7b3bc70991d078e1a2c2dc46822b110a036f9728c99513e611ca762c948ce5b9c346523a24377 SHA512 19f8ac119109bf32ab9865a4bdf860cdccff06594dd5449ea83d95ead835e0e00e81a083d99fcf504bb19c067f9cfbe6687446edaf32efba754ff2114380f51f -DIST cli-cursor-3.1.0.tgz 2134 BLAKE2B a82f7e1e501ae5bfaa719257c13b53e4f62bc01021b62e4daec975304a86ba15b9b900e020c8eb2af0199b3cf0f95ce2c72dba8c59da367a355de280dacac16e SHA512 23fcc7030b0a7fd16a1a85cce16591002a1bf7e48dba465377de03585e7b138b68a2e46e95b0b171487a44a5043909584c7267ce43ccc92bcf35a6922cd7cb67 -DIST cli-cursor-5.0.0.tgz 1927 BLAKE2B e7e2387af849855082b60752ce4d219aaa994d42166be6034b32d492f1898bc8253c7df63a874a9cb3c10c8113d864ccad77855f5ab274fa70b7ba75eb9b3e30 SHA512 6828f83b9c0acacce33260d3e2d663f77931cb274dfcae733d64827baff4015fc0035a6a7b9641230d1ad997cf415ee52f9ff26f91ec52b789e94140175b4443 -DIST cli-spinners-2.9.2.tgz 6598 BLAKE2B 7708f6867d9ee13bc7b9189d858035e1bfad7ca7c063b4f4f776b27b81cb4170aa6dd20987be612086e9e60b88fc13c715aa070d5eacb28b7291b18f0fa4fa7d SHA512 cb0a95fb9326c8be04ef26d780acace03ba065b5f4142e8b9f0ae18eeca42239caf64f0e41a710edac462a78c35d63619ecd31a2dddb648e61e791fcca8f5c26 -DIST cli-truncate-2.1.0.tgz 3513 BLAKE2B 7cafb0ab1a1001a7e704e3bd815a1eee7ccb8dfbddb27fa86aa9b6d0810e318770c4f876d08954a46272f7183e6bd2cf93690c44978ebfe85663f6ad55d6012b SHA512 9fc7ce8b1c030fa6ff39b8a7cd3ae9d59285cdb82f299beecff4ef7a39cb9f56907c2eabe765c4c7ce459ae0bedc723e24cedca0145752f36a114d8f1d5ac7a6 -DIST cli-truncate-5.1.1.tgz 3918 BLAKE2B aa81a035e1011396a24ccf5508173dd21d2a99cf646088f5256834adf35059568819deb1b4f4f1d794eae11574d0d445ca948feb9c1c7cbc38af9c16d43fe8f4 SHA512 4aba0fbcd1f152793ebc85bf74e49f36a772d6c3c4164ad393a4d4b6a2c29c1968dcded3358624cf337bb920fafa3563add3b8fa9f271fb2731fa708bd47a6e8 -DIST cliui-8.0.1.tgz 7907 BLAKE2B 537f8e722f662892955378ccc63f13f95375c4400c4c9dad10cb36a304d5edc26777fe482625117a758af391611fc289f6172883d180fb7eca6d04d46c122596 SHA512 05278d9f2bacef90b8fff350f6042dd7f72c4d7ca8ffc49bf9a7cb024cc0a6d16e32ca1df4716890636e759a62fe8415ef786754afac47ee4f55131df83afb61 -DIST clone-1.0.4.tgz 4457 BLAKE2B 8394aa2da1919a5cc648ba533b1cb6868028d9fb6ec0f4334cd500ae8cd682846045ed236045f76862609f9c75174bfc1d4b5b6b71ff099483ae43d32f90bc9a SHA512 2501d9d90316ea5dda1ff8fac42a904e163ff4e1f80fff65b37e1c8245018847a87114d4d38b477ca3c1b142b53ea64251033b1a20342085c94ae5c723ae0a6e -DIST clone-response-1.0.3.tgz 2231 BLAKE2B d897abd281864f7c1c79be257e2323c41907b4410232e7d0cb5f2d01e625b9043ad6ce14f7d1dba964c7520e605904e74baa63c80c8302df3364a37aead2dc5e SHA512 44ea0bf788c91f675454c2f663fe4f10335a48781e39d48389c5324bb8b3705eb71bab1373f1538cbb9be1bf0897d4bc4b46de39f62dd13680e6abc52bec34c0 -DIST color-convert-2.0.1.tgz 8996 BLAKE2B af082177ef8bce3813d1ad275d44e223da12baaaccf635812bfc4ec5d4d94904128a54aeb866280199839a33abca442e8d0f4fc149eee9977d68bb5790275722 SHA512 4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529 -DIST color-name-1.1.4.tgz 2868 BLAKE2B de6a44ac19f422e278724b9f945a8c03b804b0151810ae81ce1bb794966a2e0660623e5d2c071677d9799d451afc809d659753d117fc1658b232487e2856d851 SHA512 74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40 -DIST colorette-2.0.20.tgz 5063 BLAKE2B 2c954e8bed6530fbfcc1170ef119d777f98f43746094d11430cbe77f90599eba5ab1133058bec8c3ecea653ac854dd496efcc1c83511f92fda78d3cd2b5de6ec SHA512 21f103c70a1622391e5cbd5e5dc0e2a30e146ca8e12ddabafc4b92551f4630deca547debf6043cddeef786ccf535dd53de28dde71bf5c1c59160ef83ea4088db -DIST combined-stream-1.0.8.tgz 4068 BLAKE2B 1ab689c244af0a7a41368f8550a82232753d4b69c4c2d11b52ed0b8c863b124e3b667afbcca4e953cf8f3cf07c11b0a4029a476d653f110aa0c648adc012fca8 SHA512 1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476 -DIST commander-13.1.0.tgz 51398 BLAKE2B 7d4420fff3eb05633291b6733b7ca2ed092d387de9f897061f275881c4b690d6eda002c9a47061b0ec8e0edeb95e299bfc52679977df276b6fa233d9d5f9de19 SHA512 feb15e0a934941b852663195c0ef51155df13ea6e71114bc326210cc2b43ff397a82926e57f6cc2ee37dda81b717b77ca031071d1aee8d25cd52bf1fa639ed2b -DIST commander-14.0.2.tgz 53082 BLAKE2B 10214c4e2c6950a557befe25f16060125504e2715785187bce7cf0f086c2adfbcd6c784029b7ba450d5d7c32e5eee1ba364e2362d006b88f6dc94c0ac46e0dcc SHA512 4f2c2858d3516e1a03d015ecd4fdd9112716f16e622ab9db8ad848974607fae0a605dd10a4f380f3273cd834b704813931ae859c1554b09ef05540f3e1dbce59 -DIST commander-5.1.0.tgz 28908 BLAKE2B 17d30da99613ab4583f1d41cc07d8281c4e6122690ce6820b83dc8e94c038c29b06552768b4bde81b696bf60b1bd13e7c5bc1f1eaef12279c0ecb59927ae9fa9 SHA512 3f40b2b0d0d0eebb55c3840842d9be311c55ebabca152be5b10bc6617656477a855348e530a1d9659830f1efbc0d26a1e140ca32a9e49d10d0cfec6e41743f66 -DIST commander-9.5.0.tgz 44526 BLAKE2B b36e0b821c78309551ff0645da9fb8bc6735c1220907e28323b6f9dca8b5c89bd0da645e79e5f93ae4d686bb99b403b3ad9451284bab9ee5d16b65edc5843be8 SHA512 291b3b5950ca83ce8f5a2b80aa10eb0109d35d92ab69570273abc574bd78aab67f0dc5b0b91a3b5688985da9573bb4b918aa6a622544c026e01437f134728905 -DIST compare-version-0.1.2.tgz 1015 BLAKE2B ead7b74c38f24482f4de6fe9eb43cb8782a28aeade362a575f517013472689bd3f7cf2cbd661f8fc4250c0f73fdc8eb95c3e244e0975fb2796b50ce35a115af8 SHA512 a490e1e7fe30ac49d75ff556459bebb8018793329daf8eb3d753a54cf37e56b0139565a148a7b03422757eeb423b90bb7890779cf305640d4b798b5c15ba19d8 -DIST concat-map-0.0.1.tgz 2263 BLAKE2B 4aedbc8e71d11389ca3d38028ad066fe83cf15618cee655b93c2fa0be2f71c9cfb283a679474ea659864fa6bb37b45b8abe40ac1cd05116ba670aa7276c5ea5a SHA512 fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa -DIST conf-15.0.2.tgz 14822 BLAKE2B 4e26d9507c040a762309b3e9832116e0f23933d16ff903e6846b12280e70f6af1249b7c087d6b05ef8b97f40434e78d2b759b97230b9f0b8d19de93f864baf18 SHA512 2414abbad6a909a7d3add745f5d1f795cefe4f6b41c9c185e2e3e423826cfa0e2f2cb1211ba4597058b7689779ce7b5d7f9b50c407a326df1d8a192843f79227 -DIST config-file-ts-0.2.8-rc1.tgz 10005 BLAKE2B df164dca7b88f294b61dd9cb4c6d87258f0403d920c5e664e8d9877cd4852a5a661165bf593fc432125dd12b32429124351b3ff49a37b0c6a9eb411ccdfe6b7d SHA512 1ad34409b548f366d3e1188323305256e4caa121ee7e753b09eeffe366e459925914b8e60c5d9606956cbd19212827ca0674c16f7a99ac1c0fa45054fcccaf86 -DIST convert-source-map-2.0.0.tgz 4952 BLAKE2B 9f043cfaee24a932390b5e464aa2629e7f9f7cd1bae5bfd5c89c6ee4d8b702332fae6c8f62be005ad48d56eb0fdb2166b67e11496171fc094cbf089f8813b960 SHA512 2afa78e7d1eb576144275080b22d4abbe318de46ac1f5f53172913cf6c5698c7aae9b936354dd75ef7c9f90eb59b4c64b56c2dfb51d261fdc966c4e6b3769126 -DIST core-js-compat-3.46.0.tgz 68823 BLAKE2B ab50c816d698b9ca6677e11d8ad31f96eb607bfcddfe1e47cd4661079ed8201cec860287961681b936d717a7ed2c34ac694da323eb6e450ef4e9ebde693f6e71 SHA512 a7d84e6c820410dc5257cc48bbe57af098d2780460e9454c1b9991f8911482e1b7b08e8cb224b59e3cf68c79b2243bc0fbc8d7feccad9011eea7a93184cf656b -DIST core-js-compat-3.47.0.tgz 69487 BLAKE2B 6eec720d671e34afe4e2dd9d9d829c6e3d95c63d99bd3b57de69bf6c3cedc37712d3192e285e93ef0178f8753027a76a3eef606e34e50e0d6c6c8649b9ef22a3 SHA512 2067eece767f9fb2a9f7e9f2a5a98186fc1dc0bb16e8a0bc20e694470d9da002b97bdf001b769c54b761d30a0e9c4a827d4b52f95bbcf36244e24fc3026dc8b5 -DIST core-util-is-1.0.2.tgz 7016 BLAKE2B ec2e709b1fd63285bb15599eadd2efc5c805fbc5b5df37c6076d70341da5d0f5ad5d6d7c604a6fa53ed3530d2e08542d3adfe5eedcf90a9d78edee103ea86691 SHA512 de5ab3e588d64d89d6e9d9436b94cb69309c4a17daaf57b8d2b99c255c020490ba996945ba3d1e0872049661b5839932b89fc60fef169f814509ccf88093df69 -DIST core-util-is-1.0.3.tgz 1897 BLAKE2B cda43bb1df385b86138091f006ec075be1f643de21ba1c310fb68ee4ae5217cf1b0432a3e27093b19671e0aa626579adc7abf5a209195740174b59ecebd1c6ee SHA512 65006f8b50dca49e060ea6a78ee719d878f7c043b9a590d2f3d0566e472bbddc64b09a2bc140c365a997f65745929f5ac369660432e090e6c40380d6349f4561 -DIST counterpart-0.18.6.tgz 13687 BLAKE2B 6e9f0de3d2faf96eb41d6b32955c6fc4441bb9ee6f409190f43145d15fd0a7668b3168c869a86125f4c4a6a66a23fbe890cfba1cb60297d30f4c5d34b85fdb2e SHA512 7002030186c2df1f12d830dbbc5109e13ccfb4f61799adb9fe47c091f9a9acd2e590f59e5f849d529d5cdb19257e986a094dc79c36a2bd1e11dc1ac061fe4e30 -DIST crc-3.8.0.tgz 19779 BLAKE2B c2c5f0ff36d5baa23339bc18a07f9c4044b409d4b040ac35c8f3bd5afa3de5adb1fdc8c4c5df90a067fe6adf68bfb64b0bbf88a77553aa87b2f659e904be3fd4 SHA512 897de67e0713308ab764a2c8b151406efefe31cd7493169b00641bf07be3035a374f53c8629adb6a443ae5ddc8fb61c61edea748a90cf4f62382824ed8a70505 -DIST cross-dirname-0.1.0.tgz 2732 BLAKE2B e3d218143848b73e7d52596894f087a3d38746d4803808f55ddac1f1c81cf4e8d6a846de4a71c024c1a2fe093606578b8d7bbf9035ef9eb5a6c1e84064838a8f SHA512 f91d3cfe82349e5def7cf72a7ed651a72b64b015c3cce52f781abf341571d2c529d5ac70ccf42b2a29cdc79c9de6cc4fbbc8f5c08cbc01f9d543ee5e15d85ae9 -DIST cross-spawn-7.0.6.tgz 6255 BLAKE2B c0a58bbf4b04a65a6a9a22a057a1a508305af873d2f582f0634ca4120791d84e3f90a508eb9b085112b909bb8d2ab63f956f3b65f329f2e88a208d1703af816a SHA512 b95d903963f69d6ceccb668ca7c69189b862f5d9731791e0879487681f4e893184c834e2249cb1d2ecb9d505ddc966ed00736e6b85c9cd429c6b73b3294777bc -DIST data-view-buffer-1.0.2.tgz 4903 BLAKE2B 1c374f10e252025bef5c1fe6ae8b6eaebb721a56ec206892d42fb288cf36b53f8bba8bd464225bed03434fc811615186805e0a6fb7fb36108636dced131354ec SHA512 12628ee55dce2d7875aed2b6c205d16a7b1a2b5fe6b557535048842345bc464be04f4e647f1687dbd3e588b9e92cfef7c983bad78d90ef640d6bc5b1fc0e42a9 -DIST data-view-byte-length-1.0.2.tgz 4863 BLAKE2B 7c8b37c6bb21b9dfe10078cb0e03a70b853c2a4b2fb5ea5e16a9edfee7824a3a493ef5bd141710d37b7a7f5c0ed35cbf9f60c387b8e009931330e6e7387f43d5 SHA512 b6e8466c4e827d333dfb900d19ffa841bef62b2ff4facdf1294a47bd285f8b3d91c4c16014f8ec5ee44b05532dbccb35e5ac1ee394916fcdc3eb01f87b0eb095 -DIST data-view-byte-offset-1.0.1.tgz 4779 BLAKE2B 2e0c0e51f0106df625b9c9d10f387f1af9b38eb0135984098691f70478a35f7accf1e194f2328ccf06e544e10b414be40493a3b216b91dfceef071bf0c296098 SHA512 052f0f7e6b431a7ae061d3a89c665074b66c95621e08614ff6da5a9f4862d42a3666bd8d2800ecbc6600f17c6e1bfe145a027a0a3b6ff9826707a30cebd40695 -DIST date-names-0.1.13.tgz 4205 BLAKE2B 17050a92f8bab9dcf139bb04cb578fa41e0df2c3bd42befee3540a63ecdb6cbdb7e242622f35560d9a9bb27741c1e69d0abcd8f479176d8f7d595be00fb980f9 SHA512 231c68783f6d771f295d5726a9a4653efad722c4ab4ab219cdfce53a49bdbbe872ccaa795a4fe876df4efe077b39c933cbc9ff587784a53549d9b17798c5782c -DIST debounce-fn-6.0.0.tgz 2850 BLAKE2B 70dd865daa08e319b9c424c278b7e8a5ef52e8a7d2ecd62c2350a7ace62120cc7135867699744ac793dca8b619d304e257b254cc94db8c045b7687b2785d5f81 SHA512 ac1316f85d935ebc81c01e7843477c76b34423e4dfa12f49a4d4c0a15a6e91b5848635d0ab8af248560b6aa5cc157c1dbfad596f6387b63e5bbe24a88a6ab145 -DIST debug-3.2.7.tgz 16872 BLAKE2B 20ffd38690393955d64d7792cd55c4981b11274cb54a9792c211d6a90b629e27cf7e52b84199cac4c2df1abd310cefc41fe9dc8e18e4a85df5f57259e3413c92 SHA512 0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d -DIST debug-4.3.7.tgz 13173 BLAKE2B bb3a7a77fdd0251606ad83accf1c195a8b490b65deac660c63b1552799bd34df3b2f029467187ad63e263ad40a786232bf0f85e19dceb1b59c356d230b53bd6b SHA512 12bda773f1fb46b3176411421229ba4c298c934d99f2f2c2d916e2d4a101820a68d1f4ba9744b59e76a9c26222df25bff863896a9d4aae0e30d0783cd280aa81 -DIST debug-4.4.0.tgz 13390 BLAKE2B c965d39e8ae4511213fe01b9d63920f500013d8d039109d8ad4ae104a441584ee7fe6a2c0c67a4c71566da039d511ad3b3bad15b9bd407266a90525d827bcb10 SHA512 e964d9fc8c4263f4fa0402e8647684e1cb69f719be679918fe9cd86821d115ec958688f196b9bee3acbaf0703a86bd1373012cb28c4d8831142508df3d9fd160 -DIST debug-4.4.3.tgz 13449 BLAKE2B 0054530119fa579348894d41b9dc93fc0a3249b9bb9775e926181425105a6726fe1925f1043e078d9fd14224b46445d4d2008f5268a9ecc58a92779d42fe4f50 SHA512 446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8 -DIST decompress-response-6.0.0.tgz 2552 BLAKE2B 20fa1fb249cc4e686ec51373d56af76fac0a6c442189d13fa014cd374b6666ae07793bf9f14789a4ae61bf50d064937d3dc3c6e5d4901e7f5b8ceb21f87b1fbe SHA512 696df9c9933a05bff8a099599dc307d8b0a866d2574d1c444b5eef137868462a305369161da24a1644810e70d1f9c9bd27ef5085799113221fbf4a638bd7a309 -DIST deep-is-0.1.4.tgz 3400 BLAKE2B a929da8796d3c9524904cd58b246c83a52aea0b6b5794c1b0d9a2fb41a27d66a7e030cc2db25d302afc879307f06a819c5419e62234ee70c19a16c418a17ed84 SHA512 a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d -DIST defaults-1.0.4.tgz 1978 BLAKE2B b3153ea30ec30afe122ff08b96b840f6dca475b3173480edcc6a96a15266223a8bf37054eb300dfd6566bcd725b69b1a0798956d54f680420b1eca9eff2d56df SHA512 785b9a2e8cbf4716a5bf692bfa5a8c9549eb0d657ede3e299633882602c8848d39f0841f589eef5e1c84207bbe1ed0bbdfc9251802d8c4e2833b46d03f7b60f0 -DIST defer-to-connect-2.0.1.tgz 2428 BLAKE2B 49ea4ea2c30618937ce84851748366db3256427e9109b44edc1b0106280944b6ea01ad45cd9f54f00847821462bfadd899293ded19bf7a7fb4001105ad9be3a9 SHA512 e2dbedb5ea571b555a606ad189b93913025dd6de2e76e9d239531d2d200bea621dd62c78dfca0fc0f64c00b638d450a28ee90ed4bd2dc0d706b1dcd2edd1e00e -DIST define-data-property-1.1.4.tgz 8913 BLAKE2B e3383e3df351b3ce5c5deee84b0ed0822cd7d8087a2546ee6e49af9ef18c5cbabc6300937863dfe953cef1b7c245b3c184a770b8f040d3414682c733e4e10297 SHA512 ac132f23396903cbfa13e489668a3ef87018aac2eb920ecc49f2229cc3c5866928af0ed7f9d39754942cf904faf731a4cccc9f0e720c3765a2775f8d6cbdd3f8 -DIST define-properties-1.2.1.tgz 5203 BLAKE2B bed915fc3ad24739e89d80d4a920cd96e8aa941cf694a953084e44fc33b5234480bacd2705c43558817994222be3e22242172eb6866b56b32870876bb5d3ef36 SHA512 f109902aa10048b7799f1d14d41d6890b1256d4baeb6d27f0276264576db6c60d687ab92db4f048c3e17aaafc8f702bbbb4bfa3b4f178535a7b795ed11b47a0e -DIST delayed-stream-1.0.0.tgz 3464 BLAKE2B e4004bdde9a3033352690d09c063cae4db048ca8070f667c07c57473e334903d26860b2cd4ca2fcfef2234d8eb4ed34ca1864b3332db06c3dff7ae6cabd15b4d SHA512 672483ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731 -DIST detect-libc-2.1.2.tgz 7776 BLAKE2B b036f6d45c8858d8d9b97f4788bb4fb02b2bbe8b7c09ea27b9b9d8241acdb4b3258c8401ac1a535c46e9f75a65f2bc962d53ac0b6230cea4df36578cf013b828 SHA512 06d8f604e38ef37a375b21f9f5ef0c817b3111055c6ab9143a9118aee6c1d2eaf09cdd74c90dfae2bb22072535d67665a966199b4e62fe87fb8a8e26ce2841b5 -DIST detect-node-2.1.0.tgz 1609 BLAKE2B 1aa7218bc0e96fb365d91dbb7778f096f163fc41edb605ebf207e29e7c7333d2361b2ae5f1367bbb9069c73864ee0056ff20f118cd8120a1078e90aee2b7e045 SHA512 4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee -DIST dir-compare-4.2.0.tgz 44639 BLAKE2B 65d0cd5e7113f2e5574f3f282b9f0dfb6fbfea20d4e670ec721a672c56e8e542502c76449c7075ef23254708aca24e9355a63fe5424e4ee66c2dd97879fa2a43 SHA512 db130298ea0cadd4083c776c4dac0409d34fc2554507dcc6733de4ba19813ba537a14f94423b2e7b48bc6b22caa6005c9be85c5cf31548650df5dfa9bc9ebe55 -DIST dmg-builder-26.4.0.tgz 111638 BLAKE2B 02078cc2bc246863e851e66fb17ede27218ce15934fc2fb475a62e427445822433b315f9c3aa2e0c4a1db65ac1261f148a9e1cd6382cdf75ee9c7b951c547fd6 SHA512 71ee0e827b3854c7a2b08b8248ad02eb6ba61b4945cb4d768ddf0b319eb0fef78751e5f87ea7c3ac67be1d35802c01302ba27028ff9d84fbe2ce102b48eb056e -DIST dmg-builder-26.6.0.tgz 47402 BLAKE2B 3e2430431d6ca2008d5038781bde5f30710503b365d3e9bbf0997c4e4853928125fa36fe5d967ddd89fe0ebef9c463d8a0b6844f754cc590356e8b78ed4279ea SHA512 2241a538b7c9deaef2f6268332735202b0dd3e0dcdb71f0fb3a68bef24c42292face703eb792ff2d14c0185cf527fd7684cfcd88d1188342e804485ea867595f -DIST dmg-license-1.0.11.tgz 24561 BLAKE2B 4d1df412db0f7449dbc2838ccbda65f10de0dd315c697efc401e0aa8cec00d481182c7f19a4ab04401de0ac9f8105aa144bc5d95c5caecf0c5dc0d2554a4560c SHA512 65dce6ab02a6102396269a9e7e5a02e4e272d7e599041b1ee7e311f3ccfd83d667e1563e598524032a239a1cc97241f961b6d919c608b86024639fd8b3938cd9 -DIST doctrine-2.1.0.tgz 22263 BLAKE2B bb4fe1786d4fe4236250c7ae1d3f4060685540a2201780398bf781d9c7703615aa30c20187ec3bf360c4b29819c097292bb58650b2a2391fc4fcb2d4f880807a SHA512 df999292ee195cad2f7c2b87103030b79e5d8368cd6a31d9d6876f17ef124abf3612c658e109977ee5aca3ca0477ccd185539b48dd7c68cd028d2768057ef323 -DIST doctrine-3.0.0.tgz 22354 BLAKE2B 0580bbba76693587c31c4e7e4cbc229d3862a8a3682ad05c9cf606cb9e56c14ad75ff2d6089d0b99a47d0e4034d48ef219e141aa52dda0691edc66eaf0c27043 SHA512 c92f90e62de105fec6064778286f1aede04d3563462d3684c306165228c860cef3ae56033340455c78e33d6956675460ed469d7597880e68bd8c5dc79aa890db -DIST dot-prop-10.1.0.tgz 7389 BLAKE2B f613a624bce1b0497e2106d6f894e422080be334f5460d725b65071ffbecdb851ebaa7b69cb4d88619f37e5680b11c0846c02dafbccf10ad65bc3605d16a01c8 SHA512 31552d02e81030e7dfe519c1cb677d377d621b494dc20d6a02800e9fba4e2b9c1ff78588684dcccb6a77bb04d0baf4b601ca9c864711ddb1c1ca368cd269a2ed -DIST dotenv-16.4.7.tgz 22638 BLAKE2B 4b573a59cf8f793ed9f568d49748ecda913543adfb63a84fca5b0a24aed4ba510dac66a2ffeaf9fc1dd91d25eb487deed7e198b91ea595446e134ad3b3ad78cb SHA512 e3ba8f721442ca4642d37161918021aefc14e310c11488f540fa9a6ab8fa99d33f8605337cf1dca641c93a7de6240b9f15e780c40cde1acaf95f433893a7cb65 -DIST dotenv-expand-11.0.7.tgz 6655 BLAKE2B 05c607c0e88cb45e53a21a9c6be822f99fcf2934ecd7b9aa86fa61b76b0b2aa46c1410d4b793256dc1e8b5447422f389a25e14436ea3a4629afe9cf71c33d2a0 SHA512 cc81f09993d1b21b02769303c95b2a1a68323f4c93f060205d49e4740a098acc6f7f7de4ef23ba3aea0a99c4c6b973d64ac9bc3a1f3c9d989c44b03d634ad478 -DIST dunder-proto-1.0.1.tgz 5049 BLAKE2B 4a86c005f5ce580c63e5b55a5bbcc5196503c73e131c778b9a2baa42977d4bd15c6dabb3abb09bdf29c20857116cc7bdff11cf96277ccea959bca552c8908d21 SHA512 28837f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8 -DIST eastasianwidth-0.2.0.tgz 2893 BLAKE2B 54458a79ba296856eb5a32455dfe8c6cf6b33af212c9d7b32975f82ee0ee386c64fadd75007fc660dd308991d7c454035be6def91df614f585563a0a5ca406b8 SHA512 23cf1361959cf578981d1438ff7739ae38df8248e12f25b696e18885e18445b350e8e63bc93c9b6a74a90d765af32ed550ff589837186be7b2ab871aee22ea58 -DIST ejs-3.1.10.tgz 42688 BLAKE2B 9cce7ae2f75e87c6a1baa917994c1612aefd2ca39fdefec2b169ee65486a64058981795ce23c04006e11fbf1ee9b502daffee8e60670558d75cc118032b634e9 SHA512 51e26615f3ab0104bc38958f678aad807c961316b4f3cfccb4ae54132a091851faedc0c45e4652be23a2291099e178a3d33c48dc9102818b37a0ac7e022cd004 -DIST electron-39.2.7.tgz 181460 BLAKE2B 121fe432014b0541ec85c74893adcb8df3ae76cfc323b900fd398deda4eb5480c9e9ebe2183df8934f8117c0868f801e0f7331da949c4e35e8dbeab85d904ce2 SHA512 294d2e152e8b49387868e202de68a895c6e2cce14fecdd4ce3a5536157ea220162b80da295f35a3872c34bdb4232fc301d1a3002cbea06b87d36031771338709 -DIST electron-40.0.0.tgz 183024 BLAKE2B a46bb3d85199621be81a75de1076bae738c59972ea6b54256acddc9b3f5057cea6d3ae7f5f4e86b8f692db2c1b31a929745c65428eb72ec444011441646c4f67 SHA512 532072e72274ff09b880dba00ad34f8ef75d8c0927313b974766821e2a1789c1fb68a44a18304fa78c6a4c48bf76855c07747e30ddf07d4f68f1dffda7080ad8 -DIST electron-builder-26.4.0.tgz 20407 BLAKE2B b52feaf11b6c9765ffdbde4e6e7c304dcbd681ed081be04b9b66bdda300dc8ad793fbbb17600353a1740f1d13f8fab6bb9d29810c7ec7c16345b61f49023cceb SHA512 14252abddab60142cbf836f64941a08ce6136eb8243f166d0a3a886469e31fda76f694d6c9eb10a8121fbd004a6ba7b0a9d7bceda5a5e3d9ff5b223f372501a2 -DIST electron-builder-26.6.0.tgz 20408 BLAKE2B 9111b47fc7e4b09bee4329ede2167e359bfda5bf09c4e00fc8c6c374f37a402e392877b0db6c415a780732ea8190d8488bbce72890f54b95b1cea04bb4fe5fb2 SHA512 e7b27371c23086a551c3cdd169374c2e74a3ccb2f475141ca7cafca03ee9891341421f147023da29e166b8923325a6c002f4211b4fa0c77174a4e5443955d8c1 -DIST electron-builder-squirrel-windows-26.4.0.tgz 9001 BLAKE2B 3509ea4c83d02e0ff5f06660a5fcf9a6f7ea59e3ca8921121858cd42c002d1a360229f6c0740fd518f83a4cae4699fd25da6d37c51cb81d42f05a542e52fddb7 SHA512 eddbda958dfcc41cd635aa0e278b2acb6686204a65d92d602cf924074307bb51eee71290f368a5d662921655ece9f2e95d4b28fcd9b28dd1c69521c34681bcff -DIST electron-builder-squirrel-windows-26.6.0.tgz 9002 BLAKE2B 8e4b9314c01c3350ad61c68b843fa0a687053154f7fd530f7f5c70622e82f20dff1348372faf3716856e5f59b45be376e84d0df8a4dceb7a4b7711a2bf21ba3f SHA512 b8a73f374a8f73281dd980ebe76c1f8f4ed73893cc1b928d4f5653aee9ad9acca47411ab795d7fa680dc1b977fd0a9a83a99b1964ae73497a4337783bcfce541 -DIST electron-devtools-installer-4.0.0.tgz 7251 BLAKE2B dcf72b851713801055b514b5347425dd78fb3311060feceb8e3e27e20fe23582b175fb5744f5924bb9d1e9f35714f63b0e4d066837a2e8aab616a1ea2d201585 SHA512 f539edbbf8ed7d29f49fa37f648e8876f46a5e90f22d0883bae21bb0123e74bfb511fec2f09d89c01cb0e7c3f74c988d7aeab2577664a61a4d5ae64ae62498db -DIST electron-publish-26.3.4.tgz 40412 BLAKE2B 528205704b6b13ff0d8c79615f2f57ed8207f476fe3c97cad8fce19ed593fcea2f51083a215013af8c3e1f1a4f8df629854f9268e4a151a77120ff65e3cfbe4b SHA512 e7fa2e0cf6fbdd290ab9acb61178ac3c6eb42d315330d1d6a3658bacae460e986758af540becb362bcd57b2763d3bf189385945e2d3e4da699b0d77a66de64fc -DIST electron-publish-26.6.0.tgz 40413 BLAKE2B 928e304fa571c18bfe8d54a9f8406335cfb9f48a7ab0e0dedbe912a2bf9e5f20755d2459254803e913e09cb6c2cb8322b30b5b7a84914bdcb0d9e35d3b93ef33 SHA512 2ecc8730ca9bbc9dafb0ebee589d7d39ece017600d742887a48b9c0c73622e1b88fbf177796f7ca2ecd64919975e2f3664e3d95c2d3b8e722b6af638618c022d -DIST electron-store-11.0.2.tgz 7489 BLAKE2B d73071f6bceb8128db708b8fbdaf1ab85d1b177df419037822d1b46f9a73d09bed9689dcf8ad19a306e8762e47623efe1d59674100c82039b2d8e9adc32bf953 SHA512 e1590d45d37e04898bd8a7028b8d56bc061b87accb5f90144e2e2ca3af323ea888b636e04e3aa9127180a9ab209c6fa507a1ae032525b4ac15a29a7a52ffa0c1 -DIST electron-to-chromium-1.5.237.tgz 30951 BLAKE2B bd592374653834eca5a38aa7753c211e8ce4306c4911f051d5a4d66796cc57d313a72a960443ee98dc4e6dc028e09ace03f0161dfc2c52eed37cb41d7358507c SHA512 89c52dd4dbdf8462daaf9952587ded1cdcda6e5680e63b371d51da7108a67cff1588404e42ff8bec3284b8775b4d9d122823b5a204c94c82f51b093d4ba42f72 -DIST electron-to-chromium-1.5.241.tgz 31035 BLAKE2B 713315e5690603cba3dcb92b729b00ee1b9b2e5831546bfaf02b78d3d49b21441e596f1dafd7d59e85269444aa806403fd3da85fb207aef776001ff6933f403b SHA512 20b32f297fd9579588273cddb6e1e0f31aae936cb404e1a514ec415704e96e25ea5881f485a986e3975d5384773d0d2062efb1828d2f7475c7962f6c1c819be3 -DIST electron-to-chromium-1.5.267.tgz 31505 BLAKE2B 74b63e74720093fae0e7687531354eafd101c614912adad90de80da3e7fd245d3a120b42b63ee0a238bd8d72f6f02e3038cd9d3b0802cd2c43e04e280146e332 SHA512 d03aeeb26e8c5515d2389a466da49581c42cb81e211243291d7695b2d70f9a1bb92c879dc6cd7134afe7231990214fd13c2d3ed7fa3401565f05391334939d53 -DIST electron-window-state-5.0.3.tgz 4322 BLAKE2B e93231f7cda2a2c638d97074048c636d259f36abbde2bbad2e46f7f68019c20e45b955d6e07dd92f047b1b62dcc823bdf3539630ea5921f7fec03a69fab857d4 SHA512 d66353c027e4a255e5de431fe74c96def1369598f4cbdd8ffc7616141adbfafd92fe90a46b999dc0dddc6a02a6e39f00ecd8e7752c228f29d781c2d646876c56 -DIST electron-winstaller-5.4.0.tgz 9141554 BLAKE2B 5d728643c5aac3362ce68199cc066f8d8b7dc7ad920cac6c3090495f3aad45da71b9b24ed69f20ecc4a1e880794431d9be1ea2fd98f348619ba926426cd37413 SHA512 6cedf2d7462292e53052e0d441133829fc0d90a867a553bb20f75bb2b7a3c0df7f000049cf34d0e06787c32ccd4ab54efad107dff369db9e5adec559a590e3be -DIST element-desktop-1.12.10.tar.gz 2121762 BLAKE2B 3a9cc921bcef7528fd106a80f6ff5c1e8f68d81925226c871ec2671fc8d98207476edac20c329c39af6ab7e7db64294107b1faae1d874d583d393640a3bc3a79 SHA512 17a0326c72dc2b0e2c0a0d251a41fe38cbadb8b9d27a8139fde4d396cba30e82c82a15b8860a2199c4ae66943019e0e78e0c37db74891b4497cff6fcd9637838 -DIST element-desktop-1.12.11.tar.gz 2087471 BLAKE2B 577b205eb0f93d9e7934d4dfff3789bf7e783512fabfe3465b6c6ed5c4cb104bcf66106b46e4aa2affbfaffcc286af2f633adad9f28a99c8fb19155857d007f9 SHA512 bc92730e494bf2fb8be7ad8fcee61f69d272767029dcdc87f6866259e907f726b84b754ef2d310981afe7546d5dc2d976cebd3464109ac0d4ff568904d86ba0b -DIST element-desktop-1.12.12.tar.gz 2088443 BLAKE2B 7d862c2d2a2af354ab65c635966b746dafbabb6aa9098e3df987eb4fc220d4b2e4dd0090a97a7575cc98ad598601cff4a1c875b5156d411587bee78263822cd7 SHA512 84ac411466041fc19bfaa7ea380cd2988d1fa1b30aa9942defd77a4274b20c1047a08d62ac90ffaacd1c145fd410e9e87c4e40e4564167451b5e187daf77d346 -DIST element-desktop-1.12.13.tar.gz 2091207 BLAKE2B 2b58a89fe6e0814b52183501d3d0898c61d82b9dab688e587ae70ef427cadd9a3eb6df596430b759df13a3fd510a658a40759e8455e1f5732b1bb438f70fc4ca SHA512 452e9e82256fc4b7c7b69d633ddebeb04422ea9509daade7cd23554c9aeb962729389c23d14cc56f575e5af6034766020c494733b2d7d3ca4e6b11d84f336e17 -DIST element-desktop-1.12.9.tar.gz 2120893 BLAKE2B 04be292366d7ba26d24b951507ebe9987d190870c407f2bedd1b1965d075fde454f98178b697d1106a549c63829c93db04cf4a5f9d0f43ca59971322e2b466e1 SHA512 854f48959891b81e2843c7e1fb0c312ef1963b9209bd31429a564d86a7309fddc79fccd19c3ece07d8dc65069002b7c5fa241da1ec5d6543952f58a879af0bf4 -DIST element-web-1.12.15.tar.gz 29682941 BLAKE2B 635503898c05ebbf7c19eadc003729648fdf1c456eebeb261a69ed62b9e52d09ce2317bf169573b0ac0473a1ee3e57b63b131dd03b59413011f095ec272c910f SHA512 2e4bf85cbae27187bc6e148b5d8fee520ed5634644b3c76d40f74bae0d5bab455fb5baa53a58d4d9c02bf10bd7a36d2803ecf237dbd7cb51a55dac7b3988a19c -DIST element-web-1.12.16.tar.gz 30233910 BLAKE2B 47ad809dd64a6f6714dd6441e1d55d3290ccfc23fe96bbed73da3a3951747181381564da8bdada8aaed38876aa80b01d55baf63d8641b5f7bc6593828e33e567 SHA512 3988dc9b872d4a49d2e67c3b6615594bf3bfa6b648726a6168e8df0690759fc642c5fb4b1e04fc65ce3b17fdd32c2b81c433726ec806dc0341bd3b94cd2fd5b8 -DIST emoji-regex-10.6.0.tgz 5610 BLAKE2B 3a4a5eac40d15fef7400b368a9fc5ad2bc475c977139a23444b16aec3f8da37ec4f07678fab040e8bf011d28408fad920fff286692bb18d2e789f4ab7d749a2a SHA512 b68508f38612e589b15b6d7d7ab9e2583d022153a8e3ac46282a2578d41180ecc3a2b8018b5bf80fbd7f385ce00fd18ed9418a22fd42dd2a7c0c09f4fa3e70ec -DIST emoji-regex-8.0.0.tgz 6664 BLAKE2B e87c25921682c2e12bffb1dead98f01dc6993100db21890c70c08cc4228ed6ccd97f34c9d2c0cb4ff747e57e8cb8ec0ec458eba0c7cff5742a475888bf9b7e1d SHA512 3128d8cdc58d380d1ec001e9cf4331a5816fc20eb28f2d4d1b7c6d7a8ab3eb8e150a8fd13e09ebd7f186b7e89cde2253cd0f04bb74dd335e126b09d5526184e8 -DIST emoji-regex-9.2.2.tgz 11118 BLAKE2B 9bf5b0c20b5559bc0d0aaa66b320ce5d4ff2657f15ffa8490b4d9716fcea5ba7b4c37830e4de72fa023bca1878236d96b063a0be732307f731ff4edbc8321734 SHA512 2f5f03689b17494936fb8da9bfc98bb398c94f686a164144e23db5c0e9a06d4aac67684bef636c514efce60f515e0a37b3464d815978d93887a7766d3affd5ca -DIST encoding-0.1.13.tgz 3040 BLAKE2B c0cb16830c589bbb396658c3f6abcb8918b7e8d386bef7fd7203ee61fb77dc2ed36465fe094db0645845c5fe3d5905b738fc0e1096e12e7eb6f64fc46059f4ec SHA512 11305aba8c354f7e58fd664c922a3d8e2334679c631c7989e179a364eab597f757cf796bdac467f3b9c9cb6d11ba9a928751769b71c73d2a7c4a120f409ac9dc -DIST end-of-stream-1.4.4.tgz 2387 BLAKE2B 89a594bb0bbbbec85aff1185c7654737cd92e7681a947e2b49945c55214c0f733488c503f8ea73bf54aed36fb83fc93cb13d44fd689ab88af17e72259fef7cdc SHA512 faec358a720754f428695b87cd1c97776d6270cf9c9ede02cc3e6b5be342d708ce5124ceb3e4deec53afec084deef4bdc7fa08ca12cfe4f4751fea614001eee5 -DIST enhanced-resolve-5.18.3.tgz 42922 BLAKE2B 0e4df8ec669b7e0104c8487278bf7deef4519331125e3d5167e65a9cd549e56e1bf086e00c4453a4c2a530af133d5b1eac5c5da384d0ceb075588a51a465700d SHA512 778942f317dabcc7818f31abdaf1020b77ec197ce25d94322710fcebc87633f9812373f002e383c4090b92ae4762ebeb3d8714b622f3b13a3c5373e05f739cc3 -DIST enhanced-resolve-5.18.4.tgz 43125 BLAKE2B 72b5a7347c26abe9d598a7fbbe7da0e48d754e38ad592240af00c3dc9e35de97c28a692468fe65a96a6c6ab1a814b94fa1226cff1a4d04e0063a581ce9337060 SHA512 2e040c338597537408f9262011cda58918339da0f9a236e6637b1bf0bc7282e564220e45c5da5392f93bdad7b6477f3f4c62b11fadf8a0bc5744663a77b00ff9 -DIST env-paths-2.2.1.tgz 3411 BLAKE2B 27f30ea0ea39e552c49114ab061feb25e02be9868827fac07452d4070bfe18678d4ed05edf60e3572399fc0854a5813a80ab2665cf0c164da52f65e3f8eca50b SHA512 fa1d6590b2a164c4d88e8835544a49346ecd64959cb9cd830e4feab2a49345108e5e22e3790d5dd7fb9dad41a1a8cc5480097028d67471fdaea9a9f918bb92d8 -DIST env-paths-3.0.0.tgz 3254 BLAKE2B ded6046e53faa0d0752b0c3a9b3d7cb74b144bb39e6d0e3caa16ca795857167b4f252b24791c040e79a006306dfc0755b005661f8e5977bcd2d38f5610ec8903 SHA512 76d2544dea73316dcb9bf34fc517f7c0fe3ae365168632f6b10c5cfb29b660c8f59bf1f6cc33503a57b369fce41f09fab0cb2d8c74f01ba89042c72d0d6fdbd4 -DIST environment-1.1.0.tgz 2766 BLAKE2B 19fc11478b1d1acb43e343ff18736c7b845c0254c09a5474fac1486e09fc36d96f59b66b5487523dffe5b2eec01152b9ebe2ff8454136ff4055e7e4ae5b958c0 SHA512 c54b683e432081bcf430fc8f8885abd4aa7869e5898c367a48cbd44618a68dd660b11b83a65179fecf617201a1c97321b3eeafa67ba8899da4162bb714c9d2f1 -DIST err-code-2.0.3.tgz 3433 BLAKE2B 7cd8c01f77aa181c3f6271b98e7ef6492848046c98f04cfe399ff62aab38248e04c251290e470b9a18afabbcea0a9d9a5081837e2815932e9889df9d3041b4b4 SHA512 d9b9a546934a0714ff09198f3a5c88490a4d8fea92798bdcca6fee4f4271d9b30e94a2ed4b2d5998bb95c5210a2b2a2bfcde7286fa7f6621b5a04dc311831214 -DIST error-ex-1.3.4.tgz 3551 BLAKE2B e81ae71433d3aec0c408f1c313d57f8853205b2b5beb5429161dbe3a39d026070c9b145bf47268c2e542c46bd861eff2e4663ef4c166c20130697c3eee28f90c SHA512 b2a41a9809d1d785600abd40eb5f00dec1abca07292be1c46de9c0fc7884024914c1c648201fed816a871715a03b20e1e270782424629a1efd751e58c1cf4c0d -DIST es-abstract-1.24.0.tgz 235085 BLAKE2B 463088819501761b048e3a9629b7a2121f7dae7c4231112de8dd3da058c49310088c1892e086d79875712923fd6b44fce3d057e6314346705b16a6dc8f1687ca SHA512 592ccf82c74bb53710c26e0244e7d2e63bb659ad5041c55e4f7ee3163633745cf5afd6a169d0bc07cfdae2ac49c4cfb4f45d7c8ae9827519a5afde9962442f12 -DIST es-define-property-1.0.1.tgz 4431 BLAKE2B d162ae04c63fe7261bf14110cbeaff3786e5bb76a495f004c705acf5d5437f1f7d7ef8e592adb318701da448ec4114bbde537de0db89702826e4858c9bbddb88 SHA512 7b79d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de -DIST es-errors-1.3.0.tgz 5338 BLAKE2B 8db0e597a0a586500940cdf49f9b1efa859bf00b07eb25822037054ff6022e8202802804fad380f16eaa6743ffece042dbb9e99e7ed02ba69fc7b6a501c045bb SHA512 65fe47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3 -DIST es-object-atoms-1.1.1.tgz 4658 BLAKE2B 8fd2939c0f0adbab491ca5bc9056c6bf28e2d62550dc09d572da0fdf256ca281a8ec76665c033df354e00325171a2213813cb38b0126ea8233e0d6ab47b002b3 SHA512 146807da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c -DIST es-set-tostringtag-2.1.0.tgz 5583 BLAKE2B afae9ceb85b857cd5f232dd64521eff207af9cfd6aa4242c12a7935676d5cc10f8bce3870e66b5128617194d13175371a001ca582bd98f70c9beeabed2735b52 SHA512 8fabd6cdfac655fc97c607be3b4c79b21e9cbf10288346bfe1175dd8adfacc2315e5e27effeb4e0278113bc70e0cc3566d545d5659866502f6612df247c6c850 -DIST es-shim-unscopables-1.1.0.tgz 5058 BLAKE2B 5d5be6f0ceeae56b98c1fb697e75cf7177f0506cae43d2ed996078fd1bbd8ddd2493cc99b96c176f6aab22950272eb7b5acb054a41272e34359dda339e4f5d70 SHA512 77d4fcb9cb04861f018b5c285c27fe4c828321138b1b958293183c81e0426ef936da4cf00b91b63a75d530ee8552cbd09605145d0da2b5ea615832ea0f36de0b -DIST es-to-primitive-1.3.0.tgz 10059 BLAKE2B 03a13796a76301146c451e5d6d4fdbc4758f158a655b371961f13f3fd2c27638adaf7420e9bb79603aad540a2634225553d12e98cad45f397eeafd2baabbaf4b SHA512 c3ee662771ae14bf8d8d5b4996fc9d4a1a84d5e3778773db23bff92c0b1824fff6aadb8c5e37cbd8ba47491aa8e1be1e485e4afc31f5257294007481d945b9d2 -DIST es6-error-4.1.1.tgz 3294 BLAKE2B 37e87f405c48968558d4b6280f9c488ce3a3f169ebd177d5ea4afcd9cada7dc453ee2d5ca3e031ed396de49e3a2bfe9ecc57c614492534118a8a73f13bb5ffb0 SHA512 526ffe17132bf422125a1d1b8b966fd22383fb8705879a8b7a4b35aa1028a4a540270dddae029b2b24a2929ef01a10cbd073de6a36b43f950b66bc4b92789456 -DIST esbuild-0.27.1.tgz 30946 BLAKE2B e126443943051d6d951e209cf70a9ac02457e2405e4eda190e4c662f35f6d1fb42b5308ec000b49911da1c2568504d049aae5bf5ddfa66ace94136b61c54fe55 SHA512 c98df9299724249b9554f5e9be3831882b951094faec5eb30de553bf8ae2cf23eb7c6054a5942cbe6c6737e0b7ef57367ac0ff84d3238f8b69061bae78b37b68 -DIST escalade-3.2.0.tgz 4483 BLAKE2B 061a2b1df87bebe1e1325024d4e88eff27cbc3fcd7679af74b1f7bbf2ca78326717a6297307fdd9c2776b57716c01cfde6650015f77904f5a666ff5c1c6fe2f2 SHA512 5948f6aa5c5a42d3b883a3eae5cdbd193716183c9df22b4bf334e58a98040b3dc97ac02288e2a8b5df0953aa2d0773c00a01bac64254c9585ba0c4be6e37bf8c -DIST escape-string-regexp-1.0.5.tgz 1578 BLAKE2B f1a0ddb17b3e958dd0f3918db00fe3dd7cf322bfc4a7024c5ccf5b80a4d2e5f2914c78963a9d6b491f5ea6701aaa1166d7102428873069f38f57da4e198cd505 SHA512 bdb468ac1e455105af95ad7a53c47faa06852326b6a86cf00eb366099b982ab6dd494306e88d5908641179f911561b8e9081959deec1437e4349fa35aaf26a16 -DIST escape-string-regexp-4.0.0.tgz 2017 BLAKE2B 923b1b0cb69f07cc082a708215dc8f81957e866c063d329364b50da9f526ee4497ffd8fb9519c16f16f5cf64233e26f31e03881862ad89e78cd473fbd9a405ab SHA512 4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80 -DIST eslint-8.57.1.tgz 566631 BLAKE2B 30aaec660a3cd61367fc7b47946ab20ac3dc685b5140f51af3c2ed793e1ce4f81e32e233c3de0ab4c444bef79388cedf3969b352f6e87eff612bf34facd73220 SHA512 ca9a30c83c69552629917afd58fbf63c0642b4d8a9d4cbf92935b4482bab5efffd88ea5cac7f4f6aa504964b2a101ea90a1a87183442153cab6651a19cb34688 -DIST eslint-compat-utils-0.5.1.tgz 12586 BLAKE2B 88e306ac9387c73f417d3936b2460a9866188e48d465b614febedfb9e0dbab4db9c78aae2ada6a1df997c509bf707e2584e7ca605a68760d6a9dfda0df875de6 SHA512 df3def15ec4a2049e31c4df308c468e9f9ff7b8e14ed3d648548e0f87a746503028a0876f2b00b0f49cf14170666e88b0b9acb65adae6d01c34659f4f497d4d9 -DIST eslint-config-google-0.14.0.tgz 7913 BLAKE2B fe9e171d0387be7cb8a7f2a528ba839c346be74d7385e86317b00f69391374e1483c68e0e31128b7c467be008fb5c575fb230782df261a76d0ff35c0e50a98c2 SHA512 5ac6d7e166e3b8cbd375e54bebe277acad511a1093aa3b058d7ed4312320662cb1c5a34b92824435bac6131cc44457a84e91b0dc5dc5ca94e25803fd657ce413 -DIST eslint-config-prettier-10.1.8.tgz 15295 BLAKE2B ce4cb86e4295d4183e4d4d79d0ad12306d25fa06d96c1fb095ee8ae47ac2ce152f9bb20559701d5b7b158f18899cdb03b9c0b8e804a280ff189956dfb89c5b03 SHA512 f36199523452d29fe381a9dfeaad6b10edb9552a071f484a3c24eb8229653e3748ff76e0061004d50cc7ac74e2ce3a51bf2ea9180bca8c326d936a45f4d0eaf3 -DIST eslint-import-resolver-node-0.3.9.tgz 2480 BLAKE2B 7ab89f26b7e18feb1d5ccdb05626b212550b0aef9f44392aaaf04271cb52ddef6ee6ca9c106119d3dbd756141d81579350aac4e7f7701f185cf9a0364a1c59d8 SHA512 5858f68accf6d896a152ff81efcf1394edcdeb32f79cd24653c09c65b3d9bd512404f689742578bf2e70ca086dcb944e15b0919e6d77daff0149cbb9ff5050f2 -DIST eslint-module-utils-2.12.1.tgz 16180 BLAKE2B 1fb34221a17dbf4298a20a2213f7c922e3647a04654e2fbf524a378edde6c93b9d0b999ebc24448d60568fd29683e28f0b9fdaab7abd884ee5ed4b1d1a5fa60d SHA512 2fc8d2593cdeecada64e0d2fa2cfd1b8b452e6ca289a4b033e824b5c8b250bb73c5a6badddbc7b08fa498a30dc059b7143996b6d474cfacd0e94d6f3d0308337 -DIST eslint-plugin-es-x-7.8.0.tgz 44535 BLAKE2B e71581b5f3e6d7a39c9e1bc2d835e661bc134b91252096334cb4903af9ed87756e1db8d86d934538d0e2b0cf51bc1ec269a611ce122429fb531c0bb4120fdddc SHA512 ec3b3cfb0000a15dd3f8b00a7aedfd6390735c2ac62ab70849f80a12a4d2e010cdf121440d07744b8de3890f2f21adf050a0f4eea8ad65d7f395e9d28bcff4a9 -DIST eslint-plugin-import-2.32.0.tgz 411146 BLAKE2B e06d34d2adc8fbfb08817304557cd45fc67e7492461ce6a563b8ad2982a60189709f048746e5d919413f7128092b4a111bd9ae76265d1a93351f72499797ccfd SHA512 c21384d47168fea243c97e129d7ccfe0deb33969fbf5686709463f88347498f7d064ef30718138242973236a19ae10679cc5020421d984ee95432a0153de6664 -DIST eslint-plugin-matrix-org-3.0.0.tgz 5731 BLAKE2B 3034f4ed592aa1570f49e127f78ca66180773cf4ee0e65004054c19c2bf630b874e9d8b68246eb3f4040d766ee0616b0eebc279bf494a563a64f69fdf0d6d257 SHA512 c4e3cc7b22f13a0a01d92b0f84998873e76ba2b6665e8cd2068dd7f70864ffad83bdb56925c9ed86d84e086c7c9636127000cb6fe6da34e78dfb0299ab092577 -DIST eslint-plugin-n-17.23.1.tgz 89892 BLAKE2B 443ea9572f17d3ef81187645e96bd429b23c2bb7fd75154bfa5878999be95574dafcd86729eabc699d4556d0c8a268811f5c3b08ea093c9928d3268b86b13327 SHA512 ebc3de6a55296281ce061df7d892cb0fd4a3ece4140e416999c7eab7c47db3249f1527ae1898cc4c942f091441f7accedc0fcf10b44b90faf3b079b3105410e4 -DIST eslint-plugin-n-17.23.2.tgz 90932 BLAKE2B 41b5a52fcaf521951e7c5c84eec70c0465833786884afe502aca228a39d370c2eabe105eeb9dafa5ce18fda6a0bcd6e1f99f1272bd8e917757745de0df26d224 SHA512 46158179bed854f98d6b67a082f268a22b9e85d2fbebf6db7e3fce25ec32a064fcd2a9f93d7773f3330e4cee981ceb08edbc8fb7bf8882187f8bfe1ae7fbfb87 -DIST eslint-plugin-unicorn-56.0.1.tgz 162931 BLAKE2B 1ed9aab5ba1940edb50d99c1f34029cb99d14a4ffd12a1704fbd4e77a5a51635ebe497a6ea3938ed0650f043faa9312ab9d03db380b11ca2a1475c961b3f5481 SHA512 170555d14c1ff173df5672921a9320ecdb65661d06d2005aac268570c50ea2a3f15ebcb1758c53451bf8907e81f53142548ae34571be7a6731224d9ac998a5a2 -DIST eslint-scope-7.2.2.tgz 25937 BLAKE2B 7874be59b6c86bad073f71ea9b3be81495e3b97cf3d28369e0d6e8fe07d5370d92bab9ec68614140263a373ddd487d2b1c06795bbf0c104bd2edc5007fdf0d27 SHA512 74eb76d4eee54cc84333e5fd981e065fe0d9ad9b425093cbff095c4eac72af1e48bced0862d20b76dad0190a7ef27e52d20c1256639ff4d42b8cc3a07d066522 -DIST eslint-visitor-keys-3.4.3.tgz 8109 BLAKE2B f125ab026ab370bce3095412039459734bd804dcfe62f2cbb3064c3fdb477713ee15809d5ecded0386e80b68eb4c988ba3a09968504290c52ce755c19ff0ca75 SHA512 c2973e2d77a2ca28acc4f944914cd4eacbf24b57eb20edcc8318f57ddcbb3e6f1883382e6b1d8ddc56bf0ff6a0d56a9b3a9add23eb98eb031497cfdad86fa26a -DIST eslint-visitor-keys-4.2.1.tgz 9146 BLAKE2B 2ea4e555ba70f6ae0be03227a4c7ce40f4efd2231edc10d9a7590a5325a0886972360215cb61111e7b7678f7853ded7c05f9341960b4b65494e429b7a82ca601 SHA512 521764e6c7ea71e7bff47feb08e262918cfaee8d1ad93c3684644f386d98d51d9d83b6eb45ed6e1b4c9a3500c7bbe4cefee40f17fe5e09aa6f612987523b7b25 -DIST eslint-visitor-keys-5.0.0.tgz 8843 BLAKE2B 5ce5190fc3e5406e0a6eb125074e85f7f4bdba086cc9bf54bb6f6b0b9853a93a4429abb2a0bbd2cf951637e194abc4fe1d00bd526934a8e2e2de48e620cb9b23 SHA512 0345de222ec25d4ee73e57c74bd96831810ac5468e36efe14c4cc74c66daf47baef780aad613e2bdff831397ab268cd93a4cb42dfbd7032ad5fed72cc292c8d1 -DIST espree-10.4.0.tgz 17313 BLAKE2B 0f754926f969074d293e68f6a7a52ffebdae1007ff7fdd9ed5e09c76a6456b34a83623e82f8a37799b98b2577c0fa12b7fb934f97c596a762909d3dba1fc5a54 SHA512 8fa3c0436b94afbf4f6610633f90b97e197c7b7f459919ce8ec0f99469d6ac553c8b61bbefab412bbfa73fc2ae4144d3c80654c1f42a5c082b547e4c6c7f4261 -DIST espree-11.1.0.tgz 26343 BLAKE2B 134d0a17e56b36e5064d724da18512fd7c6f6b690da1cc796aba356dfbc0e032cd3b939303161101b8326d37d68af76981668b4477378441ffdddc2588c79ab7 SHA512 58559884ed5f57889892a38ebeaf056ea221af6a587e80d8d240a8b4c90378db46a62186919d62a2fdaef32763b6033cc85f2bccaee86936f0d8d0336c06de87 -DIST espree-9.6.1.tgz 16332 BLAKE2B 8f10a58776c40df250c1692869cf0c4db34c7e3b6a790546136eef6096f52e643752acb9618cbc468b0fcd96dbc0b05c3dee65f3c329940486bb83374b58ad41 SHA512 a2bb99685923a2b4e9177da40d2239ffbe558b019e6608a7186cb636839283743d6e7c259e60e6e072e7925d111379fe9e30d7474dfb698d7ec79f19ff315dc1 -DIST esquery-1.6.0.tgz 162341 BLAKE2B 81cb29a99d7ed4b0b2d58991eda7a30215bb6bf9b9b1cbba5a57835cd2767a0f7d337ad907a3da78a43925a559c8b12e616a2c10b0775231bc20f05a95c5418b SHA512 71af69c3d7e898570a3ef14b5e104a50af7466f1a26e218ebd124d6e396363bb3bbaaff960ee013b3718b49a84c5dc7df6b17a6807274711e67141dccfab10b2 -DIST esrecurse-4.3.0.tgz 4053 BLAKE2B 1bd4bca71bf73cf3eea9959c4eba538b475fd78432bdc802c2b88463dad76492c9027edcaf7a365409022a1b779230092b6ad000a333be3e2dc4a6a0a1f54190 SHA512 2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a -DIST estraverse-5.3.0.tgz 8052 BLAKE2B 820af838fb5d5ff2f9bacce5551a4b40154cd0faa1990a051e8c486bed76b98c5b13fe1cf83817bdb8063f35391c60e6bacbb9b88bfe9443ac7a7ca22a191e2e SHA512 30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004 -DIST esutils-2.0.3.tgz 9542 BLAKE2B 139acd19bd840894392fbf6351fad4287fa01360a87d45a26ff78f3a4423d3e5e3bb17ca18e646779b595061ebf9611406c1fe072c44bcbb039b328b0e5ab7aa SHA512 915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea -DIST eventemitter3-5.0.1.tgz 12095 BLAKE2B a615ee6579b9dd2de17e1fa4fd41b3a40915ccc556a2151f13e31f7a59de92491c3f9d59452982daeaeceb83d3f2f0fbb3f11aede13837a15cef19a0e8d89acc SHA512 196901be389264af3b10bad839211251879521cf66bcb2dffe75da94c392e5d62b819abda3939591b64054cd3a095c58b02c07f410d914f9504e53c0d63e1a84 -DIST except-0.1.3.tgz 1188 BLAKE2B 436db8201497388afe52415a64a6fc8333220bd1392267f9afb1f3ff32ce8ceef35ac4fe784d66ebd6ac6a211ca72db67f6ac73dd4148d840e2663c7936b4b00 SHA512 a2ec2025abef30e4ce7f2d1113c346405008a1687c7a126192ec43c97c6780c553c53abb1c613b819a29661a8a167bb99592c8faa41db6f27c9f4dde869ed126 -DIST exponential-backoff-3.1.3.tgz 15151 BLAKE2B 4169feb4933f0cf9c195796f0d93e62f8104aea8e32b1eb5ed4bf91090143259ffc9cc7f4a4f16b7108798978a66f77eddc3351f3d3e1beac994a69e3b523826 SHA512 66011e6578f7d2af88d0437e09b492a48c8f689e475500f5f19d66faed455db01e4fde26af5cf0e74ab8aba8e2882e38ecd97f61370861201fb621aa7adc1708 -DIST extend-3.0.2.tgz 7258 BLAKE2B f7b7d08d78703c31aa760f5d2a1adab512f712a497b59a1397ca9ee56f5c335bb8c70cca73266df547829d4a6714e06a5bac8ccb24ed77b9d65c0dd1187ddaee SHA512 7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe -DIST extract-zip-2.0.1.tgz 4361 BLAKE2B c7a687e7d87c8b781b04bddf7a3678d163682334dda98034205392f20c26227c273f0db372488fb718b8ca5d2c5d9148770a418422827bf135ba874f04c7cdf4 SHA512 183854f67b70b8ac865dd6415204c87bebd79d68f47e9a5412d3032f4fa275de52b5af131a91ecb27fdebac03d9ab3ebf6a343ca6e92c406198cdbc29fff5106 -DIST extsprintf-1.4.1.tgz 10978 BLAKE2B 976075024de57d46b7ed51840a35ff924cbae8c6e68da81d4a1ee79b25330a38a7c01c629b8842977aefe9b63f03503c73cedf3465c51d411ebb7ee8f204fc3a SHA512 5ab937e5ef327422838ff02b0a5a3556b3d598df33a61e55e00b47c08b8786f317b0a7fbdd44f704e0fe6b30485bedf0389e058441fbcf2689085bc286362f30 -DIST fast-deep-equal-3.1.3.tgz 3656 BLAKE2B 7d3cd0b79302df438acffa37a02d9a122b6470a7e23cd3e5e3eabfa98aa0fa101eb34746621df0001bf60673689477984ac6b299350ca1f9c8c4029705eba1f8 SHA512 7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1 -DIST fast-glob-3.3.3.tgz 25301 BLAKE2B 0fab5c0ffcc569a3c164590658e862ec69e9d678c20b509da2befee40bd7cebe76ef8d7bf5aa4cd4d371e2f82acbd72f7334821d5e58d8dd305591e9a133a898 SHA512 ecca6d2fc53472a705773233c0e4c7a22957f71e41acdab27bb67f2ee0bb9023118a8d44312caa44adc1100503eec5d1ab8893e00cd356e65d8604364c2bd82e -DIST fast-json-stable-stringify-2.1.0.tgz 6318 BLAKE2B 48656a692a012d7c3ab36deaccb23f020f57c12950e0d5a3d12bb8d0ec16993ece92ab659ada2919d1ef4d7439e7beadc0241f4c1d4a7398b5a64583414088da SHA512 96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f -DIST fast-levenshtein-2.0.6.tgz 3699 BLAKE2B ec91de530cb4934e99a49e1410b534543b1fb3c63d85832690ba76220e6a059e8f3aa5e85c7aa74d2810cc613b8817b119169005804906205297ddb86bee64c6 SHA512 0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77 -DIST fast-uri-3.0.6.tgz 21135 BLAKE2B 092e4378f26d96508514f24ee68d0b7124fffbf517b8ac62830bb1beee9f8821338e40144cdf5b817914a0a8536d8c0ca4f57550ac5a40eccc363fd5ffb10543 SHA512 02d7e8d783a26d2bf9c00a7855636c15813501c850453bfd701196113e296561f362c845492f4d408e88e7badd2a7f5cae859531b6056cb849fb226f9992081f -DIST fastq-1.20.1.tgz 9885 BLAKE2B 9ea3ba5dae59e60fcf65eafcd8cea1514ce0b7501ab5f57be06eaa190482f601bf566542e8c55d1340234013742332bf18f9b49ed56d3cf0bdbd4f3958c15541 SHA512 1864e8c49ff0d71df6b3f0f610a343ee44e29789fc39593ff66c9c4dce150f36b5de53afa54653197de61520ad57d92c746055cefb320152ccea61c54e1c57c7 -DIST fd-package-json-2.0.0.tgz 2460 BLAKE2B eeab4eebc59486075c89597408c87e92524a56614117f1a9d565be4c77d556efdcc15d692be4aafa79fbba3b84d685f31c31a9d6fce2f942ca300b0f30585867 SHA512 8ca9a6f58b6c35737bf3d452ff4992cce0b5354abd9a455deb9bdb49256c29d8c6bd85c1b84e2859ed90384a0579198983e94fb99c699ab7c5725361a1132779 -DIST fd-slicer-1.1.0.tgz 7516 BLAKE2B b6b1ac20d3ef1f4a50f70b3d8f349b5c48b9c81e43282a4b2b66a657f1b5fa7fa67d86cd9b1057036c97b0e1a37934debc9db452b36c6cc273498106f6211349 SHA512 704d6ab01fd5c32428cd9faad5d1b147c2c160d65ea1f84475434648c6d00f71b0da50335fd65bdee214e846dcfc59b28e8f405967e79f4014087aad7afb3ff2 -DIST fdir-6.5.0.tgz 9742 BLAKE2B fe7c6861388f94b02caedcbfcb55b553a1d27296d8ddd2adfd6dddd4addb6038c60a153b544ec1eca9e6d1699e6d8749d81905d9fe4e5e56442ce1bf5a4f6440 SHA512 b486d8b596ee70eb340511aa3c992c84951874bf920c7edd54cf208f2f84469dd60148cb105244fb4da46a7c87b708d63a7c2b298062c0098cd29e242c90275e -DIST file-entry-cache-6.0.1.tgz 7793 BLAKE2B f7409b5f59fd0e8a9e616c0772ec3a10cf0c9bea89e7e8364a9242bf772ef8dba3ac7ffc78834869f86e6597bc52f5d34a36547762ab1753bdf98ad1bcdca768 SHA512 ec6a6cfd75b299b2e4d902d82b8373a4c3ab623321748c57b88bf2d9006c2c4ea58eea1d2af7645acfdca72249dc25485691f43a2d47be0d68bdb3332dd14106 -DIST filelist-1.0.4.tgz 6677 BLAKE2B 0d84ffa80bb39f64e03f298a997cdd511d4921c334dfc2b6f390e7407064b7a00c449527468d7155709bb9334aa00c5cf805fbf8a09ba68c8975639f07002534 SHA512 c35704b9fdd2f83acb0902fb113ea4cfe82694975babd27bc970928cafce6423c0faa10dd56c85e1901fd186096b8fec84726b6b6b7f77fafc495e098bec7ef1 -DIST fill-range-7.1.1.tgz 5723 BLAKE2B 680401e2be73af604606eeead42ec1007f9685340ac66fb8294ec13b51d7f88d1988edea273dd5279cd15f824f1a4197f3aca154d63176dc86125e0d8148d9f9 SHA512 62c1a97b75872caf19622e2d583836272dde6d1cf6ad7a300f19e57786e4401d3471cff5670f405a70b48bdced0c98ad8afb50bda23d29a2f22ab73e8415b4ca -DIST find-up-4.1.0.tgz 3745 BLAKE2B edac7376d9bab6a0de8608be3d6645b176443b1d7de1e2d36398aa00e6680e11008c2bff21fcfac292883c482081451654c00140a600b59de1c2cb808c3a8526 SHA512 3e93b001d43f6255d0daf8fc6b787c222a43b98462df071e550406616c4d20d71cab8d009f0ec196c11708c6edd59b7e38b03a16af6cb88a48583d0eb2721297 -DIST find-up-5.0.0.tgz 3806 BLAKE2B 5a49bda1107748c7edb72326c2d9dfdebe921e40badbba3a6a97bd5a69d79f4e163dee56fc3f4f4e021a6e52f4f99a373a47de65a7dea485f8aba8ff04a1600b SHA512 efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e -DIST find-yarn-workspace-root-2.0.0.tgz 6122 BLAKE2B 11fe43ecbc7813c279492d32d8319b09803fc915a92b829d9a981bdb0f7247293e9dee7d551e0f9bcf560046a85de5d32be828cc0eb1863fed32ceaa04672151 SHA512 d483276e3b782b3b107e7867ccd77cc141205d9e3823365a6669cb631ec3e45665687b76816db40ab8bc43e13fb79b488f8f9ea5306e6fed99c6efef3482f3a9 -DIST flat-cache-3.2.0.tgz 8794 BLAKE2B ca20caea45073e8f6d90a0946b18cea3368a28549fbe9c6ce0c0d842428367955c336a82a6322c7c366a3160ff7d54718755bd524b3e2805f6c3e94d155ce48d SHA512 09870435af85b5c50a2e6861ab272da5c96cabb405dfca4a8d91ec18d892405e6be05b6828359a6c50e5de1cda11032f4f52c7132b30e6dc202efa5861be2f6f -DIST flatted-3.3.1.tgz 12880 BLAKE2B c51da803c1a41c039380623bc44d1372c23ccfb8201b6bd02da13c5ac22529499a793104f3888f167d9435bf1c1a83b8235af3ca43fd2ff655c174ee5f4c519a SHA512 5fc72a30b2e27bb2ac3540d277378df0560af6b12de03b7aeceb06fc33469d84d20c11b8b850091419d47a257ecc2540bf0172e7a22333db07e758d568484dc7 -DIST for-each-0.3.5.tgz 8133 BLAKE2B d7d1e8bb1b102a3c1dbdad28c78af3cb9af75483ac2b73d2dfcdeacaf527ac929a763f7f85dc0a9d5096a7d9ab8e5547122592d8b46c62f1ec100f4c7274e34d SHA512 74ac75d9e442548cea0b1146a65c8528930fbcb11682636d52ba53889211e6ef7bcc48511bcc92aed6e83c7657c7b75a2f1415ae5eb8ddc4f36da6f6b64423c6 -DIST foreachasync-3.0.0.tgz 6304 BLAKE2B 0c9bf14759da880c8a44c1ce23dbf975fb1bb4ef8fc17e99d92f34278332d6dfaeca7b754e5380b8eb81f37561580f3a264ccabe86f043858017e7a503bb1e2b SHA512 27e95eafb4dae78170c0d731eb04110e14c86cd7b20dc01132439c82e12a9c476d9b48cabcddcb8b73c301bd83bb7b9b2581167d82fcdd731139776c5c05f273 -DIST foreground-child-3.3.1.tgz 12526 BLAKE2B a11710d1090881205ab752cc54ad669f24be57d1a4921ac0b472d1acd39b9f8bc6101b9b0479768e50d8ac9aa0078ec564f71787b21590c6a80bfc84c2d7e103 SHA512 8085e32aab45b96120cc544903d58241e4892d90e380950e302333c6dbc5abfdfb2a88ccd41146b9faac0b2d2be2a4909982ec65831ec91ab321638cba9d37b3 -DIST form-data-4.0.4.tgz 22368 BLAKE2B baa34a6b52f21b601d1ab0414fbf3563c63b285a1f946bbf850cd2c29f3b6d63c3e84e946122a7c51c4f3ad18653a5cbb2a313a0fbf457e27cffc68e73f7e358 SHA512 2ab1a12fd438ce38f492252de4e3b832bfc0fe3948da30d8b397870696073dc0445528a2a40be7d8aa361e73dedb4ae672ebaf30735d645a7ee089464cc1743b -DIST form-data-4.0.5.tgz 23423 BLAKE2B 38e1c7adba0ebbff61c73f06a4ace9d3674066bdadf5b8afdb96d1a14176e54e8407b700aea5f52e514a83da67a3bff07528b732320be0560ccc0f2b863d6ea1 SHA512 f118a944ba25dfb6cdb366e1a15ebb7e24c4bdd4eb6cc5187054e2cb7fb0bae3a75288364011c26565c34628d641f0248418f651fe549d56a25b0039bdd77cdb -DIST formatly-0.3.0.tgz 7380 BLAKE2B ac9e56d8d34d3f0153c027a55efca6aaa346380ad55a468f7f5c082b382e5142868e3172a229ffb900706d159d1b51e6fac03a9a8a51753b644d48e9e1c401af SHA512 f57363fe8e30ad11728523093afb2ec8cc32f1a51f05a67556ba8755fa21c977f44b0d1efb27ca1bec59698ddaac608e31dc05b2a39bb7354e735814f4a893f7 -DIST forwarded-parse-2.1.2.tgz 3530 BLAKE2B 6d751407f4ad097c8e3e1740b316d1d3849cd75ef2789c287298e07b20aade561d99632622ea0443d091e715985a03d2354ca216ac52f99626d9bc5c59453f9b SHA512 6a54c565940328ca68ac11fbefce7aa57833844cda51598b08393e7a02e02201ecb774e99ddcf3f0c9ca7be1b344945fbd5767ebd1e1a56edc997cefb4bbc903 -DIST fs-extra-10.1.0.tgz 16920 BLAKE2B f96e658be190a5349cf16f7cbea7914b306da6782f8e1e4cbe57988fa932c2962f2b7c88498bd69e86761e8ee8b716b9d1986af6fbff42020c098f3af73475bd SHA512 a115c0a6ae78113463e1e3221731a71d61b2fb3a39adab9d8eec4dd1bf07eecfd1536a16d16becc7d3b400244dfe446af44f15bbf45eb24181e68de38be1731d -DIST fs-extra-11.3.0.tgz 15474 BLAKE2B fd574d31163208f619ae568daf676474ce2471ff7b8f5cb71406f26321738254992ab6d1f8a3a33f4ea147a816c02a618790f59ae0c76dc23346874047a30ce9 SHA512 6785da08be9d5031df3ff8d3db98c928c9adc6fbb06e4ac3d6f352305968f6534b6367391476124201cf459523001dba4e90c4a16f4708e82996b75b68f57f7b -DIST fs-extra-7.0.1.tgz 32085 BLAKE2B 8bde3417250a234a5def62886f2e4d378b5b0f1a7663a4f43cccdccf6e6bb28a23a128f2a3c406dd37a0e0faa499f7ea0527bd0228ff0ce103fdc42cb86ecba1 SHA512 6090da0896449c199c6f0d777ef74033d03034e2703b3ac4e29a8ca81ab99c5884a9752a1f094ae01fb7a54c3a24dbdf48fb57d39c451ed632ff59e2d357860b -DIST fs-extra-8.1.0.tgz 32529 BLAKE2B d12552200eaa0c387de356604793c267e7bee8bd3a813b3ce6a053cbec5d9a5d64e80d1cc0ba997430bf808108163b4acf893e5ea7ef6b33f46bec9bcfc3ee70 SHA512 ca1950800ea69ce25428eb11505b2025d402be42a1733f2d9591b91c141f45e619cb8e8ec0b718f9989ad26b5d1ec3a8f72fe13fe0b130dd1353d431a0eb46e2 -DIST fs-extra-9.1.0.tgz 33668 BLAKE2B 40a5a7ca31f564fbf39bff852148f016ae107bd43e2f28057952cf799dd27c715c319a7bf0c5b66d5b27f4c144b8382b92dac8e07a78271fb3c462bda489f549 SHA512 85c8376667a94b7d3fec1485a91be8a370ce310bbb223ab13b99c20edfb333d5d68dbdf75a0ef388d4fe42fa9bb9cdfe816a733b4d89b9b5729361b866fa3539 -DIST fs-minipass-2.1.0.tgz 4535 BLAKE2B 10b5fd281621affe110587f1553da26ca329aefbf08b343c81cabfefa5d0764a7bcd7da6f6a20665ea320dbf76aede3b5ec2618d7b9b1be888b3e6e4df395387 SHA512 57f26038b1424be47a55cab4b250ae69e58474d0b7a2e0e524c348b1a707d95b402e2bbd995e0b3eb1dce5c0e5f24e5ac3a27c8f08165a9893a39458866233be -DIST fs-minipass-3.0.3.tgz 4516 BLAKE2B db915be3f6dd64716e848878b9be9ae4154b83e626bbcd41920c2e3366d59aac29e03536e44b92aa411a72f6f957295cbb27d9a4949d9ee6803db58437ef74d6 SHA512 5d4040f570a51db9c95927c1ce3926e91bcfb32837b2bc99b74e81110a17705ec42bfc6919a41826040a0c94941f948667be98ee9171d500675f3d3dad4e456f -DIST fs.realpath-1.0.0.tgz 4434 BLAKE2B 60fe9d3e29eafd92d3aa71ef3cfd142b8ff8b29c592bf313a70f1f6306c7e098f6a6d6b34d5a857d64f375e2c09698b0edeb0671e5d8a21a4cfd33017814cdb8 SHA512 38ed291f694ae9ad2166701d6aee48b731cf23aa5496f23b8cc567c54411b70e28c05db093c94e49a6ed1830933f81a0ae0d8c6c69d63bd5fc2b5b78f9f18c0f -DIST fsevents-2.3.2.tgz 22066 BLAKE2B 49fe9ab305aa18ef8fdfd51d0e9ac227050f964458fb16a22bde41dc70ce45ee55d3852689470dd5632b5e7485024383f920c365ac93f02960a6a62e6f92d169 SHA512 c62a8c411e3101e1d3b81f6e5a6f9f1517083a02813223813fe7978b24fb8ec8150aad5b915ca0b74d28012a3007b11db6938769a3e02adf35d8ff5a6fe0c328 -DIST fsevents-2.3.3.tgz 22808 BLAKE2B 785133d01e715ec62902569ce2d7d54fdc568cdeae34173dd77b043c092fed9cf3eea8895eb8dff6222fae275d16c92a901a92480147ae2fb5253521b1b7919b SHA512 e71a037d7f9f2fb7da0139da82658fa5b16dc21fd1efb5a630caaa1c64bae42defbc1d181eb805f81d58999df8e35b4c8f99fade4d36d765cda09c339617df43 -DIST function-bind-1.1.2.tgz 9799 BLAKE2B d32ea3d31143c24a93a2f6d73e69e4add2e0313a46d8e5f14d701b82bff2fac9bb8e18955749d4438de0de75d15e83071d0b79c2b3eeda40def0aa9cff9408f8 SHA512 ed71cdc47eea5fdc46e66230c6486e993a31fcc21135c3a00ebc56b0cb76a40af6dd61e9e8cad194dec50521690a9afea153b417be38894811f369c931f1b648 -DIST function.prototype.name-1.1.8.tgz 9379 BLAKE2B eade4950ad87978648356780649e6511521f1377217855b59fd6aa98bac1e2d40ae2e8082ed9782a5e4542bef348c6a6e4c1ba204548a6a44b36c24925c1d78e SHA512 7b98b0ca874e1e16ccaffc8dadcedf0d81b8aa56c8bc8e606a3cb33e76f94c2c32863029ce7421d41305a2ef5bdf449ebd8e3780224a5f27280818cc6ecb96d1 -DIST functions-have-names-1.2.3.tgz 6003 BLAKE2B fcd6fa646dd2ec635cec56155bd720ec9af0043b1033d84888dfa607d8e3ea4fe5a4dde228a2103358c679d2e05f1d64786e7ddd7ff3433af834a257b1a61691 SHA512 c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45 -DIST generator-function-2.0.1.tgz 4441 BLAKE2B 07e6cf59b570a573ac6d4fa9d0bafa4fdbe7213d9c60424ebcc767fa6fe461c50ab8d296e89b2701ec627ead6570ff7fc49b11a8bc598faad25b04d1dcf4db70 SHA512 485745988262fb26c2d2f8e51cdd191951877379601340f13c04f47638d583e9233a74aa725aa68f4290ef291338b3fa631a2a3afb8038319d707267fb8deade -DIST gensync-1.0.0-beta.2.tgz 7442 BLAKE2B a54d6f04333a9970a5c3860fe1440b9a9768d058ee7ecd2c81561f8ea3fa9d4fe79c84a6ac59592f4e06d64fb902a2cba3a7c033ba2128ff7aad1947cce98d63 SHA512 de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce -DIST get-caller-file-2.0.5.tgz 2383 BLAKE2B d85ec0bf32919c559561c88140e1c161470d5477729024864d5b4710b124384a9d9fd371bbc0c7c6623d2ca4cc3fd99d9027ef5f89e6d7321533bca7da278e70 SHA512 0f214fdc133fdd81d340e0942ffc343991d1d25a4a786af1a2d70759ca8d11d9e5b6a1705d57e110143de1e228df801f429a34ac6922e1cc8889fb58d3a87616 -DIST get-east-asian-width-1.4.0.tgz 4560 BLAKE2B a37ae286cf3f6c0320c9e9f9d08dadcd3c99538435db3bc378ae32ffc079a4ac88bc6c00f0a82c763818ae993ccc49558aa60f22f720289a98f8398bb9703101 SHA512 4198e610e0be213d6e93a471d2c5f6d95eae1d65706dd6f17f57da3ea2754212dd1a0b11182668c9a4019bfa6245d272fc3dae9ba84cd543fb644790e0490ff9 -DIST get-intrinsic-1.3.0.tgz 13800 BLAKE2B c6e23c39992533e56b6f56a4b6f3c42da9a8c41f9ce3c43944accad3b39aa10d2a4112a96f11b63f4c08c0c09938b9ab42651f6b5a103859ec0c146aa1e49c10 SHA512 f5f4a349aa2cfdf448548a7ec5226513a95fc21112ecb36d29a08121a987b23af69dad418800493e8d263a38f3f062435116ab9823c6a9a89583999f8dbf7c09 -DIST get-proto-1.0.1.tgz 4474 BLAKE2B 3779b381c5d715dc116fcca531707d8c0e3701c85fe1ad929b95767bf8508bed0529636e5e35b4cba8648a9159ada24190e5f425ab35c479f16bab5267ee69d5 SHA512 b1349f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2 -DIST get-stream-5.2.0.tgz 4356 BLAKE2B 7cc293031fd7993d626cba785408ea0506a5ccafb1ad1dddc5337030bea3305df977ef66c69180616013dcbb5fe0b1362b41d4e8deb826f78e8f142a33f22e02 SHA512 9c117e175ac06550aefe9eeb8f3800f986f895f617ae997b6ba56626b53cc05f48d422af3ff4303cd6479ce9706d3918e9dbed148cc5312c905db2e84d03d1a4 -DIST get-symbol-description-1.1.0.tgz 6452 BLAKE2B f8217ddbf159833e11aa01031ca697c1b7ffa7733f93b387b8f3e94816d1c25d53ec74624c2fb059a6bb00e65cf8ac1db94a7555b827a74cf8dd7d2edd7a2242 SHA512 c3d50ca96c09c4734ebe8373489da83c5e70bd872f3fb8d4bd8ce1a7aef21214e2d7b6430410b5cfda53746bb38c3f84148a8b4984707998ea7e23f3434e846e -DIST get-tsconfig-4.12.0.tgz 46408 BLAKE2B 136d93357f79cf34cadc6b36e7d91c63796c7cb494140986f2f10a09bf0c589061665a8eaa2edbf9a20d3cecbc88446f8dc96bf55d746fe820ff7cbe67b2c73f SHA512 2d272bd9a36bd856e3023661d82e97e81c51c75ff1f9a4c313172dff1caad9729b60e886e5cd1a2bba4cb12bb27346ebcf789baff95b4221c3f63cede2571c27 -DIST get-tsconfig-4.13.0.tgz 46459 BLAKE2B e5243c5abb9c3e51e634ede0666ecb2f79caa6ea89796f4c5189f20fa810e616bdcb49fd7338500790f5b0000ae22c84c1e7f768e6ed28d797ba35d08527fc17 SHA512 d552936490b006bbdb77e5a7dc03a040fff602ff937d308e944e00711244ef65b592c6576c0c7c3cf051f51ce04de48fce53cc1eb6c034c1f72db96d1fbdf0c5 -DIST glob-10.4.5.tgz 71886 BLAKE2B c118b533e6aee08d3e76c17bf3b3febf15be3e47a8b505c9beaf67c919c3b676ac9b5054128792ebae4f9a2381daf3d221894503edd80dc94de98a487d88209d SHA512 ec1bfc445d24eb18e8edde00fcfc582db5027dbe9cf95a5ddbf981db244395ec3b25be611178820fd89b7ceef0a64f22e2c7af2ba0c59f2f61ec461b337fec1e -DIST glob-10.5.0.tgz 74227 BLAKE2B 8825394d0a6e6c36ec1e9d1bebadcd57e99658c9b70c52dca41446aa91b1bd0cbe287f3b97ca15c888d45670fce1364b308c49392979e76fda277af1391026b0 SHA512 0df5cdf037e127b347dce7bb7059aedcd0aed7029b911789f13a2bcd20056d22ab94d69048a7c8cea62a558f3395bb3634b05b5a9462539d865f63db68154d92 -DIST glob-11.1.0.tgz 74669 BLAKE2B 99f8356e1fd67860e47fb8fdf31ec2abb09d79d3612a7cc7f0cd7ea8f5c0ccfcb60522e4b5ec416c6373ce423f1dad75b980492b261b6fc60a1caeb156df2ea4 SHA512 bee37029268a8aa9bb8344c7501bb6c7b7244acdd724b5c4fb6b2c2fbfcc7d318f2cb72b250ff852ad428cf4ed3b9702222471aaf37a4f0cb5a8ec212f45e373 -DIST glob-13.0.0.tgz 64652 BLAKE2B 05117af13c77c46e618aa5764cc11f7cc514f859b4a8db1de8bcf34cf6568681c3889546f1dbafe13c3e48dc662a93b9faecee2c72ac708d1ddc3e073435e73f SHA512 b6f660a6a93a7f3e0168d67ae99b116999db1ef3ff8c6dee289bc064ec045542f84530399c979e2d87f237dfd503c357fd5dc8046fa191eb86a4a8ef10b91584 -DIST glob-7.2.3.tgz 15444 BLAKE2B 45783fa378e2f1207f5316302df7b37ca233bdfc1fb5b106e4c1c45db2bc9ca2c785c5a341eabe2496977ca40364bb1914716eeb0e6f1cfd9f719ff720674bdb SHA512 9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5 -DIST glob-parent-5.1.2.tgz 4853 BLAKE2B d8e6b8777e339d0437ffe16feb12d7c03ba438a9ddbd0cc9b82d7ff7f653ce30a17978fac9fe4a510b2dc422f433721995e69908811c26a5c2891efa9e024baf SHA512 00e22049009ea62258c0fdc04671b1fb95674eed870587736c63f8e5e2f0d6faf7cc1def64b7b279dd6c0bd8676dc39cf7f4ab33233944f42b906cf8692f59a3 -DIST glob-parent-6.0.2.tgz 3449 BLAKE2B 4bca4043c0d33af7ea29e8c26ea21461858af0b37e27b7054fb88f94f2498026fa783b19f7c3077a01cf6b7d585704b3e423a0f7f599ba68f41f892efcd82753 SHA512 5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0 -DIST global-agent-3.0.0.tgz 30541 BLAKE2B d41c1a47396c1cb9c8df20e9a93d5e014bbb0b2f601e1ce24fec2c53250313005aa102923f64689708dc380cf229384e331a674e66574ab658b16f2ee89e2704 SHA512 3d3e9745e27e0f4ec9bc6a3140c913eaa8e2fe354d7d7fe1dfae171d9396791cf2eb8b1216bfb1279397ecb2376f830f43374be07f18f0cd31ccfa6c54cc00f1 -DIST globals-13.24.0.tgz 9574 BLAKE2B b0b4f7dfc09c3833673dcdf187107d8c2f52c5ae1fc211c5311e85d10f4153bfa4acd3fc927b4ef7faf4518f7f4a79a5155497b7540c5f2ebdb017875fcd4c3b SHA512 0213b9414723f2596b6c6d3d89684f536076d38275c673de2fc910995a2b4accbe4a38f5b24f2023287a714a1c1a61f82f452e840272fa124c440e26800e2615 -DIST globals-15.15.0.tgz 25441 BLAKE2B c4d70f0f95a7e1bc0a6e042580fd3b036c7bbe526f9a3c97c65a5c37f4d0001ffe0c1ae44530beab38ef87b28dbcd3484f8ffd2693e40bd69ad010b6984deb9a SHA512 ec00b24f7c26ca9dc8eb54b87c6ebcd8bd150364460fda2d92a189230354305d52594a266c8224f9a7f5ba7b83620326d3cd9a1d8c03fa6cc9beff48bbc76c82 -DIST globalthis-1.0.4.tgz 8504 BLAKE2B cf156579e4e5488f208b3420321acf7f2bd57a006b80ca46ca9e36e6a08c1e4c3929c91b6184ff491e8910dbf356eeedef9f9264b7d822097faf6a114c141e54 SHA512 0e92ca6cd5385b2969c49ca442e8df09cc185a257f2619b9d06a28d30ad520b02fe633abf5df87f944773e14820f6ac2084220d2e73e1be9ae053c03e782610d -DIST globrex-0.1.2.tgz 4872 BLAKE2B 67f124d915203a19e18ad068bda04361058e41a03b07838ecc9e3b2ed86c5ded1198bd6156f20f60589006dd2c20df46f2e216fa262eb4ea89c1a096c8f93b98 SHA512 b872606f000cc0d15fe662ecb7b2162cd835e31d4291eaa09496ff2b77688b8770eaad88bc002633f63cd647afcbcdf03fe4acb7e9eeb454d838683777596cc6 -DIST gopd-1.2.0.tgz 4584 BLAKE2B bd2aed237b84ea233127880113245eff54f756433fe9434fafa04e36e3d9f04e0dda8cb2b1dc2c82fa65730d710edf6f29e5ab31bd956087b2507669bc9ceab8 SHA512 65429187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46 -DIST got-11.8.6.tgz 67729 BLAKE2B 6c7004a23acaafd9ad541522a462aba605efe9e96d7fb1b26d6128e2b7c14d8ed1a9bec9935d69ec904a5d267af2053ecc25c77d1c1821cad4d28f8c4f8c59e0 SHA512 ead7d9f756ceafb6ce5e72bb3d10c21812dad47e14d3cd181cd6804362ac30694b13345b938e27b1917613521e45cdefb491cf55b2826207456da18eda58ddf2 -DIST graceful-fs-4.2.11.tgz 9804 BLAKE2B 3973d3d7df7e12579b31eebb7795d31f69cb9b745e33fe967d2387d2193726b58e1a9f48e2ead910346db9d093991aed626345d93bad00c3dce7685ab141ec4c SHA512 45b279fe398570d342703579a3d7939c12c9fc7b33595d0fef76dcf857f89d2feb263f98692e881b288e2f45680585fe9755ab97793ade1fcaac7fa7849d17bd -DIST graphemer-1.4.0.tgz 58380 BLAKE2B 33f8d65c591404a675fc8cd928be0ac418edfd19277c0451d7a196f0f95c4bfb610770c2df387862df30aedffbb12444fb5b3cad2db1019d93de32dc2212fac1 SHA512 12d2b0a0eea4c422fd58ee718a98874d9952cc19bb58b4fadbb4ea0bfb9545dd072a6abc357c9e6e7358c43a018bbc2df1e4d6ad4aca5c2395685abdc759206a -DIST has-bigints-1.1.0.tgz 5837 BLAKE2B a6b7451952fa5aa0c631601b9fb051349ee75c5b7463e96cf66f14bc063cab1d60ea832799362683f8407f8d0e34e0cef9ba000d712c767b2c35633d1c4acbae SHA512 477a5ba64708aafd8f9b7754c208dc943455996a53256d8370ccdc221117131d6887f08430e6cc9b728b99124e76f84cee8e2e4019f0afca7344adac25622a7e -DIST has-flag-4.0.0.tgz 2206 BLAKE2B 205d00c6f1253a6319778c1218742c344fee1298414ee555fa543b7dddb61ebd9c8bb2474b9983281608e5375541d71e19329ad3d30ddb8491e157b382fb3135 SHA512 1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d -DIST has-property-descriptors-1.0.2.tgz 4429 BLAKE2B c80cbf3bef05ae96da189328b5e3536220db90bb06275661f6aeecd84f50bef7195f22ca5ddd7f4d6cfe9febd240f5b6ffee0df17407252718ec4465232ce9ca SHA512 e7924d2ae216fafab829ed418ce4e333661cb5022f093ec61731f099f64f1a8e709eb82489dd1842d9c095e152aae9999b86b3de7d814be7ab6f2e62a49760ae -DIST has-proto-1.2.0.tgz 5434 BLAKE2B c382775f01447541265e69f985e291829d81eb7c417b346c1e2995b2598d495be33a3c9edefbff6ea187018d64769f2c319e2d695b76f56e96aaf88e32439ff5 SHA512 2882fb7903df1d0442f3e5e5b9a230ec11d4c30a8bd7d6d09f887336076bfb5c17a14d0a2a3eabb9fbb8ee5858eca6c94760ba4faf8f7f237411aef09124bea9 -DIST has-symbols-1.1.0.tgz 8059 BLAKE2B a08ba03d86e1d8aadc445e8efe65cf6b7f5821fd322d66272e06ea6097bc10bf157965166eccd732a66e23880af89cf89be2a4e404796003394bebc460f3345c SHA512 d5c0cd77027625aa2199bdec8383a629a301c2e0b8f2c6278b91d4c360efb02f0b8c64cb2bd87e79bd57e91cae3877b8853d142c25baf22a26863528294aa53d -DIST has-tostringtag-1.0.2.tgz 6465 BLAKE2B ee7e1e28a23da5af9b248f6de541e1828eb80c3fa8d2f793e22674b0354a2aacc2fe25e995a91cb43d2f3dec5f1c0a057c3a5f6f94d8110732ee8b00fc199f83 SHA512 36a00307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397 -DIST hasown-2.0.2.tgz 4109 BLAKE2B 85bec3ebfabecab06a0e8ad3fbd7b04023e0d6e0bca0da6e68ba391590b12997d824453e22945825c614da2f9a52499b0a5cfbcdeada5f0047851709e3ee84c0 SHA512 d21254f5208fbe633320175916a34f5d66ba76a87b59d1f470823dcbe0b24bcac6de72f8f01725adaf4798a8555541f23d6347e58ef10f0001edb7e04a391431 -DIST hosted-git-info-2.8.9.tgz 8110 BLAKE2B fce34976699fa006f135d4c255a5b641ea205830702f3744009b953a5dbfee218b026994c0e7ce98af8afa51df7818d6aa49bb898976b0460b8023dce97188b1 SHA512 9b120301bf4bb26e83a0e27bc47fb9f97e32d4b53fe078b9d0bf42e6c22cc0adc9cd42d2e1bc24d45be374182f611e1bcd3e2db944220b5e451367f91db2ef63 -DIST hosted-git-info-4.1.0.tgz 6805 BLAKE2B 4a54e10c826b32ed5d3ef18272e2c2b4d9e62a658d3a2a4ac815a70ca5917487730f005983b2eacec594a77ce1fa6ee611b7c865596bd1746db0143168ac9b72 SHA512 9320ae10e5a326a66e0db447ccbf15f77373421c0807bd681564b2cd5a3e28f648fa99d03cfc6e71d92b399be42d19eb7f9511b1033e209d3d0f0dbd71100b20 -DIST hosted-git-info-9.0.2.tgz 8051 BLAKE2B b6dd6c683ab70c7367b6e89477fd0a269ba70b53933db103059f05e1370d9b3b2c96bac1afb1a80b30ed4780e0e209deed26f4a8779048e2859d5282a8a75ecf SHA512 338db687ba3f051deb98243c5078bb732c8ca8a96d74ff54a3e2767d72be452018fb04dc28e211ca14ee2afe2a9fe0c97f783e3cbf3dd00cc8779299a57f8206 -DIST http-cache-semantics-4.1.1.tgz 10811 BLAKE2B a767a1f5c50899495d7a0f39815d6c3501219e61a9eeb08cabcdf6919fe7e883242a2acfbe158c510c1e89e38ee2b6cf38aa5c100b685c385a3ec8eae07ad084 SHA512 7abdbde4328f56c57cda3e64c351a3b7e00303f5d81ec6a397cd9c18d406d9eca83e4be05215fe9c32327a5ce12166dbb173f7f441dc23a979b58b36158a985d -DIST http-cache-semantics-4.2.0.tgz 13982 BLAKE2B 37df93d32a3ec1edd0653c479e9f1aebe71d0719d11774af003c26e32d4fd8080b9ffea153fd6c57ed40265863f87629730bbef852367bcba5644053c6c72adc SHA512 753c5cbcf5ea3ef5c1429ab9754afa9843095f8a08105bfa6f0a26dc50f02910ecb888e324600daa106ea009fd73545024874029abf7dc40fae44db2b3ef3b41 -DIST http-proxy-agent-7.0.2.tgz 6290 BLAKE2B 014e989d2885ab80be41b7fb476eb28a25b1dca9de7eeef014bc6d9f9d2e40f19609b3987ac1135cd86c6fd101e78a90de6ef365db5b52b1519d10d3a28bc818 SHA512 4f58240226180d6631dd5e419b2bbb1dc7dcbcbee652b4d688ceb239f6b73c8a6156227f8053dbbe2750faf7aa48e1dc8bf3f105c0da6de50d0b3a4e3832598a -DIST http2-wrapper-1.0.3.tgz 16062 BLAKE2B f44ff748f7836829f03c2cf4f3ae67916a5aece2450911b2f0e1d996da95b1dd970b8960ae075847826d5f25fe3f1bdc84dee1ef918c33845585a0282aa030dd SHA512 57edb7b0332bd765a7cfb893703789af73ba008c659ef4ff6e66800003ff5dd6b7e42f74a7de7df69d05d5e1d1fcdd4a20b592a1654088e3058c105769748cc6 -DIST https-proxy-agent-7.0.6.tgz 8998 BLAKE2B 088c9870b8934f6bf97138d76cb3e00fb58322b489d19705e318adfe02db7d21aea3acc09645de30ce7933df48929fa3bafc35cec6fee953a87725b2bc522b75 SHA512 bcaf4fe7f8947dd97de4023e255c94b88715b5de287efb6b3abdc736d336cb10bd6e731b11da77c74d4e8503678dbf082588b7f159531379815f071fbf2c2e4b -DIST husky-9.1.7.tgz 2448 BLAKE2B 47a575c091b820ece69715028a4e91f305f28fb15c47f782c7c3c9e4e349f6ba4e23940a6ef4c89a45d2f0e1fca0ee32223eef633b6a22c2dc83c7e49662738f SHA512 e60b39cad68d8c1ae1e4ec37cebbdd51463ed15c48b9654be22f62aede9fae257e06a7427e6575d4241358c8816161db5e1728f89d641df4ce52478f8420ef30 -DIST iconv-corefoundation-1.1.7.tgz 65652 BLAKE2B ee03a2fd61a47e778f2bdf825fe5f4fd33de9c46d39b48f0347a116fd7f61366c0ac2eaa60f9cf33f739414fad09439b78bd289f3d99703dcc0f82a0b7aba2ce SHA512 4f5d2abe4c34cf3e309e6e7ad253848343e8bd5a945ee3858611c0922c70f3fb32732ed326deeffd1ae410a1109c0c36be23d226eea202412bc67cd1d20f0fa5 -DIST iconv-lite-0.6.3.tgz 190667 BLAKE2B 617c509510af917109b8ee12fafa40924c660a4a9a330ebc8dd9ceace79d571b592dc6eff4427cfc36ac845b8dc10142c275a59ec36504d81770f1be853d2e56 SHA512 e1f0a4efdc2c84c773329dab1f4eaa5ab244e22a25a8b842507f8e8ae22053ef91074fbde0d9432fcd5ab4eec65f9e6e50ab9ea34b711cdb6f13223a0fb59d33 -DIST ieee754-1.2.1.tgz 2886 BLAKE2B 399f6452d11024c58069351de49c96a857f301b554a46081b287df07e239cfe107a068755ed9eb65fbca22adccf950805f24982a92d69467658997018f958e20 SHA512 75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68 -DIST ignore-5.3.2.tgz 15266 BLAKE2B 940b85c0c414484178efc710272d4398ad8fc28bd7f8d19c9d76052660c77786a2f24aa760252acbafc6ce0bd2b9050734666c88d3f377f54431e9752c57901f SHA512 86c053354a904c3c245ad71d608da2d3a63f9d4044b0d10324a8d676280bbde832f240ee2404bcb91969924710a721172f467fa630f2e4706632344227682afa -DIST ignore-7.0.5.tgz 17273 BLAKE2B a9daa68685bd2bc5f5868fdf1d92b3f2eb639e03fc4b17b914d7d596d8a56fa120aa5902cea47caf5f1cd09fee7291656d12e55b7e6589c00fceed59ba65915e SHA512 1ece7dc4135f508ba730581601b197e5cabaf3ddc86d68382a7ae36d8c17dedc74ceda2b5604c303a076b317fc7a31c9e30cfc06a194318967ccd05eaf936f1a -DIST ignore-walk-8.0.0.tgz 4817 BLAKE2B 111945f028b46b60d6c5caa1e1bd70af6b3979e99a18d52cfad50763956d5a8242e8a10221f0266d85bffa539c1070bed4663d4bdc2156bb37b9f7b3e6815c15 SHA512 14278c653e0d89140687e62478a32d5ab3a60605a31e3309dba5905ab450ca8cb3a9ebdd68649a9146895b9c506268cb954564daa5270a361505ac7d10a2a0f0 -DIST immediate-3.0.6.tgz 4905 BLAKE2B d29ca5e5bf91c9876b17cd099d7be18a8168989f02d7445635bd0aa8a6407ff86ec814e1a7c56ed4736a7022e521814a7cc8c484c71c53f1d8759f434f1f0bf1 SHA512 5d7385b72a838cd0c043155f631b85ee0f4897f21b5a69a5420d8c60a387f04c484f5aa0eb1738cf24b71da10401382cd5bb5fcf1ab5e5c894898ee08d25d119 -DIST import-fresh-3.3.0.tgz 2332 BLAKE2B d4d113f1723c02376c9d566ec338e261894cfbc80f5ea1de71434002f0b776ef7f8b03231949d97910f62909381d8eaf0f108e268eaf1100e8bfea7822b766ad SHA512 bde6188506be0f54012b39ef8541f16fc7dac65af0527c6c78301b029e39ec4d302cd8a8d9b3922a78d80e1323f98880abad71acc1a1424f625d593917381033 -DIST import-in-the-middle-2.0.1.tgz 20947 BLAKE2B 01d5c9101ec12e0db1f43503c781c2d5c5f52d2b08a8dbab4a471d8fd90d8fac0c978212328f0002a6150a4f7057bb619e27ccc0d64321b76da7467e3cfd01ff SHA512 6ebb8ca49ef1cfef63c06cebc0485682f46b94a4580910c1adf53ebabdc571ab185cb243c53aee27fffc8363688fe405c9105ea9ba63f01867e056f0e878ef84 -DIST import-in-the-middle-2.0.4.tgz 23053 BLAKE2B c57159991df682fbc18361243ae36213f9c315cbcb7c097aa2e92d7e975226448e67248793d2645c58ea6e1f51a840546dd3be92554230c6959d69630e0f11ef SHA512 025d243296b406a7ef0e7c63c4695a6fdbdd434bd30ecf364c12ab0f9f57f6345e5283c0cd21816fabc60f3314305046cb20c5d374692d3e28c469fa069012cd -DIST imurmurhash-0.1.4.tgz 4312 BLAKE2B 39edab907ed97bab9076ea5559df1be323b276a2cb39658b24075ea2ba54c689cd59ab06f50836dbf36a7627b3cb17bb748190a45b7d3e69a04f724776073064 SHA512 2665cc67ac2ebc398b88712697dca4cea3ba97015ba1fd061b822470668435d0910c398c5679f2eece47b0880709b6aad30d8cc8f843aa48535204b62d4d8f1c -DIST indent-string-4.0.0.tgz 2065 BLAKE2B ce830c62c64dfff1752bc7d5171e5cb9385548cce9d86b0a4c1b3feffca8eb33f09528214372af70d684ffb8925171d02bd11882018ae56a3c1864e7cdb16858 SHA512 11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2 -DIST indexof-0.0.1.tgz 698 BLAKE2B d2ebd4574d0078469f501f46b101e07aa1d55d85be92f36410f94d33c7d2dc041938f80ea7ac0822adbce79ca0cdf966bb24bc36ef4e905a6972c6c0c23a371f SHA512 8b41bb84b275cf40c4f1db2a25adabc9c8fd74198d2a05c1be8b57b596176a453da22bdf07d523d99042dbbaaa79fd94e7cfd92f06a5c5ad57fd10c27641ed56 -DIST inflight-1.0.6.tgz 2041 BLAKE2B a90e535b464618a8e547d1f08180f82f03dceff6da032d81f4fc40ce7d2f525321ac14dcb3a0d25268acc07fdc2fe576962c4bfef0a5d1e6c5d76b204ce9c583 SHA512 93dd88fdbd3cab8c2f16c71708bbea7ec1c2ae3ac5ef2897b10b8856f544ecdf365b7f9aaa9cee51d05b7e159ccbf159477ff82207e532028b3acbcf0eb18224 -DIST inherits-2.0.4.tgz 2030 BLAKE2B 4977cc86cfbf0466b3fa8b29961b0b0595d15d46590accaf360c4f25d916fa8213a6e38637faafe3a7d56775931ff0e6b2493925323b794014bdd755a080cd5a SHA512 93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1 -DIST ini-6.0.0.tgz 4910 BLAKE2B b0294edff61b735aa33eabafea01992a939f99fccf7f7dc3bc4efbb5e5ccd1fbf141950f533597f900d42f47bb97f9527cb426f28c8f5e2dcce42ae565f2fd5f SHA512 2014dd224cd934ea6a9bbab7751a89bcc6a57578c31d69040dfaf0184413b3979a40c595f9d8c0851fb06a1c8d34c01afaaa5b0d4841315b7864a370a4f9bbc5 -DIST internal-slot-1.1.0.tgz 7836 BLAKE2B ec84381af0245b50bc994e22d3387a44a53f532fedcb51c4f9e833bce227b189d5bfab5f48777451be2d117c148a5353f09a4beb01bc10cd98f9c5e00115c35c SHA512 e2077b56958d40d07850a28214555ca75015bfe14c3a0b3d34ace31cabac73c8d332177978bd4da90a8ea44d0accc76cf34e3fc87960969deec6096e3aa00f2f -DIST ip-address-10.1.0.tgz 37185 BLAKE2B db2ffca5e129688e4366ef46ffbd4c9981dcb9bfa22cbcf67b0859d193f35374acba3fb011ee696471a640608bc0878bb46ea2d3686fbecc6d0bc09bfac9c413 SHA512 5d70031f15e6bd3f7e091c615e0e7a2c9a2f13e6e65a711607bf0b07cdd5653a6b29399a0b941faee5e8731cd36762a5d033702ae05d9488632fc2de63c49ff1 -DIST is-array-buffer-3.0.5.tgz 6323 BLAKE2B c70130e1403915c81707c20ddf3f81b8250a31b2ccd6e12937255f0f2c8e42369e5409ec6bebec4179735983de480c910420a8d67c92ab4071a2c81ba862e0e9 SHA512 0c37c03548a21b6c02d6a6b03faeaa953ba025e2f91f2ccca5fafc94b2be8cc422ac6ccda1dd01d7670507ff6af37f11bb6eec0707f0efcfeb76853b444473e8 -DIST is-arrayish-0.2.1.tgz 2646 BLAKE2B d2e5b8368cc3fe2132e7db87096deed52b471802cd4ae75474cdf88a40290a90a5a4591daf782bc91a5ece90278f20902235778b09d5e4fb52ac4b07a1a26a8c SHA512 cf3d3a4bcb74a33a035cc1beb9b7b6eb37824cd5dc2883c96498bc841ac5e227422e6b38086f50b4aeea065d5ba22e4e0f31698ecc1be493e61c26cca63698ce -DIST is-async-function-2.1.1.tgz 8157 BLAKE2B 6b725c40847b15d454c744c8cdbf6ed1bfafc6350aa02baca0ff93f6a6304480ddd9a6a0fdb73827cd2a8ec11f48008323e9989b3fe73f382c5444e2332fd7e9 SHA512 f5d80cfdc6419cdbe3cda3181d5a31c5f3e3d905eddb612fed2bae3ebb3ec5abf4ba4181d12e9de3275974488ce3c90bc7990357e4013eba559c5c9e7cbf2491 -DIST is-bigint-1.1.0.tgz 6689 BLAKE2B 80b502c07f4d3db14d787468a19f4f28d8d0aa9ee4adbf1c9180947dbd2fb245a6f48df71da4ce47c64d89929ddf4af9ca7703cfe97395bb5fabb2ac2e092cfd SHA512 9f8653dfbc06efc8b3d37c4f44a26b1d37596dedc889ccae704b5d46c579ca09707371b251f6c07e949e0f4149e3535b50d4ade706e1a9fa757d2f81827bc315 -DIST is-boolean-object-1.2.2.tgz 9108 BLAKE2B d7d82710b868630a1999223414e2a5ca66c6b64dde93949eb29af9820efc86cf9768f6f1602f99c3c6ebaf0f977eb7c9ef92a8ee16a054925c46e835ac308ead SHA512 c1ae7aa36fc4949318aa30a31a45eb8bb8ade456de6d6e6eb0bc3f9cf98232ce43799edece24986614a63d19f4b71a9e5b82e702641053b160a8ba6c10528ce0 -DIST is-builtin-module-3.2.1.tgz 1961 BLAKE2B 82aed1839611030ba9c7431ec845709ffe9026b243b4b56efe11bd9570ebe8f64f978ebf7d8da13af5d737281d90f478b5e341910e615e2c29c17e41af251900 SHA512 0522c4dc79d5dacc99d052b488c03fc941a995478c98dcf8016e5f9d3ba76c222a662e2f1b75a3253f451cccb90faf719806011d742125d00b769c15c55e74d4 -DIST is-callable-1.2.7.tgz 9896 BLAKE2B ddeb426ec90c2fd0c45c329b6d70b1cca1d9cf4cd78bd1c59ee449282f383f0596f22aae5c1acf11f9488527c5a30cae161946aedaaade5f4e4d1d8814d372f5 SHA512 d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c -DIST is-core-module-2.16.1.tgz 10079 BLAKE2B 17d8e4803c1a97367bb2fc324f28e05412564457658a723393743412f366b2b057760cf231adc41bfac528c46212504dfea55797458a15b4c793d9e4ef0e1fc0 SHA512 51fa1e300e9f209f304d81445237a59da188ebbbfaf8deea5c912f42e2066bdf65e31b02aee498395490d2e3c0367e1d0339bc96460f68a2ebae28cbabbc76df -DIST is-data-view-1.0.2.tgz 5343 BLAKE2B ccd8d51c13a31a96f3d82ff46c4337214dafb82a0e25bb7cf0d6f260352b12532d445c2f77b98a03264de327c3f84b8cc5d2afbb3fa34943398116bcbe9a49f0 SHA512 44ab5617ca46992f3b8b60fa82a42efe5ec461195575fcde98224dfcfdd43acfffc75404ee67e1bf31c802905345fedac6f4fa0cc1b04b00576024f49df07dc7 -DIST is-date-object-1.1.0.tgz 8567 BLAKE2B 35fdc2bb26fb62ac004573cfce7ba3d71eda92ce39f192eca7a517f18ffffd121dada688b11d4ca8e2f13f84436a768d4a0385b1861a444bc11d814a8e2c3ccc SHA512 3f0c2111a90754a4dd44d54ec3efc6ca1d3e33394297847aa8abe486ebcbb4f320808d56007b7db0ec19c502d21a951a0e7addc83b289a846036709f28d4975e -DIST is-docker-2.2.1.tgz 1689 BLAKE2B a253f975c7f7b444ddcadde77848b30baa383336501334e9588946b46beb155989b140714f178c322b26061611ab917aec80160b1e1cf960c65afa54668b04e9 SHA512 17e8b604ab05ac7eba89a505734c280fcb0bcbc81eb64c13c2d3818efb39e82c780a024378a41ea9fcfcc0062249bf093a9ad68471f9a7becf6e6602bef52e5d -DIST is-extglob-2.1.1.tgz 2663 BLAKE2B 61ba1afa0040fadd8c2a7faf79063b5ef53fbc54a7e57f6536fbedeaba8e8d37be60842e448309e88eb65b487eb5eae70be8e1cd0c28c4eb379506d2057de6b9 SHA512 49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1 -DIST is-finalizationregistry-1.1.1.tgz 6315 BLAKE2B a1572635f465ce0bbb14e8e5c3be1ba61b978038ed657a5077019db4186ab830bfa6e6faab2b3de693679a990ae5244833f317f9ca095b3db78132e12864dca2 SHA512 d690ba37ca9625b5a83ed12381c2f6c7285038fe3dd44423794a37a9329c995f184830c9ace7a97c6f29702ee1fd0827407612bf4989dd9fd95b199ab55af2b2 -DIST is-fullwidth-code-point-3.0.0.tgz 2169 BLAKE2B 3b40a71a06a3d46a66b1f99a17f5675a9bb33828e8304fd33395f7923321df573d4daa35ff9b170eb2274dede84906ee12276110d2df5b281359010f3c1ad5d9 SHA512 cf29a6e7ebbeb02b125b20fda8d69e8d5dc316f84229c94a762cd868952e1c0f3744b8dbee74ae1a775d0871afd2193e298ec130096c59e2b851e83a115e9742 -DIST is-fullwidth-code-point-5.1.0.tgz 1679 BLAKE2B b5aa5a61466ac8cf0373977bda86fc4ae350b51f58aa54956b9503ea93fec1574d1f6a4b64a38f7a114fab1eb67eb6da28416ab5a9bb72cd9667e0ee561ce9f4 SHA512 e571d8692ca2a800dbe119d9d4175a77a70fa7c4e88ac7b84f312370e6031d991309b2a089497b593502a4d587bb1983b7dd709ec64173dc629cdce8a6fdc931 -DIST is-generator-function-1.1.2.tgz 11594 BLAKE2B 76c532c9f33c022aa0e4bfe5c4f1faa9ee51b061dffd958532fda42c43285defdfad7a5d60b5f4b0c661a5c30ecc29ea028273d549de78c17a5c0c10ec4db96a SHA512 ba9aadd5290690e0d6f6db06346e66b574d7b440a2cf0b52da4035eb533e8093dcd7175bfc0c7adbd69fe98ad3c1c39e4076dec2b3cd944e43c7b933bd74e2cc -DIST is-glob-4.0.3.tgz 4255 BLAKE2B c90396b2160b7a9a0331e92b58b3b6daeb2613dbe56948f6ea592ddfa18d68c3eb1871aea6eb06ebeebba15025a9aea0f8ab384f87e3a20f8521996a0c7803cc SHA512 c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a -DIST is-interactive-1.0.0.tgz 2412 BLAKE2B be10cec285eb8a4a155e9a0b3f41bae521fb4ea680dce415ee9b684aa4d92a43d59953e899b753bee4385c276e482200eaad3fc25b75f71a5b5c99a713f38f35 SHA512 d87bc810a468a92eb682e102faa063a6f46e6dd5fdd7458232e25367e23dcafa8a536ff5d9e48be78f47330b5a6dbe28ba9763dac30fe7493e5c97c1ffc244eb -DIST is-map-2.0.3.tgz 7928 BLAKE2B 34398fb761ae5d476a974bd8380842bc886498fb04753bdd436263dacb3cc60d9f6416f09e7e19b85a1daadf10eea9fd39b9ac9359e5edb3343023a2d9035406 SHA512 d5079dd3f1ebda6f98ab19ccd3d0a303677f8ba61935f17a476a1100e8f7e9e51d4baa8857f86e3c935212929bba97b016cf99b09971b238cf6dcd3f69f5ba2f -DIST is-negative-zero-2.0.3.tgz 9383 BLAKE2B bf444769f4992ef9d40d2d406bee2c25d51382be44d60da153df0a62ee034ef8ac8e0bf02ab62199b597c63461645fb192e03b2a45af8ff372a19c53909382bd SHA512 e4aa08bb6360a727a4ef98d7a1d16f9da7c1e83260af7bbcbae2b42c46498eb535f43acc0f7115111691f2c8f3f0208682966fc4f97d4ae13518c54f147c759b -DIST is-number-7.0.0.tgz 3730 BLAKE2B b95bcfd9d5eba614ad3832e0af829e63b440a560ec6d1a2f4021869a8d3c913c591c80b633f835f4bab52e711bbe8682275cdbadadc3c1a5dce20e25a4ef7fb6 SHA512 e350a27e483a7bc4f2952a5db53a5e2d532abd20445734edb47bc4443ef8d7ea6767c00dbf4d34e0c44be3740a3c394af5c1af369e8d6566540656c65d8c719e -DIST is-number-object-1.1.1.tgz 8796 BLAKE2B 46093fcf3f4801105b998b0bc9dab1bcdfb99279a7a205c8e85e93246ff2cc428482b11646e7f068c0321661efcb3188a03cfa6c2b2f243e3658df04bc6da824 SHA512 95985c96e984d46e95603f151dedf9c0568889ff824f2e522488b9fb7cb8a6c0e05aee303c3a01845f0dc543a29c473ba478224ec4fa31a05bf76aca8610fe5f -DIST is-path-inside-3.0.3.tgz 1996 BLAKE2B 786f4cdf1863c7dbb03aeb724ce7fd19ad79c3eb6297d801a90b86838d10c9db9a69c50284894e203dacc9ec1448d44ef26fe6d23fa3af5d48b7000a05e247ef SHA512 15de200016fec9c18098aa2ef1e31fb42ba94a2af9951c6a7f8683fef774703daa7381cbd3b3a309eb8732bf11a380a831a782283074fc40813955a34f052f3d -DIST is-regex-1.2.1.tgz 12196 BLAKE2B 593ed08132c17f4ac19b6b0019f92b73b906fcb54b55c99a422054a8b06d21b382f294931e1368dc19f53362e8ff8fa7ac6c9abdeb06795c6f7cd5938d560eaa SHA512 32362c2873b93bb982b26446c5670b5a1785a8df4327fd939a782f8ca5e285ee9e7d588fa9cdbbe3e171ff87d88ffaf4dfe112bc17535cad15ead037ae07b3d6 -DIST is-set-2.0.3.tgz 7653 BLAKE2B d750a498a45bce4d2985f5ad84188a947156a5fec8e50e6f2a2144cc4e2fa83b19f0004e1986c9a327644d3166f56489f8b70d4bdeeecc7c11925e1fe6e58b01 SHA512 88f0237abaec7b6effca018bc70f84051f5a82ff58eae2de61524cbbe40d0a8a2e275ff5ae2d261ab716a5f0aa159bb3cf1dd68edc311b4f7c5fe9f83ae4643e -DIST is-shared-array-buffer-1.0.4.tgz 6324 BLAKE2B ac271f46369661c56c540d6e26a1c116ce56b0207f1ef8dad965cd05307a41efe8d6770374d8ad602734c07ac1371f5beb99a559e5b845b7325a2396dbc4fe6f SHA512 21259a73c76bbf86467f02a5e6c9691c6f4ec0f36dcb88ce58f448841a713a80fe86a2138b0ba2a4e4366cdb61033c00dc1e1f2233b83659fbe0dd12f5bcaaf0 -DIST is-string-1.1.1.tgz 8542 BLAKE2B 21041e5649e9b77683f96ce38b5c76d743fb23c537dd3cddb8475d3d3efbd11b750aa22441c3496c5de6934ca853d3ec2c5480bd97395323080c2d84d8dae9e4 SHA512 06d11e4aca1a4239523c17a631022b635318d2e33abe74b58397e6b9f60eb67c4b19464cdb5efc3ca6e1b24ec57efe7c217f99b5cbe81b071c62c8743e096400 -DIST is-symbol-1.1.1.tgz 9572 BLAKE2B 431b9617715216e9fd5dbd64b7d5f767dde6d3bc58738d2fb337746e0ee72a8017e3927cc1c79c85016895ab8d84b442fe4bbdec08f588f38b1a8111f17a81fa SHA512 f601b1e864ed09033bdc18261d05df0e62ed7e38d35034b2a314c26e9e56b688b10217e0b038ab58871543f207a6f2395607798bf27917b07d70dfd69556c2ff -DIST is-typed-array-1.1.15.tgz 7454 BLAKE2B 0de95b5e7414af65019255ab73216d208e21731e56d19853c51ba80b6b9c3069c169f0a46e857dee6d398dd0717d97181b04a830af150c9207afa1f156b737d0 SHA512 a7711cb227178e2b7b49ab245c7b35840f75431813c38e85bfa10528a192e434452c3f322a7a218c5de1c688eef786ff39c319a10ba4ce93e9044f6e2d52b381 -DIST is-unicode-supported-0.1.0.tgz 1882 BLAKE2B 67b523e7d94fbb7eb85c61d1464ea956a70ffcb174832cd324e1627796d0d4b330fe4e88581157570118f9787b4cc1f5f7da84938131d882b23d444c27efa6e1 SHA512 927c46daae140b7bbcb2d446c8054908e771166bf90d989171d94868041701b49f2726be3a1a29368b4b42bb2d061aaeaaee19a6e29b0dcffc4ba9a05e03c53f -DIST is-weakmap-2.0.2.tgz 7794 BLAKE2B d3f6c5a1f26fe9712342456ea632d2dfafdf35ec5893ecccfdb5af816e9cde9313f6819e9b163f20e38c7a7af4c5ed03a1b1499f547957ea038defe66d8003ad SHA512 2b9a5760e9bdc2a6354608e92f7613905dfdb678b55da8d42246b04cb528f446445541606b981240917c9cd4bb670250d36cbed5808d61c321f8721fd59a84fb -DIST is-weakref-1.1.1.tgz 6265 BLAKE2B 49b11d8f86614a3ebb35d9b5cc1a553500fa9afd5b801eeeac30abe9ef267b871e6841ad19d664070aa20ba3b023ea08f122bf48fef3ad51c3d612d36c5d98ee SHA512 ea2f661964a5ab334c12aa42a7ddcac114b5b943a8764d8e27a6feb2aed93c34b2d96b88e4d148c69ff6e784f2b51f1fb5e7dec645a7e713621d43693ce7d27b -DIST is-weakset-2.0.4.tgz 7471 BLAKE2B 0f744ceb54f0566cdad2cc20200c6d1fbcf76066483ba165c390c321d7de77f603b5091fdc4773c8f841ed5668212323ec752b4a457da15e784bb72ba205b120 SHA512 99f7306fa23343238a4ecf3809032b3b05b881071a4ce016274cf32429765923c3ad693f3b30da2265851f77635e16f6e20e1eb9d65f2d1a3302f3c6c3877d85 -DIST is-wsl-2.2.0.tgz 2011 BLAKE2B 129eaf565327a54ff29ed3e18e45a33c4b1ddf7530749e601e546a373aa081f7cdfd7a4fb0161d0c59300e9bac0997a610f759021098749550b11dab50fbdcaf SHA512 7cacc0adad2b18951407018180d90766e4e865c9fe4ed5c7a5e0a09a430930c631d6c40361a092ca32414826b69c7d431a6eecde7d68067a21a154c168decbc3 -DIST isarray-1.0.0.tgz 2021 BLAKE2B b94a6c780d6bb48089ff75d0d7aab59fd5a76a48b0d2134f6a71b8cde6075105a39786bba581d0fc14e6d1e2cb31a556547d2124d4fa2e49a516529c6316b65f SHA512 54b82121634ce842d0ce8ef3c26720d0d99357258a623bc878cf37ca3a74c110d39949eb33aefc7d06dc281a3a9f6089105d2cce81bfff2b60f932a56bcf402d -DIST isarray-2.0.5.tgz 1859 BLAKE2B dbf817564e3cbeb3521749880ca07a70fe28331259b51d36cb7bf5b5cb8f4eb114e2356872298656687a1abe3707c295912d37fc860fcf786a5ccfb719f948d5 SHA512 c478e10ebddc3412b40737542523d7667b50531fe6c0c4b9470e00ee53c9f745c600ee8848ffde3c336ea34be1a8e654f940f9268a1dc02000a1941ddc57802b -DIST isbinaryfile-4.0.10.tgz 4387 BLAKE2B fd94b2084036b90a50e3b39f8704b23d1b3f457f00ea200a7998cd27588e23e0a79e10939cbf186fcb4f5f3f8fb3db25de4fc243a88fc2764ec88eaa22fe37ee SHA512 887aea7b9b21bc151c15b999abdcce40706878e85926ee91406ac3a4181e9d49bf026f85dc9336320423fab2b767ad357f3acbe602d95ad00f1f638169255ccb -DIST isbinaryfile-5.0.4.tgz 4170 BLAKE2B 51cc8557022cad09b3319c07bf0ecd75b454d2bf5945b613ebbde7f23d9bba02fb1b2a7886c9bd48373246122c3ce3f63455d91b702fe8254f7cdf4d11304672 SHA512 60a04a5642a1b72eecf2bc5d75be34a0e92e3f435b69e5eb42f2e29fa40c1cbed8a62cb6456f4bc0e56b560651c8eae14256b231df6df83f320f2f0c2854d20d -DIST isexe-2.0.0.tgz 3756 BLAKE2B ebe0a418451a5b6d743fd139d3452625eb581c419516b707171721959220d82747a526f589d2b7b143e6d18bbf19834dc319a5c0f455415122d3196c39e2f5aa SHA512 447c4c2e9f659ca1c61d19e0f5016144231b600715a67ebdb2648672addfdfac638155564e18f8aaa2db4cb96aed2b23f01f9f210d44b8210623694ab3241e23 -DIST isexe-3.1.1.tgz 7288 BLAKE2B 624f5843da84d1fa7393febc8978f6d988f9d73ff7da3951f30c3da0e6475ffd4277278af3136d8ef4b55769171e3b039df594cd8d46d190bd5149d14df2769b SHA512 2e907fe7807eff627986a43b8a66477dd537d4e96042ac7b6627159649bd93383dff0f0628b11c15f265fedec30840ee78ec81003eb3082c133ba173b3436811 -DIST jackspeak-3.4.3.tgz 61399 BLAKE2B 7764089a886142d7477352ee3df8b989930a7f3108b9fa8763d1c0bc4f567102ea31eeadc9912cbfdafb595d50db6e28c2fa2e6bd76a04dd4651d4647068a52b SHA512 386959429cf6c9f6a103f45dd58f0277d48812caaf5e42d5a12c3f720c219e114c0dbb1015e658a0927b6c86414bd05c6a6516f7a6acabf9e93d6ba033e45007 -DIST jackspeak-4.1.1.tgz 61883 BLAKE2B c4fea18006d4be19844b553da15a473f4805b4c688419f1e98e363f4d94695413ba20632a123c13c90b60115fcc0076035ed0142e2923749962aa58b8835f652 SHA512 ce9b6fe7b3f71a92fe3b423b55d309341642bbe04f1d5414939e45b7cfd00898d3571ae7247b95b97ff4065d80ebffb6a3247f64c12e14ac26ceaa99fd4e673d -DIST jake-10.9.2.tgz 40697 BLAKE2B 605b75a6b1b7d391e4a2bf327dc6f26a04bc741aaa30ada5f1e78aa7db16b0dec42023b839c46713c48498a3c73abff74f2948131b70863533bd90afd5c45a2c SHA512 d8fe124341eb2d0f9fc3a965a4b9ce68602f37666eebbefc48932b094c27b387cea06f5acab4e2664dd557cb023e455917c69bd3392c5694bc143639a5108d04 -DIST jiti-2.4.2.tgz 460976 BLAKE2B 795c7ff64658279e203fe995128cb93c5d94387e58a2b494b9c0efe609320dc1fd175f5d2ff155b9b5522f0f02e0e0653fd4735b57ba65702f9a5e2415935e13 SHA512 ae0f7324df86e27da77c9979316dc13328195f9eb328f35511862aabb69da66321e099f640d13086f425172ea33d575ca1deedc59b4a1d69f26620376b4ccfec -DIST jiti-2.6.1.tgz 412412 BLAKE2B b5f417ed7db881b9f6e292eb11b13d77b054ba88cb3c821a0c5f41fcce498f03c0cfde77e0b65a8b0fbf22c9770ed4fc8b3d39a4841dccafec90597963907389 SHA512 7a48a50923758f046f21b81e83fe7b60587ca900cd6f00dbf714ffaaed830076c5159522708978ca055a02fcef78c84c56bdcb9e948a4cd9f0b7c3e839f98a85 -DIST js-tokens-4.0.0.tgz 6542 BLAKE2B 0102d6bf3eb4392fcd8cb54aa1acdaa8f43f467e469ca848d8661f06c56517b735c9331d27517b69e62c43a61334c73b32f67de5dfdd803da7c4a7154b719a9e SHA512 45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29 -DIST js-yaml-4.1.0.tgz 102356 BLAKE2B cf2ba9ce80f22562d189f950c1a4f07452984e1dc8619d571b89aa829a425f5962e04b120a875f692eb5cb7144d3b938771fc072f7e774fdd2b8807907610a7d SHA512 c29c59b3d368c596891122462194f20c4698a65d0529203e141f5a262c9e98a84cc24c5083ade1e13d4a2605061e94ea3c33517269982ee82b46326506d5af44 -DIST js-yaml-4.1.1.tgz 95174 BLAKE2B 3822e7df1daaeee817e5ba96698cbb3bc4be406c513a2b9594b01174871dd2fb1794b7f1c69d3dd2a370f4976c8bb0282635262c0266ac9bc57ae38d88ff30fc SHA512 a90293e334315e5f252f006d1cc5b06937067c5399be23897addcecbfc661a4da0647ebbec224cf44bed7dd4a48167004d9863ff9e49674ae6cb79b2093e65b0 -DIST jsesc-0.5.0.tgz 9165 BLAKE2B 8745bbee8d8dcfb773bc37fdb3d2710abef4008c715c5efa8e0c7fd8792a74381397a3ee549508f13d99efc4972af2cf188935062bde36609609934cb7199e1b SHA512 b99cf952707bbb84fd2efc2616a5e28bba594a8b9a44fa2b1ace70868d48a7b54ed30c5a9c5bc12fb1a433a7531e5817fa384102945eb5a5a99c369b39e4dc9c -DIST jsesc-3.1.0.tgz 10038 BLAKE2B 40e41e69c9c93ae4a9bc89fd5eb4d005a3bd411f57a2df5f5016cf2bbed4406361f48b5c33b4e6b18235fa6db1cb7ce340cf1c0036f969585b1208393f8441f3 SHA512 fec33774ed853b35e3290849ba8d10d7bdf07f628ea3cb7823cbc7cba945f69a14a7b6ca4f4fcd1c4f1f3d7db73f07e19f291faa70b6c51c4e9d5c395ee18868 -DIST json-buffer-3.0.1.tgz 2618 BLAKE2B a8a1befced10a55433aa594f94e14f4ebba40e6a330bfede7feabcf943277eff17f4a987025aae3a66a5632f49196b687993146ebbf80b4b1c315c81429f30d4 SHA512 e1b57905f4769aa7d04c99be579b4f3dd7fe669ba1888bd3b8007983c91cad7399a534ff430c15456072c17d68cebea512e3dd6c7c70689966f46ea6236b1f49 -DIST json-parse-even-better-errors-2.3.1.tgz 4553 BLAKE2B c8d44555b8c10b4b064fdfcd05b0de9e01add09fd1166a358f53fc23a7ae848337910f64bd6f366c7064b4603e3d8639557db68b877c2c605698940b3ff3aecb SHA512 c72170ca1ae8fc91287fa1a17b68b3d8d717a23dac96836c5abfd7b044432bfa223c27da36197938d7e9fa341d01945043420958dcc7f7321917b962f75921db -DIST json-parse-even-better-errors-5.0.0.tgz 4485 BLAKE2B d12f77722eea8207005666692b27a90a759ac94b67200162f6de909a7d67f19bff99b817f2cc7fbedbe5573afb9d497fd54f71be19489fbe6c061c48fd3540e0 SHA512 645d67c59dbc561428b915a151c565508377ab04a03eeb302b4e6cfc721aa1eb40a04ffdb678159821e34b199240f6afd6777e94fb532f4619ff6005751fe261 -DIST json-schema-traverse-0.4.1.tgz 5141 BLAKE2B e18ca508f8daf705135ac86809321091e1a1c19ecadfb4fba23a82812d0fbfa3e3a9b854cbd1059b193f1ca080e6e2ac77085eee113fe694c45a0d6efd574b05 SHA512 c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756 -DIST json-schema-traverse-1.0.0.tgz 6074 BLAKE2B 55c8f856f5771be25072c0734149bd0d8f06e13dd66e1fd8846baca028ec041f3f534e778373573aef1bd53c2af1e43bd47ccbd0c096626ec37d224657d3c2bc SHA512 34cf3f3fd9f75e35e12199f594b86415a0024ce5114178d6855e0103f4673aff31be0aadaa9017f483b89914314b1d51968e2dab37aa6f4b0e96bb9a3b2dddba -DIST json-schema-typed-8.0.1.tgz 38947 BLAKE2B 7da55e3e6833a8dc96389fe0f77822c6836b7bca814c3b7ff622550e0995d7946587b7f40f023dc2242b74094c1c79ac8ee746bc63e3a8d108c5dc6997a656c1 SHA512 5d0996623d929b8927e1679362f9a92846f23ec2fb9c1b1beb8edcee931eea5d36ff2c76f897dce1d4fa5199045e72146f92e10f9e6bd873ec2759a2950e2b0e -DIST json-stable-stringify-1.3.0.tgz 11822 BLAKE2B 42492d4112405814b30fada9a47799674fa33982b7737bbe1f2b20fb724b06cb2f4d1022467edcc1240ebc0cc511b84b020c001c4f08838eb1d6ac3ebb3d8de0 SHA512 aad622492165c28b7d5c7b45f5b0fd73baf02a3afe45e7164fffd99cfbd29848e95799a63ce08de23f148d8e616e33643b067f8d0bf727a475fe92fb47080cb2 -DIST json-stable-stringify-without-jsonify-1.0.1.tgz 4621 BLAKE2B d75b65bf5325233ea37df1a6024a8c277bbff76eb795248349c933c946c0b2cc3b6511a105554c3fb96ae48771c934eac2d71ff4e5fc9fa2a99f23ecbc1fdab3 SHA512 05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f -DIST json-stringify-safe-5.0.1.tgz 4014 BLAKE2B a0b4dca543e6240c72ea7f2e7a8ad4b3c29bae002cabfecd764130f1801b5abb39e05459a98d9991e5e0bb2fdfafa26b1f1bc0132371ca427da49fb07c77a509 SHA512 642960e80698bda9af60413cd9ddc8c9ddef49222343ea1d823693cd1b8edeceeda0274529cce86f68b4cc287b244f245a7d7bcaf016854571bea1b051a96c44 -DIST json5-1.0.2.tgz 22200 BLAKE2B 9aed8223cca27818791af63571ad2f5395a2b120bb5a55200d841d811b53a836931f7eee724f36aa2c589a78f344f502ca173c8f966d6c9ed64754fc6f41ca2a SHA512 83531630b062cfc14a8b57b8c3453254bdf0fa225c7960050406819e718a3a935ae5ff132e4b646eb7b5facea8202c9d5809be1d15064e623efffc6fda1bd760 -DIST json5-2.2.3.tgz 50318 BLAKE2B d9c5dd846478b08229b373d4b86c218f336f30e3985eaa7f337c2fa17dc6408551d42dc2f3993188dfe621043e05ab4ae8567a5507c1eb62d688a28dc4513840 SHA512 5e63967bb7b21d81f5e1c2dd54fa3283e18e1f7ad85fef8aa73af2949c125bdf2ddcd93e53c5ce97c15628e830b7375bf255c67facd8c035337873167f16acca -DIST jsonfile-4.0.0.tgz 5266 BLAKE2B ac02791e723c7d6ba27b7394ae232f6bf48b1e8f107607c7b72afcc78fd79597effea9f85eb3e8ac58ccda846077e9ee3d2ae4c639a0e9f5be780717737b3519 SHA512 9ba175477cfc8e395fda29901d2d907b3e6c8ca590cdbbae86e27f14a605459bcf1373ee1dc48c559cdfb0b84654e91f776d286cbe5258405ec394a196ab8dc6 -DIST jsonfile-6.1.0.tgz 5816 BLAKE2B 109bc4287a33bcbb1bdf7038605c516394a128a93a716289894b452557e3b06195b3f97e46bbd241c6699999fba9f5a0c76ae53390f212999e8b95a06a6de07a SHA512 e5d8277563ab8984a6e5c9d86893616a52cd0ca3aa170c8307faebd44f59b067221af28fb3c476c5818269cb9fdf3e8ad58283cf5f367ddf9f637727de932a5d -DIST jsonify-0.0.1.tgz 7449 BLAKE2B eeb6a20284feaf75ac246c728716d5cc9dcb282a04debdcd4d2bb191a975b2791ec7a75def72d477694cdfd3ee5fb43d7d0f87bc7305ad111bc2bee99ff92961 SHA512 dbf2a2d06726baa4ab805c9e950abd334e72ecf4b4984c2e233adfddfd5f3ea9150d546f66b3d9b5548c1f1760a3c02ad2cc4039bfdcaf66aaa80dcb7961d53e -DIST jsonparse-1.3.1.tgz 8550 BLAKE2B 82ab0aab66268eff308804fd5842deb621036460dc38b7d9571ef846a38558447370187f310d21112efcf4b24e5379bc166e89506942442813a8d968e0dc3a27 SHA512 3ce417be974bebdf8296e62c8a5949ed25212afcad6235bdbc6fc62a99dffb13fc51681810cfd168ccc71e87db00b0e229b6cfd56f141189a01a5dfd5a43d9b2 -DIST jszip-3.10.1.tgz 195083 BLAKE2B c6f926d8ab0c7df452790c0e99ef2794ce337e1abc4e47b497fd589f4dfdf7e4b5f36a595f4726ffbf7dd040c2be11b7477bd918ac0964db92c33f0b213ea9e0 SHA512 c570ef79cc93a462eba85aef92b512a31c5f248e401fb53ccf1c6d55c969b14b4c0aae09436f742d8f005b973b1a09ebfd8fe82be6d031ba8adaa9ad937a4de2 -DIST keyv-4.5.4.tgz 8620 BLAKE2B c46a868b228e5363a091fc21e521bc00ac33b4e5c3ee68365c96c99e74d64f037be61f94e0c5be7d708833612cb85a49afb57a1ca9641c0ab98dea076040527f SHA512 a3154790747f1097f608d5e75b144b5ba9a0ec9c82094706d03b441a62f672d528d4f3538a7d4f52297eafffb8af93295600bf7e7d648ecc7b9a34ae8caa88a7 -DIST klaw-sync-6.0.0.tgz 4330 BLAKE2B 584243c54d16d2be6878597be3cca94f3ab3dbc91e651605226f9face8592f0dc39528c3b29d0a70190c1e6ec7280f07a9f8a9999b5f6f24212212ebe6adda57 SHA512 9c87ae552cdd082b3a4c33d3a88f30d58adedf8b12abb024678077b1f3816c8d82815481e03bb868b4228c5536fa5840142c2df7ee361de97a950348bfa027b5 -DIST knip-5.80.0.tgz 276296 BLAKE2B 1eecc62510a31e2b9e5b18cada8c4e0634e3603d0c1cf90fe677ac45c6d6b3cc8a44364ad9ddd64a0573cf66fdc67e0b6adf60539756ff6e5a660091f563f993 SHA512 2bf19ad9ffd21c45175eb89575ac3619f788509e66bb076abac1c6902b5a1bfd6a78c990262bb0663f4a9cfc5a0db9d83c0bbc4568d8621f0dc9bfaa949dddf0 -DIST knip-5.82.1.tgz 280721 BLAKE2B 46acaeb6655cb4c905d7602de2f553d5f9159eca1de7a21ac327d0c4b58683b1a0acb5058677334c9a492410679d217fa56dabb4975f32cf0e7945a7441e6d4e SHA512 d67424fb901c9e4a8be349064177e8bb30045e44d1f9e4ab828ffc9b577404c7a2e1e033170821a170b880e29b002801882a1fee113cc240550ec12fce77fce7 -DIST lazy-val-1.0.5.tgz 1182 BLAKE2B 37e5f863b9c55ea33ca194276b150b0c158ef89227ab1505106eb2b717dad793393dc51ce966a31f8394708875f56ba1687e32882902bfc1c76701fbdd3101ae SHA512 d3f06718209fc943240697838168a16a720017d2666611c1814844ab3bdff9a7613462e83fa4da888e6817ca326f7238e4ff8f727aea8a149fd353349741b9f9 -DIST levn-0.4.1.tgz 7465 BLAKE2B 95cac2d9df79d23df7c426492010bcaee85536b9b2b563772b9370b8dcee5ec1d8b3df3d07d9269baeff89b0c540e6e6d6a30306e53f9563837577b88b5b1dc1 SHA512 f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029 -DIST lie-3.3.0.tgz 8877 BLAKE2B ea5eda969f86b9df6d0529fb736f5c2aaea5aaf3b6fc5a8caa2095fe8b2274d6ef1cec516c331e96e8196428786494d0a352df96dd972b009fbbd215ede5f2a7 SHA512 51a88c27379646512e8f302ec392e8918d4be5e70d41864a7e6c99f4bef00c76ffa797ad29ac5786884172bc341186f2f86fcd039daf452378377f5dc47008c1 -DIST lines-and-columns-1.2.4.tgz 2270 BLAKE2B e7f4fbafd625fe9d73380347207d1878feaf5228538f8d28498e0f1a8cfb2d5fc1276aecd96cc25042285a454d66a561a67d2dec91ef51519e4b39b3e55cd8fc SHA512 ef297295eb1943f3d5dbd8e110397751f8e8e995fb802a89af917b3caaea73ddefedfcd2ca6b75069c0453c9c0517b3cab3cefaa16e384ae50660e8cb7f1e406 -DIST lint-staged-16.2.7.tgz 44369 BLAKE2B 2699881c89de8568bd358afee9705dae9e56d09c48792d51254cd871bf7070916844a3b90fe26cc9aef94663ac1a9035a6ed0432d026fe48d57515c282d39b73 SHA512 943223e119d898aeff9173326bea89b269111641a895c8978ebb19e8f0b6e467537d638059eb51d196ec3574408f51071c899149a95cfb0859160e7a1790d5a3 -DIST listr2-9.0.5.tgz 58071 BLAKE2B 25a49452105c161e0e3d158063f9c08b51d3d3c42bdb7714fa63e4b969f31328a61f06138793f154ea621f085c5c1292f922df212c79698e2601a9b012a82ff4 SHA512 304e056fcdcb804830370f7a44a36f295e154cbb977e82ae7409a6da53fc2a4f3b29a30ad3f5ebc7f68090c5a64fc9836fedcc9450eca5f6c2b3b69d8d1c40da -DIST locate-path-5.0.0.tgz 2723 BLAKE2B cc0ef0b09fbf3fcae736962e5145003f0c9c26c5a2453d973de30b42d0307ae78fffa0c6ac02150253b45bec66da0c26c272ac9576a61ef83cf02e912b7170db SHA512 b7b870f6923e5afbb03495f0939cd51e9ca122ace0daa4e592524e7f4995c4649b7b7169d9589e65c76e3588da2c3a32ea9f6e1a94041961bced6a4c2a536af2 -DIST locate-path-6.0.0.tgz 2954 BLAKE2B 50a0c3f170afa198c645efee84a5d7714a3cbec13215cda06fd89e9d34c1ac4c83470473abc1ada977177e299c3eccae0ae5b756dfb6452af8407f957ee73863 SHA512 88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553 -DIST lodash-4.17.21.tgz 318961 BLAKE2B 501b0f9be15285815ba771d2315168f1a19a2e265e9b239c59f8ff605a5c895dde24c6d41ddfb09bb216fdf6630688bc6a5d2362182dafe776206596e5319af0 SHA512 bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a -DIST lodash.debounce-4.0.8.tgz 5209 BLAKE2B 8d6c2d3be9c66f23301cfc24ba639760dc1c19d284a259052175089e04fade3c2837bed2ac51eaaabea3f5e4f341c62eeda6fcfeda8c0728fc5d049b43f74aea SHA512 153d720f30d81286168674869e913fe0a8f57cb6640c5caa45bedf36de85758392c6551602da78d8487a59bd2b188bff9bd060a3bc781a141b9b962ce121b9a3 -DIST lodash.merge-4.6.2.tgz 13081 BLAKE2B 6f7f6b43ff0bda685ab29ff604b8099541680477f14c0c2907051f6b8655182f18eb672e8940b86bad06da0bd9288bf49ed0313b184bb493c1d9c7bf2a7dbab0 SHA512 d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321 -DIST log-symbols-4.1.0.tgz 2263 BLAKE2B 23b5532378753680782f5b34647f750438fef9b4768ed099ca6b4af830219e0c913a5d16e2e7a42e75b618e4883739332d67e2ba0d002b4c9ff88900307a1a4d SHA512 f173efa4003cbb285fb5ebbca48bd0c69259ed2618769522bd9a46cbab05b01b8a458ffbad019abde75e07c68af99932ababa930554bffd016eaf398cdf4722e -DIST log-update-6.1.0.tgz 2939 BLAKE2B fb8a527f2a2ecba6d88d9e8ca30805010bab8538be5cc6eb04cef4fe69d196cf467bff5e96440c144b7f0842ce78b429331ffb4e882953c7bdbb138affa03ec1 SHA512 f627bc22d3d1ead8d8e6e60987c2bf66bbff44c67954e94e5afb597441d849314a65f2013d06bdb4e0047805a177e02722778b276db0e5f8ce62da2eb695aae7 -DIST lowercase-keys-2.0.0.tgz 1568 BLAKE2B 4e0a785026a155de74c5a8623b6accd5fbbfd06af876bd5adb633bf4afc22f3d13491867ead7f1eca9994a30d66561d2580afccd8c4ccd55781f34fd43b19234 SHA512 b6a357ad2efca0c384ef734cc4ae0430b42c428c167fc8caa281fd83bc4f6af453ef4e91e9b91027a0d8d937bb42e91a66cba5c5adf4c10edb934a66e1788798 -DIST lru-cache-10.4.3.tgz 181128 BLAKE2B a2cffccee7c2fb4198dab2ed2415a206733f2a45eddfebfd21300fffb4c9bd42f704124d4af810ccb8773fb76cebab45750b1640dd7abaa24aa39a6371c50ec3 SHA512 24d03365c5eb0ade365462ee633d337c0cc37c0bc9596e807d8943050c835790c2948da6e6c0262be3883bbb39f577ec46c587a74da3009ad169d3d1193b7a49 -DIST lru-cache-11.2.2.tgz 185704 BLAKE2B 9c49325302c0a1db070840bab16c49c85a9acfe7ca92ada9877385b0c1d16c96ce48f833820086a55475986da7a228753364110ed014c06a527953026c17cbc4 SHA512 17d3837f2a8c2f67284c8b10a529111e72d264cb6453c43e9927dc688c8ac32e7cbbef24e67bc061e88d86cc8c011bf335c5c9f507d656b70fb02f5ef6b031b6 -DIST lru-cache-5.1.1.tgz 5824 BLAKE2B 6b260569b1ea699c0e229d7539375be674f6f1c46ea0b3848d5cb28a114ab2b8946ea2510828e8eb810045cbfce6150c05fe1bb6e2cdd2baa64e1f5ea780d76e SHA512 2a9340450037230bfe8d3034bad51555bae1f8996baf516fd1ee7a186cc014e5cdedd93f16f89a0d6f0b1e62b9d8395c1f858fda7ea023cbcdd5a7ac045828f7 -DIST lru-cache-6.0.0.tgz 5788 BLAKE2B 79d4e82cd9709f30420b8d9b092749371db4627e033edff8a46816e8afe83a18b50c57ac316dfac9331e34e03c18ddbc19067c9238421d61080da405116be929 SHA512 268e9d274e029928eece7c09492de951e5a677f1f47df4e59175e0c198be7aad540a6a90c0287e78bb183980b063df758b615a878875044302c78a938466ec88 -DIST make-fetch-happen-14.0.3.tgz 16391 BLAKE2B c61fa9b7129f86c8de652730caba55085aad485aa014ad17dd5ff35ad2348b7a04b595eab0341b1366afcacce8f095d05b9a00ece7c975bfba920a217f992785 SHA512 40c8c66c54cfd1b963f7b11e89d1b9864fd084a4374f82027244062e0cf7f1017b5606e4e9ee854c044df0a84ac7205b5a7f11d0753e6e7c3c692a053c3e2ab5 -DIST make-fetch-happen-15.0.3.tgz 16387 BLAKE2B 328fa411fe754d88d05c8bb2513696af9bf11e8d6b30cf57a0a308278184fbf4fd6cad7045a8cb76f1dd1abcae06cc321c3ee68610df7e117ad316e6f517e028 SHA512 8b2c84a43b72d66c16ddd1a5617009a82fdacc59f93cfbe0295c176b238605298a2f184a67d7e0e2a21a9f678fa69d6f248c1f1623b7e0b00f660abd4995bd03 -DIST matcher-3.0.0.tgz 3357 BLAKE2B 7f9c8de1551596ec9f83364d2266055bf8869c693be8c3ad0417b802d59401bfb2326e0e6bfe71c1c2535812919ad6a3045ee420dc44b0d138309d406c189041 SHA512 3a478368067f6d00b1785028ccce793ca70a534c8930f1a27cbc15e108238adbbee4ca007d240de25b0b25e5d9d5bf30d31fbf12675ae8c6605d2d63bec6a99e -DIST math-intrinsics-1.1.0.tgz 6355 BLAKE2B 7e589d5c5b73ff6e34b6d03b0f4b2c0a87cfb9b7b0b9b182c23c9c3086d2bd31dae4de23325c7c6c32ae41e8af63b06761728392ea27007665d5492b07316294 SHA512 fc85ed6f0124e474cfc84c32297ea11a4617c4cf676e3eb807e8a55499c2fd1e81d291f91b85776f4a556cbec3063e2d921040a696d05257fa17a5e5f4b1eed6 -DIST matrix-web-i18n-3.5.2.tgz 15233 BLAKE2B 9238d2229b918cd800b2f36cea5470f041ca750d711ae1f878950c4957e02d8d9ef9a1c994ea404a1943ace1cdb9d1922d60c97e1ed1f2b060782bec8958aee6 SHA512 2c0da34c5dd2d8a37896693d9edc7c49e1a2a38e705faeabe442f89525e55184461e3f37c77554c851512e06a9f739d14408c824afcf26ad5f2308f503d054de -DIST merge2-1.4.1.tgz 3409 BLAKE2B cd6170696902949cd9281172943be4113efbdd74bf0aa8e526d7af429d45efd39de78ae479e25a9b6e15c6d1ffe4fe231bd8919ed1efdf9782fec3e82196e061 SHA512 f2aed51203095b827cb5c7d53f2f20d3d35c43065d6f0144aa17bf5999282338e7ff74c60f0b4e098b571b10373bcb4fce97330820e0bfe3f63f9cb4d1924e3a -DIST micromatch-4.0.8.tgz 14663 BLAKE2B a449f7dfe51f8f52f0a41066a25a808f6443f31c2cc6b531b718dde14cb4e75858fe5127492136cfdc5853a440ea576b9068769558837e761937a970d0589bf8 SHA512 3d7c1f06162ed210423f0f039f413e58361beda7f77522d558a8b71c6bfce08745e13c85a02d32b3115dd06a31c3b9d2bf84ff3f3109431b18b0488508aa3604 -DIST mime-2.6.0.tgz 18724 BLAKE2B 9d2ca6c5d0f2165f216a3bba26b4913ffb770634c949d057a7c12292f64c54cf705262beafdfcada0fe3ee21e580b28273a3aa4a129152d51c8a4bf5c26cebe0 SHA512 5123e431e113df5ace3226abb013481d928b1a0bca73f2eb8e87c09c194eb6d7f96a346faa2440f10b1e9db728a1cb4ae9de93b3a6aa657040f976e42ad86242 -DIST mime-db-1.52.0.tgz 26992 BLAKE2B 137fdb30cc3a3b4db9c5357d2d6048f5e9dec33ceebdb875ad3c3059cea5d187b98b9dc65d46ab1e129280d2bb33445a4fba87c7c86bd0ad408c1fb76d4320aa SHA512 b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be -DIST mime-types-2.1.35.tgz 5591 BLAKE2B 4407f077a52f95f72465b0138ce02be966a1c7143b30b1cf7f3e5a4cf9265907946be23ac8b3a201b19e513f29b235b56b965e53ae05b83f3cddb81874f8b926 SHA512 64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b -DIST mimic-fn-2.1.0.tgz 2119 BLAKE2B 2f6450cd30ad30cf67d61538432748bd41fc95b69480c25e9a2e167153f5f2e67a67ca2429c48b5f2faf158cd83a7fde0fd8696c102e91671a328b745562f7e7 SHA512 3aa6ce939a0441e019f165d6c9d96ef47263cfd59574422f6a63027179aea946234e49c7fecaac5af850def830285451d47a63bcd04a437ee76c9818cc6a8672 -DIST mimic-function-5.0.1.tgz 3203 BLAKE2B 9d0e6a0c8a76bd1826e2e5bc76d8e1788b619a26c13c5ea9dc22104ee6e64197219cd8e14929b4d0a8a6e9c536093187253cd290f90f411bcbe041a2a519e012 SHA512 54fefd5d43f15760a28183f78d6c005054a4bb668aa811fbb9301aa4558206abadb1b983a3de8a639a3cba1e94fbf612227e4ec499d7a7bddb795929a8c20684 -DIST mimic-response-1.0.1.tgz 1894 BLAKE2B 7b2089012b75d903057193d32d5759da6b832acc3ec99eee3a9954d9a325c8517259732b950bb64f746c132274750f1fcf6b0a391cf3c47ce62300df45e2bd31 SHA512 8f911cb67907eda99f57fab91e09a86a5d60d901c5251ada3ad9b1d09a48aa4c6106123f9494a5d67329438e6155aaf03444cea161229a7759e102b4447c6ec5 -DIST mimic-response-3.1.0.tgz 2822 BLAKE2B 18755616f40b2832d7c95091e0766b5ff6ed58dbd630b7ba8d29e073566d1e7dd6ee745a907284688d0098b61301b5291f7fddaf7fe4fe8664e5fcb07ce45bc2 SHA512 cf4c9623ee050ebaf0792f199ade048f91dd266932d79f8bd9ee96827dfe88ae5f5b36fa4f77e1345ab6f8c79345bd3ae1ce96af837fc2fd03cd04e33731cd19 -DIST min-indent-1.0.1.tgz 1658 BLAKE2B 06ffc281bb36fd4473f0499a7c6e469181732d66cf9fdaa21d51e1711c97c022154c38174e4a0191f55816e4c96088ee042380e5d46e9504c2ff98b44b00a597 SHA512 23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02 -DIST minimatch-10.0.1.tgz 96385 BLAKE2B 796e8affe9fbb8354246b9c2569c17a195e7b9c09297d2eeff798158a3966e5d29c9f8fb928458c5da19131a71a09e4c49875c2f0a68de0f840e4a58e23e4545 SHA512 7ad8574eddd218647ef7982e766a89d5e36144eede18418881803dbe73dab4ae3f7adcf63045439e8e4630289b74c4ee04cc849732258313276b72bde170c80d -DIST minimatch-10.1.1.tgz 97816 BLAKE2B bb935e13f80fea245906705504357ab51239dc4f8e7735fed4a9306067d2cb5961c64664ae130622181679372edc4865bdcd7fbd32385b59e1bf6085b775cba3 SHA512 7a722f2ef440159617273902606e512a63dfac502b74bbfe47e95b439dc198830b22bcbbe1b8cacd7ea21c09bc5986a626485248469bad63790fded79ca39b8d -DIST minimatch-3.1.2.tgz 11940 BLAKE2B 56ee5c5caa4d2ebc520342920d23ec57ed5b6ef6acb8ade69ea0518943d58ecec0826a7f036ab68efa2bf4405258058670aad8c7be5dc09c40ab8fa713f2b181 SHA512 27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f -DIST minimatch-5.1.6.tgz 13116 BLAKE2B 2136ce562b9578845e70281b192a9c5ad271b1f025333e5b13787346e8f8c9339c0588b03c5863f29db4bc0ac5292398fdaf4808d1bc1943119d5fcdaa278a58 SHA512 94ac15ff56eba46ea6054147b5becd526b400426f65996669b6c0d88e0398406fc55d092e01dddb4c5b2bdca1589c730016fc23844635cbb74ccfd735d4376ea -DIST minimatch-9.0.5.tgz 96471 BLAKE2B f522c669a4f26c04ed75a39f51d398ba5fc8266eea6fb88e0b6c46d22bc5dbc5754ce844b12dbb29da69def81a5c6136da88dd4d383e1e545b03fafc20293780 SHA512 1ba4f4657e3cc60a33c7be7cee4a1e5fd62cd8d632e869affff3fcf6c12d7bd57dc2121aa4c345e2274ac675b642d09c2e24d695bff07c269b02d0055a1841a3 -DIST minimist-1.2.8.tgz 15520 BLAKE2B d731ee5d42bdf5446bd6d647f4c8e38f74e29084df77d4daa73e960af3b29d6d6a0ec50c4e6f6b93727e2f446e1ec12d754a7bfce4967e3d1a035e6bee314327 SHA512 db2c8047ca8190ddd8ba17896a7529582e54ddb6f9a2c0f2c0d07c4730d5943c031dba1c009bdeaaa8f5bbcf92543ee39164f8cafb070a95aaa96a80c5bd3308 -DIST minipass-3.3.6.tgz 15335 BLAKE2B b06795993927e7323657dfdd2be491635a1b3e8bffbbfd8fffd9ce473dcf576d337530330d89ac6b6a3b8306062f04c5a3d25c9dda76dc5610b2da595a28065a SHA512 0f188d89dc5210afad1c6eb3388925bcd3b09b786f0ab6d4addb7363be14e87293271bc80df3942f95b93f61a17770d392184a3d81aa78d508879a9c3386017f -DIST minipass-5.0.0.tgz 20536 BLAKE2B ddeb1c1721338b8d3a6f16db82506525d002cc9e8183784aea225966dcf6059b98065437bc7e67df6543150cacab5cca5d2379ce5c99bbbb7cde704cb4be0f8d SHA512 dc59e362e7a1bfd93aa2f3846f23acc1a7420cf5f5a6209f855f2772662d1ce8ee3f0ca5556b208532e8eeb69b8c2dd1c79c43e070f1f169b5c67305ed2e6a15 -DIST minipass-7.1.2.tgz 62112 BLAKE2B dae8764a876ce594b4b84f2e6a144588aa4d412bb2d3bbb5e81ca7be344aa012c5156f15d9d267b2eb630681317d7daa048487b951538af4e1d86124a47a3d76 SHA512 a8e3b34b57014d6605e011fc7d578f0c138ef62a6d327194119c0d73f70c5a74d5da754b67b56835610f1e461ccd9034a5da00edd97a7bb14beb9f675fd4b66b -DIST minipass-collect-2.0.1.tgz 2094 BLAKE2B f4535e525cb24542b51f2cc432b1197a5adbf1510281ff36a589922482d59da35f756e76369bd9bdb646201c40463af4c6ce5e59b977e444bb2a2575f84adb1b SHA512 0fb57c3cef686b3ecf5862db0800ae235a843acabb50a7cba2dc7f0b401eb78ddf09407fc1f43b0d87aada847fb2f1491980c73ebdfc48701379a8ff6682872b -DIST minipass-fetch-4.0.1.tgz 13592 BLAKE2B fd24af940a6df057704014b790b98112ceb02bba90130eaa08a58bea156b676aa818646aac4aaa67d36f9042489d3afedee10ea5a9bd4a9a80e87cfa78678908 SHA512 8fb535d42e475e2815baeb7179b15a7686016dded549d65682049eeb835576f58d06a1808973cbd905427a18e6c3b958d6817d80e96561b39187e8623607cf81 -DIST minipass-fetch-5.0.0.tgz 13592 BLAKE2B bbc04dd91a9ff237c8da9219c34c293dc52eef512a1446ed5e321cefb825bbc959293fa023e3ea8454e9f9a4bb1cbf9da5bc1b402e9c3be619b193ea9ccb6112 SHA512 7e209d5002e2a6a80f5ab3954f3f5fc345e171acd42d739253a89ee340c36d7d45e3da75741ad2441bacc27753c75c77bc46ff834153eef0b87380b6bbf9a1dc -DIST minipass-flush-1.0.5.tgz 1972 BLAKE2B edd0a251147e703cbfbef6567de6ebc8a63baf1640418563842607203f4ce3aaafcf93290257aa9470ac129332f62d7e91c14a5f5128bc32a5c0b50f59960817 SHA512 266412618a4f52a5f92729f5997691c0e75ad6e43c1cfe4a013fe80d22c2cedd41611850534fe10edb01d6e7d97c4133319f5a0159ac070f3e156b085e50a55b -DIST minipass-pipeline-1.2.4.tgz 3001 BLAKE2B bfcbff0d317c36db0ef1514a045857af9dcd29c3988ca82c9e4a06a43f8f98714391adae8cd32787ebd058912f9e0c8afadf089a075bebacc023e4b58979c6de SHA512 c6e22aedc20eb74f513d1275f60762e1bf9188dbc31587b9247fa080dbc1a86aa941772bbb73dc466399b8704a58ad53c5ff7e710f8731537877acf8e8b64fec -DIST minipass-sized-1.0.3.tgz 30780 BLAKE2B c5c2cd3124e2c5e7b8eef93181cc987d375496817675c7305e2d691e7af52201d1b24789eed146304950ec0a68d0e3cd8d78caac4514ea3983c776a198e60971 SHA512 31b9104360938813250360e6ff9718fbd49614437ca73cce5e2eab94ce57c6ad18a9b75ae59432f6c53be5aebbdc513d64ad19b1bafa63988feaef6792d7e0da -DIST minizlib-2.1.2.tgz 6154 BLAKE2B fa4494224d32fa6cf9faba9f920aadf1b0e75d5851a4638bd88450437d3bdacc7106ed564c3527d8a38456e50cc496549991589d99e4ce43a0059379b5882595 SHA512 6c0c6c47c0557e3eb40d65c7137bb7d281f37e5e06ee48644ae3d6faabe977b8c54479bb74bc4e8d493510700227f8712d8f29846274621607668ee38a5ed076 -DIST minizlib-3.1.0.tgz 18461 BLAKE2B 56e592a4cba08d48104d9ddecbdb0f7bf45dceff25cc92c86e6231b4b4163c19d4676b350cd9e9259494ff17557f7232ca33bdfec8fe96052cf49d3987f95f28 SHA512 299c58a350549160f64d514baf4310a0cf2f5148a0583dcb943f376bfef906a0bee2a1341dbd55a39bf516071f68d5ef7d7cebfb912143a8a783f09a0628d397 -DIST mkdirp-0.5.6.tgz 3018 BLAKE2B 9c504f0cb619b88ab84d90091e42bd0beff5f685dc1129992fc83344a5b052b96944b0f36259a292c1e55d82f2660b0764e721912ce6d2887f68b58c8e68fd11 SHA512 14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027 -DIST mkdirp-1.0.4.tgz 6665 BLAKE2B a07cfbe019bad967aa1dc55ab35d5ac78819b254b307ffb3e84d72f8f52626b02bb99a227f567953fa505cdcaf7ab96f22b8aaae328845cb94029f4f9711da8d SHA512 bd5a95650c9fdd62f1d9285dd2a27dc6ebea800c8a3cb022a884c4b6a5b4a08523ce8dcf78f0dde9f5bd885cf7d1e7fb62ca7fa225aa6e1b33786596d93e86cf -DIST mkdirp-3.0.1.tgz 18260 BLAKE2B 5d8d33ce48df973b4b6b094214af475b33c5fb99123c45493804c2124eb24cf3e5f231fb81e2a63427bc3b41d89ab502bcb69ecf44ebf7e3ed8d88d1b47669e7 SHA512 f8db325140190e6a3a6151f32ffb2dc52bb7b7d612d62963962cb70520eb5c9fdd927d4a61d9ad64e0c61a32dc73d5cb8155691f82ac84707c5e66603216815e -DIST module-details-from-path-1.0.4.tgz 1961 BLAKE2B b98b926ec975f73dce3e93d3c20258a659d952d67a1f2553afdce44312edbd54d2e92e12a19e7f7457230ed5649bc04cbb37c35808ec2454811a99fa56c46fc5 SHA512 10658a83100b18c833bf1605d54c864f2d075d7ff6bc72e4c3af8dbc3296da3ca959b1e98d0ba3e1431ca905971c444985518a8a4a254f4e86ddb70a7b87e2ef -DIST ms-2.1.3.tgz 2967 BLAKE2B 03b7e21a6de1fd9498f6e6233a10660829034e9153dd28e76aeac23a96f490689ee1d5d51b4b6b298eadca7a7f44fe886248c78e69272b3eccc7ea199fdd6a03 SHA512 e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394 -DIST nano-spawn-2.0.0.tgz 12220 BLAKE2B c41792fa5fbd8628c37c171bbeb8aa75a95a79ca107b552a774929ef9122ac6a577289b9c93901a7383d563deae1b403e178264334160b9c649cbeb699a5bcfd SHA512 b5a72f1b3518e68d83f02061dabaf0c723688d4b19354db38cd4f3290ae48062504db1807c0ad559748a301a2405e7a0e82ece2d1194132a059586df796408ab -DIST natural-compare-1.4.0.tgz 2510 BLAKE2B 5a5216c1ae60c9302639a0ad45be29a92c5438dc230c85030728b8760f78b4daea1a0d4c10fa45945d1be2015b5d713d5b16d7de90cfb48f5b0e69a7b7de320b SHA512 396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b -DIST negotiator-1.0.0.tgz 6792 BLAKE2B e382967461ece7061d3e462350fc79a1cdce4f7fc5f5c729d4356c45eed2efa65cd49f3d2a903766c06cd25497aae950afea543df629d4a3ec116c0c46ad5aed SHA512 f0e7ecfc051087c31a11cae5ab9c4e5f4090f72a53179765efc9a394c35f38ad3c7f3a604c741140f07170f944b48c34c91a70b3e668ff7afee5645bcbbbb71a -DIST node-abi-4.24.0.tgz 4156 BLAKE2B 9b0475522a57dde211039150c3039091ca4ce097dc0f122766de8f95cfd63a88daedc06a6b9e645dd1ef596dafc4514f3e199cf24c1f296a36b256938877ec3e SHA512 bb6102d4278d7b6e6e56d5f71196dd436ef973be337599a6a73ac711087668862aa158e58257d4a4e5fd618f39c759e507274428355a4a630d851ecdf36423f0 -DIST node-abi-4.26.0.tgz 4168 BLAKE2B 2c534e9f42886228f34ccfe70f8c1f839d419c85592c5bb93005707ca26484151f408e21d4ad3865d08f2a3506a67a9bb2c0cf79d49563be39ef8648a87b4a84 SHA512 f10c0866a8a446f0c89174b64bddcb8f386c48f26e21b7da3044d61fe071f28393f526bd52c52d04542573780135dd7e4083636939688ad5ebd56ddd40b8bd23 -DIST node-addon-api-1.7.2.tgz 143727 BLAKE2B 1cbac112dbc8dccff5adea230d387605efa3b87541e6e6ef9dfaa747bd08d20810a5638d272653be6c51c854fe46c9e5dedc9db7583b26758d925a0341e77d4b SHA512 89b3cade203ebda6357848c44a442433405b0aa14e6993225d14ed741d2eedbe1d8ed63a267b23bcf7541d5320eb142ddc1f1fa534d61c8f40f800e333d7ebce -DIST node-api-version-0.2.1.tgz 1878 BLAKE2B d6f5bb4ae269374489d01ba25a29091e54e6f55dbd579835b9831266883322351bcf77600cd49675e391d8bc3b49ebe5a0c8fb2017779e4a2ea24975ab9c7dd5 SHA512 db13ff20618c9a6490a48d7e3bf93bda317fca4bd9f3d25eb8a5f74cb24060f0d52d46a5aec86b2c791e55c08266a1bf7846badf972bf08058ce09c3bccd8ef1 -DIST node-gyp-11.4.2.tgz 459824 BLAKE2B c7087f8625c15a88f7fbb00463145774d970cac1b945a1541220602c44436bdd897137ee4ec0ab90eb1060e6fbc19af0491ccb5eba7ad1cc2526c3f3cf13aa8e SHA512 de00feeb3b2b2d01fb0f260e508bad69abae5eb732c5e4cfc90b9940242834f64c1cc312e66e32d31725369bd8ce82b754dceecb14fa785e269082f859267579 -DIST node-gyp-12.1.0.tgz 460809 BLAKE2B a545991da26c2744127001cade78b7b86ac13cedbbdefd492d53437259c169bedefa1c11bbd82ae57a9e22fae157a62670083427afb91c89452e99a68ac16c9f SHA512 5be45803c8c19e14abdafad3b653d83dcd4af824a31a9543459c5ca89704459f0d0f70354e158f1d1c1cb53c77a82de85bdf63b7bdba8e1773dd8ea4cbcec9e2 -DIST node-releases-2.0.26.tgz 5201 BLAKE2B 13bf9a4487c7343237ac05feb4521d93d9235c42b069568ca9f4454eea91f22882e1d492a433eb1114624d5904c69970163a43979783a46e838f05c460fcf6a2 SHA512 4b633d6229a14a3052bd89e5af9ffeba60273c713ef8e0f0b797b6223e85a17e391c0fece2f1dd903c7579ac76a403de00eaaee2cf5bee9a5a86cc8415d56a40 -DIST node-releases-2.0.27.tgz 5223 BLAKE2B 4a0ff6713b514b6667a588a1570e6ad2306f90083a23b3072ec9bcce52df365297e8b947cbe6fbe142b7400b005dcc5e057af1c65df4452a0756457a719401fc SHA512 9e687794291867782b66fa9c087f9f8e643b5fe1f439e6603f8d0e89eac4680a6d5f85e87cc87993035b5a1ee505db94cc2715ffc919f8d0cb0b09b68a8ac894 -DIST nopt-8.1.0.tgz 9865 BLAKE2B f0e51277a4a6c55a0e27a61f331995f7a11c7a67148673a0651a6e330959b9d1489e42520dcf1a7fb432849a483250390492ea37e53b936c559ac8a08d18995b SHA512 89e1aee36bbf42c6b84c592d99a284c0ce8c407d293969da07786dce1d0946dc7ce3e31e6dcd1c6d960de5b0bee964d9e3eefbc6b2fd3e7e66ec257a548915ec -DIST nopt-9.0.0.tgz 9864 BLAKE2B b7f9d3b82967bd511287abb99f2c005ff36e3c07c249b8f5042a7bb5ba82c13fc0e55366b98f31bc66074bd5bf3b46d7e14557fbef4d653f311dd736ff995315 SHA512 661ab76bec852ab63048196e2f81fd5cfde6df2e6ebd0901ff4f42c03aee0a246647f5096279fd5b8478f2bcb4b860bbd1a7933ca2f29c1b6c70ff5e7c515c3f -DIST normalize-package-data-2.5.0.tgz 8662 BLAKE2B 3287ef0198e418729ffe79053422c4b1f3ce5a78b20d2108dadd7fb93f6ce0a5acb95b5c89af0421fbcbd168eaf32dadca7ca13945c7c711c1a496459c1b9db6 SHA512 ff908c3774f44785d38f80dc19a7b1a3eae8652752156ff400e39344eae3c73086d70ad65c4b066d129ebe39482fe643138b19949af9103e185b4caa9a42be78 -DIST normalize-url-6.1.0.tgz 5596 BLAKE2B 9b737b6a6573ac497b869436f56bd50dae422e24e6976f877782080ce3f446cf90ad584b773a32976580c40201d45da046b5a25aea4b410bfca56dd18091da93 SHA512 0e52fe5f03b2dcdc4043cc6e0b4a243e02b8ea2b953402b4d5837b46e79806aa85786b018d5f5798203301d82dfbaebb6c297990f87d12a28a0f09da3c6d48ec -DIST npm-bundled-5.0.0.tgz 3989 BLAKE2B a95c5bbee297ac27fb74820f446dc3e43bb6b7a7281dc01cca25723963c5f5131556f1e616b8ab69e4e1a279d3d0c6747f711b038d28894c83b9ebc0686de685 SHA512 24b4a96f387a5145c8128a8fb1806f54d566cab8d56757f31056eac4a91325091604edf1173153f8a0e748a416c0e40d6ee591c2de4b483e873932c6216cdfaf -DIST npm-install-checks-8.0.0.tgz 4418 BLAKE2B 08faad0d35b88d9b240b6c2f89db7b3d63a2a28736f04584f53a209c958a3f201c83176759c24031c430a0c1935cf28e7737e5debf781a0fa6c777255100aab7 SHA512 49c01474ca72ce46e9c6835e910ded35174523c489f3ac2029949065d5314fe6e3d30545a6c10c5a79173f4b7055ed60272345e5aa415832618486e0ac856244 -DIST npm-normalize-package-bin-5.0.0.tgz 1877 BLAKE2B 7f270a6e0f4f2ef3063b2462863a359a4aa6689644e1334b46a51cbabf62b99e973f87a01f7afaadb2cbb3ab9bb5dd8b64d645d8f6f948a00d2da067188f7e16 SHA512 0898b7392e092ec34c9abdaed3b38996172b3f109e39e3ffe31abaeda58d6a2e9335659b4eb94d0e097c35c14a5657012a9d7c18f8fe1336cd220ac17d986c6a -DIST npm-package-arg-13.0.2.tgz 7977 BLAKE2B 4791f50850386b9a0ceca3397ee90b8f49d78f3df61bbf31e2fccfe7f8f519fc9b2c4a7908dcd5cfd8cfe30961c3493c5e251a070a493e84607a8d34748a7999 SHA512 21c882137498dee13ce0b77c599536de000f3d5f6b218a1de05fab73ebc9ee1edcc0026df5593a4d5b0aeb4af2ed48f74914b76ea451206b93a7d615964e9634 -DIST npm-packlist-10.0.3.tgz 8046 BLAKE2B 45488d853e8290a70b0319ea89296f98541f453889177792a99744b3e5b412619d18577e1c3991d6c287a580feee225df23892da26728ab3098a82048280162b SHA512 ccfba44f024c3aee57e6ebe6d1fcedc12e59c72be6937f07fcb7e276438cb7781b6550b2ae8d9c0ff113cf0cd53dc59903724ec8fce77d437f9e4c858b251bc6 -DIST npm-pick-manifest-11.0.3.tgz 5860 BLAKE2B 2c64c3637a8f91a7b6a9384f0c875a4533d224ba68107a2cad44307532abc2f7bd0b0f18ffcfac8b6d676ec8031f12686ae45ed4a22ba0a0d495d3f2f30a4976 SHA512 6eecf209f7a8198fcfc4aaa606a9f521426b667522d555494dd49244f188eb4b49754854a1240586cd33c9c26890374ece741e9ed82ba5ff0b6b2107cb2625a9 -DIST npm-registry-fetch-19.1.1.tgz 14281 BLAKE2B 5b345aab0153d57438e02bd3eac20f0992f9b502116a9088195b7377131c371cae341adf686b124bb14fd225a6c425fac3e91b11cf6dbce6502b88e6d33aae17 SHA512 4da9016a9e8e335c341fbdd56550dfe388855ec392de1f8be3054c5e66d6390ae866016131c8748ee37a5d2cc13650fdeb9c882af5a0d9d7eeecd4a26982f1b7 -DIST object-inspect-1.13.4.tgz 28026 BLAKE2B 7c36164aae48cef363db5c1400722809c4085f13e51413c6075c61bdb44f95cf7f902c1736992aa2253d24e57ebd2f98d4e65b02dff1e533015c60d4a636f327 SHA512 5baee22e5e09d845c41936df78709f7eb8c37e2b6f2c0360d14957df01545124f1f762974457a0307515812a84fb0be101b8b85aa8c683d733cac4d5d84a5b7b -DIST object-keys-1.1.1.tgz 7677 BLAKE2B f9431231747bb3aa685fd010bd1b916e898be75314e2f78c956a1730ab7cc2e7c411d4049857db9ba1d26ae73c40825af4d3702cda748a13505b3bfd271ce11e SHA512 36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c -DIST object.assign-4.1.7.tgz 20235 BLAKE2B d0f4db7d9575bb36b90b2d880811681ad530c55aaefa26c4eea9daace6f8d8ee2b2c4a3257f0f05bfa31d96fb299ef6a0d5c998c2f47744b69b6e860a0b09f1d SHA512 9cadbc58ea3e4088c190376e4c8344e09905fd42492b27f6109c6f24a7db943a7283443ea643873532f4430cba34fe85844fc49f357bdc1c71a9c25a5d8f5a9f -DIST object.fromentries-2.0.8.tgz 6085 BLAKE2B 19ede3776c5360e9597ac22649b08bd5c78a1463a2f9ba4c408b093ad0e4ace36f48392f7abdbe42d713e81e685dd0feff09cc16c09a638a80808215d9779755 SHA512 93a136d45cf24ac48ae5adb529100305dfcd1a77917a014ee692c77dd40ba510c44d4349b9e2d7b37582cf2437b454436206eadca1c65df4db8b66ecf1643aad -DIST object.groupby-1.0.3.tgz 5828 BLAKE2B 9c20bcefdd84ae1dc9a704400e2aa3e1dda9f2311e55f6e1f86f2d79d7caac420e35154bc1a0e4f175d82528cc91e4ef86dab161b54423c6bfa9c13ad40a0b0f SHA512 f8b872dd3413bb35c8e617af87cb011aa6e6bab1db6c88c08b46784bade7b6154b98bc5f6e3e13e786b809f66b5c8aedf623f899500f60ca3fbfdf6d6a3df08d -DIST object.values-1.2.1.tgz 10764 BLAKE2B ea2075bde99150ad9b9c6ae29419e2f7f21116ae5bb6aa05f0c1d7fee6f9eec439ae62ab7f3f9710e4c19997a3784f38d9314e5d4c70ba69223dabd5a2a945b2 SHA512 8176a1e9a66b714c635a0db3476330a2e3f6787942073755e29ca0b9d7a168a5d2196e2fd80b114142be970c178628ba28565cba7127992528629e425e26f1b4 -DIST once-1.4.0.tgz 1979 BLAKE2B a87bc0b296d43fe660321ad6e33672d9f335e993a6c16a9ba60909690d6b667ca6368f59611081e603302b4b9ef69cfddc22e0f250a210cb9869b6ec2dcdd66d SHA512 94d689808fb643951140191c7042874d038f697754c67659125413658d0c15402e684a9ed44f8dcaf81dcff688c8d8ba67d3333b976fd47f27e7cfc610ba77fb -DIST onetime-5.1.2.tgz 2741 BLAKE2B 85596ef5675df15bf106955e650a88fe702144e5b943557171ae1eedd5ad4310cd2ab89ade8f2306da6c745f38e98ba019f97ac16d5cf9bc015281004e53fae9 SHA512 91ba5a4921894d674063928f55e30e2974ab3edafc0bc0bbc287496dcb1de758d19e60fe199bbc63456853a0e6e59e2f5abd0883fd4d2ae59129fee3e5a6984a -DIST onetime-7.0.0.tgz 2366 BLAKE2B 4fc53f9b0a274df80395582f0166a1a57624e8894d52a800d628e836d985d53efea13bfd399871fcac10bd30d7cba030d30bcb2bcab2ec07e4db1b4f333db604 SHA512 55726373cec549c17cf2e69f4b726594382f026f9cfd295fcf4ea5a2b8f6b80637e2b954bb436dfaff30ade88899cae00238c81e9d6b5e94c394b386c36f56c1 -DIST open-7.4.2.tgz 12663 BLAKE2B 80de74e9825e04ab1e53ed42a6028118198b0a53c07b782c105633b3c84b4a792b57b2f71a8b4b61f1ad88019c02d44d1a70e727e7f3746e6a1dc9c6faaa1beb SHA512 3151dd743570797645ddac2d9404beea980a2e59bf260c59f74fbf341bab06841cb5538e07fcc37558dcc8fcd0fb495a0c66ec5a0ad191f948eb9b1078e813f5 -DIST optionator-0.9.4.tgz 14017 BLAKE2B 9d51857e8a37cd4d43fee3757ffb3d4bca5bdc84b55f3e207b3c68c9a07b40051519a027fbfb1c25bb9d2fc030f0cae63ed41397c866ba80d5356537a88358e4 SHA512 e88a50ee6294c5171934b20e6d1d21cfb971b1aa5248860d649c173c6785d264d5a862852178f50d070ca13db64b744e70bc98febcf43d669667d6b25a669df6 -DIST ora-5.4.1.tgz 6904 BLAKE2B 25f5836488d7f329fae817960084751a37a6c2814e0ca5b92ebc8c1655c748955a84db4bfcd8bcc4ea1ae7907dcefbd585071db09ac4025220aa9213e7655b6d SHA512 e5be98f39b4fc5967b432b4ef81433cac5b7d47264bb6edc4489646c05da371f8175c562f8b951166557cde17a6bb242c09a72c397386fe61254899022b069b9 -DIST own-keys-1.0.1.tgz 4464 BLAKE2B 0b3b6e5b4df4a91149b94d5f148266e6c53768e27619ab7e677afdd8f852f0a6b0b8c8c4565a0c6ada30835ee3143fba2966f0bc09fcb579d786f8171140af23 SHA512 a853b22b93e389665df9040887ed6385d6fd2e9c53174aacecf9bca39407619d0cdef2aa4aacec65a101ea85a5c59faadac241308fcab607763796704284477e -DIST oxc-resolver-11.16.2.tgz 11660 BLAKE2B 1cd476902971f4d385fca6e76f666d7d6e9f78544bb252b24ac95935418be51fdcc387db896c4d3e126b5ed321bbc317851d9eb653c47a41c1266f1d0c4c4198 SHA512 532efabb8eefc21845ed5026558eb54ab9fea2e88ea1b7f8e4c53dbc672df460f6011cba84aa2a1049721c30742fee0938ce952ee678df52a22f0ca323f036d6 -DIST oxc-resolver-11.16.3.tgz 11726 BLAKE2B 3a39edccb65b0410f8d9d76f38e51c39e9352e436b32098a3051aff0260194bb5e72bc09acf162b7704ab3aa421304a17b21af5c4bc209bb44ed7d165c970995 SHA512 8282ce247df1ebd568b86586a790a00881f292c98e6735ebdfa96c466433d403e0dd23c5391aef576abb9ec5073332d56ba64980dc2481448916c6c2a405a408 -DIST p-cancelable-2.1.1.tgz 4426 BLAKE2B 8d3ed6b134385d5caf1c2ad3da2d0f854ea3fe72989b264b713b0f8c7071d69f5d611a59d4608d77cbe6eddc60aff1f3e1b802ea5d003fb61dd56e58fff1a96a SHA512 0593abde74501ce9ed5234eb1fcf8b879e2c98a1e81f2babf167b557c0d2315ae5e40da66a538ec2e2519ca4438d29e4a1e061e1ab7a0701276f923b265df5c2 -DIST p-limit-2.3.0.tgz 3140 BLAKE2B 5744660a5c86f7d0ad174423062d813f1c8979affd05bfd8a8f678c5df709d4e855092c1c90fb39534a0efd960169374efeaf46f4270f98076e71e8308a5e65f SHA512 ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb -DIST p-limit-3.1.0.tgz 3265 BLAKE2B 55c007a9a54bfcee19d5bcddebafe71c3448973ef288ac9ec4dd40db6d665691886b1e18c9c7d55a2faddafd3420a2977b0ab545758611db44c4537c30d9121a SHA512 4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945 -DIST p-locate-4.1.0.tgz 3060 BLAKE2B 77469902d77360d45f1f9246dd6f5a59523091733f3d4be75f3a3f9b82fd38c30eb5f28fdcc28541057ec17fcd214a9db2498861c18cb4c0f5c954455debcbec SHA512 47bf5967fd30031286bb7a18325cfc8f2fe46e1b0dad2ed2299ecfc441c1809e7e1769ad156d9f2b670eb4187570762442c6f3155ec8f84a1129ee98b74a0aec -DIST p-locate-5.0.0.tgz 3151 BLAKE2B 30f9021a60e18383d55ecc53416b9a071f20b79fb1a1aa6bee4739392669cf6b1e4ff8e131c336648b5c8b01df7d5423b0eddf99a0e2e8fa65d909183a9c818f SHA512 2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f -DIST p-map-7.0.4.tgz 5826 BLAKE2B 3e96db4f00e64e76ccf362c69f6f94e0bc60ddf1cde743fa91ba5945da57d1c9a99dab56e66bd096043474108cebfd5c90b292085a37c6cfd99dfb70090dbf53 SHA512 b64010130f32b0cce6921830f24fb553f88f856361ca42a74a4e11779ccba0f242b8968644fa3a629a2cad981ac472b30c774359666f13f4a4ee1b0bd97fc2a5 -DIST p-try-2.2.0.tgz 2194 BLAKE2B 9ae24cd83111ae5fcc64fea8aacb8caaa2145cf9151d234da0c03c0cdcd14c2844aadad59b37222e8e35cea4b60d1f4d0c3785a5fb1bf974b47badd8c3503014 SHA512 4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75 -DIST package-json-from-dist-1.0.1.tgz 5750 BLAKE2B 87e5482c9013d8c5f56f9d79e14b69274093124276020364a312db0b6060893607e570e7697030e625cfb9facc9577d69769a4a0e7de51b23af7b55ff5d41ab9 SHA512 5046484b7fdbcb8382f2f2f73f67535d1113a5e6cb236362239bc8ae3683ff952dae4157fed35bc234d2440182ffeec2028da921c05a4605a670104772c68223 -DIST pacote-21.0.4.tgz 23270 BLAKE2B 385032d68615d975bc164d204ee0c37d71c36a339737de2f2cbc2da00962fa574b85c56ad30fa28272e2c0879d412893e770f81dc6e0acacc75aabedc75bde5e SHA512 46994ffe90d6d0d34d0e1de99daa085983ef35e9d2ed4a8c6d7caf32a25cce8b221564de186c090b635004ba8a7f8ac62c57f008e9e7b70d5a129f498aa9b530 -DIST pako-1.0.11.tgz 204482 BLAKE2B 51de74b8461c2d6300ae34b6d3a6e47d3dcc20170decae486bb9056c8e1da539425e0a1fdc11605d2bdaa7e655618f808a3f71013463e2b47c03784627684403 SHA512 e212c1f0fcb8cd971ee6ce3277d5f3a29ab056fff218d855d4197c353982ab5efadc778adbe130553bfe95e19e2f5dc39e1db07dbaa8c153d70883b4cf8b5a63 -DIST parent-module-1.0.1.tgz 2008 BLAKE2B b2b3fabcb27cebc27e6e1a2cb19e38035a4177e2ade1295f993b8268baae1f91c521a6739810ee0636b5465672617378917df376b87f634b385d15743b599694 SHA512 190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa -DIST parse-json-5.2.0.tgz 2586 BLAKE2B 8cf58227454b88081198219d4a03f14eb8ca5059ea831da5a74f8780242e91a1877a8bde2929f7bb5b1c3b6e098ac6cb46b66f73e2a63421253a4847f847db8e SHA512 6b208abe6fe98421b13a461148233cda20f072df3f1289d2120092c56c43eef7ba8c7820b059787d955004f44d810a0a8ae57fa1d845ac6cd05d9c1b89f0bc46 -DIST patch-package-8.0.1.tgz 117172 BLAKE2B da4a839c5e4ea7c858c0d22a67e1243a24fa5497dfe1282fdd44049c683fb98a0d5741efcfc4e5585276afa11307f609f0c27efb37b5099134b1f36034141b90 SHA512 56c291200f1fe6ea8743b3468702276ba071e83f6cff5897940d61b610550446e4abeb789170f41c7b7eac985ffd9f828b417f1c207686f9f4a8b74b1be43197 -DIST path-exists-4.0.0.tgz 2073 BLAKE2B e5d1442e89d9761dc192589ff29e15b3f682c8568b31263be579ea5b9218b3951411b6dca7bebbe3719de26c5369d53413632220e5ddde52bcc10af74a7a5425 SHA512 6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff -DIST path-is-absolute-1.0.1.tgz 1882 BLAKE2B f1661c7f71a95ade2d402d25fa9ce11c6ce22a275ce6f4e7079c777507fbccfc65833ee677d7413d78c52c6caac837d503fb670d9da364b0a4663c8798730c07 SHA512 0156f0dd42767bd6eaeb8bd2692f409b47e37b53daf296c6a934ec9977da2223299ebe4394385f24eb8b8fd49ff7964f5430147ab0df124f3c30f98f7bb50242 -DIST path-key-3.1.1.tgz 2258 BLAKE2B 82fecb9f42360ef6dd3e0571fe9dac74fce7db36f95373b89ce9758962d79b29ce186b196fdc1bf1fab069cb14dac0bfcad6a210070323fb3a1588bdc417acf5 SHA512 a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9 -DIST path-parse-1.0.7.tgz 2067 BLAKE2B ecc491d19354b91299023335e4f3b55bb7f5e34aea111cad518063364c6193e62b085e55e27943c436e7fd820eff81aaeab2e649b3d19ce98bc9760f1e064edb SHA512 2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3 -DIST path-scurry-1.11.1.tgz 101719 BLAKE2B 546b25a5aa746a1b338d78237522edcdfaf168d10e04bd181cadf2138cdb47090e8fbbc38d58be53e3e09ca90ed38a109237dff6f4a8ee1cd06eea784597aa2a SHA512 5dae0dc35ec54bd02940527dba62e2252e28ac68e6ed9cf052bc1a99c190b874b30f2b61f5ba0a0dac9c61d0dc643baa6004d7c381c55e06aa59372d5bfbf51c -DIST path-scurry-2.0.1.tgz 101594 BLAKE2B b463493eb92ca335df358a4dbddbed9ed99ba2b1a93d3a0e75b5fb2b5dc966eb648d87fdf53d5c5cb312b78a1c72e04b9926070f5418941b4459d1622c47aea8 SHA512 a16c93e2020202efa4680ed05a4fe3bc21d66ab30a36cea95ce1962834ebedcc382067146d6f8f7937db69088b1a17854698e8e8ef49d0f9b231f40f8c7ef5a0 -DIST pe-library-0.4.1.tgz 29130 BLAKE2B 4a2c459b05a510bd7deb7ffa3255e4b3a6449d402664b4492935119662527450efaf513a50e7b75efee2c4e7006876179fa1d47d444909163868ac54393a506b SHA512 791581e4b073ecfa43bb83d49704f43e19d07d34099430dd3dadf9bab5783acae6d2dd00a901469fe508914de4959bf027c28f3b755b045b17aae03aa7a92a67 -DIST pend-1.2.0.tgz 2308 BLAKE2B a2af2f01e3c4b04af77cfede2988c055d373460d13fd14c3821c3366ead293808f1e7bd63ae0495485b4cc24efd90fc0fa5baae98aa51107382324f152ea2662 SHA512 1776acbf8d94b97721773b7ec57a9f5b538695505efa6c5ada6a88d29839c801d93ef16663763a76b49ffc643503ce9681610df4ace1fd6ae029aea219c1d72e -DIST pg-int8-1.0.1.tgz 1508 BLAKE2B 11b2b9147fae2d56cf66bac9e7bdb39e5ad21be56d1619ab8d5fa337747e315088b2d597ea2ba4d49e1002084bec801f8e6ca54ff48ab32d8b474b3b0e4eddf6 SHA512 582b5a6d2eadddcf129290c15256f59233acee5ebac6c19d2a920f66c838c11f81dfebbd500ba6da8752b05f6d9efc60f348786712d6332e294633ac148a90a7 -DIST pg-protocol-1.10.3.tgz 36541 BLAKE2B 4426cb30a2b1ab4033601aac61bc062409d6cdae69786a38da881eccfadb4057c64f655fa8354711d5dda463df12c491ca28250f387091d36531bc406cea5ba5 SHA512 e8320180141a4ca0c9cb19d768b88b47cc01a5041c196b80112911057fede8ec00f18b2a3fe8954a2a27776103cba63f76c1a4f2b87f8ed6b1de3b3935e57b25 -DIST pg-protocol-1.11.0.tgz 37090 BLAKE2B b4912aea5b92278eac946683ff20ec55ad8c93a9cf008f2950518cb380aa3773dcdacfa4cd004ad9a282370f403283d20b2d7158aeb7594063f55f5e4649f7a9 SHA512 a5fb3193633d33706e1a00ce7eecb7ed5351457de398a80c8dcbc0716a8d0e96527f87149aff0748e97956245016c7c04459f42ae5104e02f154c6cdab9356de -DIST pg-types-2.2.0.tgz 10344 BLAKE2B b3e41d3c294cdd9f7d1e105ee9f3b494e6a7a8e5f8bc3b7fc8de0f7262b66ef3aa93bd5f6e69d16d61e4da6ea6bcaecbff990aed5945e1337131eec3f5276480 SHA512 a9300096b12c97cb383a211063af700ef70c21d40deb0773e688d088ecba61132eca7c5e9ce3743b9a02a4923a96c85ceac720018f2abc9d8e9ffa7e09763418 -DIST picocolors-1.1.1.tgz 2625 BLAKE2B 4e08ddd9ee8afc0f237a5560f144a233b1c33b634bc7559b7a128cfdc09e3fec008c9b05795197173af5a2f542e0d7f6778c69943cf1e5844e31899721eeeb05 SHA512 c5c787dac9e1b5be4cf658aa0ec984c39ea57b7efa993664117fe311bfd1c4d1727a036e97b78db250973fd1438ff2dcbb45fc284c8c71e3f69eda5a1eb0c454 -DIST picomatch-2.3.1.tgz 24289 BLAKE2B 975602e4fd847aa9d0f0da7daed5a3848116adb7a2cbad425cdcb7a42c601c27d3c02d23f0891c72faaabf84b0863240375915f60f94a5109266868bc957d1df SHA512 254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454 -DIST picomatch-4.0.3.tgz 22248 BLAKE2B 80722ab535a08a84fdaab7eb36ebbe8438598f5a3e61401e3067f2301c0875a3280c49ad73ed547eccd975fb6222336d99ae617313ae4f9381b51711f4e154ee SHA512 e604e680463fb2a2ba8055cb22c40d1f5f6559be1e6cf0cb03849d2cfeddb169085c75a51baea83ee56f5d21853e9a58673f190d9ab475862b6c77c109551bd5 -DIST pidtree-0.6.0.tgz 7276 BLAKE2B d6e7a557fb81c364b7db8d2af931a67708d0fcdc1aece118a577e1515403370194d7939b0b1fd7b1181411cb7237555b580c2d91b526c4d091265e697dd21685 SHA512 786d9d593570e5bcea191ced9c7131733371b79546b04e8ec137821b77dd51ff4a06c6733b7479388208cd647e89903436d67e44355d6a813674ad5c9fa8c7e2 -DIST playwright-1.57.0.tgz 871339 BLAKE2B 75fb06417ed4a483ae308dbfe728f41b83604803a93a865c09c955c417d387db90efe9a5699a0c86735bd310541e5b9833300d7aac96377be686fb564f428af1 SHA512 8a56108f5b3cb2bda9a4427661569d60137431bde6768f49d3043e52e0e1cd8a944704a85b89f55ece6fb3b391c200c69b2121df7b5131e4bc2a17643282d743 -DIST playwright-core-1.57.0.tgz 1987032 BLAKE2B 54234370872e394aef2bd94a2fe9be0f9288a17ea6ec140a059df376233f471f614ddf15603b86f208b84a6abd910b324c7e3ab2321789bfb4511c5c7c4a6b94 SHA512 6a04dc2a5330fe68c158e9c3ea4159b6d000187822fcdc34099da8e89a9649b325236d7d94014b6590b2a81c93b2f54026ae570391fc700e8faef051a41584b9 -DIST plist-3.1.0.tgz 145420 BLAKE2B 16afcb81815790e56e10c7ff432b3d52e17b3949f771ae123c0407997538f2e2035cb56d05691f5c72c9b4f298efd5495afbda296174d7852cbe8774144d0d95 SHA512 bb2b2e9b2aef9145f4ad7fdd115aadf200b7b13073778ce859f2de4b6f676f9de299d69756f2c83585d323618dab368cbaf69c371e2e250f3e6f7cd7474a6481 -DIST pluralize-8.0.0.tgz 6036 BLAKE2B 78d626414e17e792f4dcc8afc0aaee9067942b2972d4a89dcdf112f8cd6f2d2cf46478105de95ccd29bce8add2c254a8a858366bc0a417a77f68daf035e1f5e0 SHA512 35cdc84f9c87cdf9537db8e0a967023e9a3b0da2b2e059e907497fcc2016d1373b8f1022baa4b11dab27b41dc3efcf3b2d2ac0f7790327d217a2fc49631c8b08 -DIST pluralizers-0.1.7.tgz 2371 BLAKE2B 45fa683207302e940ffeac16c840f19eefa4907821ceae2f92594e2c0f46cfcb4aacbe486c6b137fa756d94cf0667e5e2a957998029d616654acd26afd58d0ec SHA512 9b0e807a352209a310eae3cdf4e6e32434e74790270529a71c7cb7b954dbc6b4854b13b9b1c7f0a53b3c0f1c9be93dafec64ae961bceabea66f72fa15d4bed38 -DIST png-to-ico-3.0.1.tgz 8544 BLAKE2B ac6aa6620bf752120a06fd842c733a15c7cd0cecca99e10b6a6575e1d2dde487de02567252f9c2fbec8ab463304ae546c1c7558fbc86230e6305307599134558 SHA512 4bc04e02868677d813e6e69e990eb66ab218dc9cdca3b51cecbc144ea472a890d3b0aa8e022c9fc8de1d49d4f40fe65ff17be0ced82945b339c2741dec4818c2 -DIST pngjs-7.0.0.tgz 160939 BLAKE2B a78cb4cd0e28fbf4b89207b4a0840ee0bac363ce0d0aea468165fd649a55c016dc5253918ec0a9d8cce06f83b0cbeaa7ef78c1f831a255b807a1707e2c58f214 SHA512 2ca5aa589461b2dc98a3da46be0a2bfe2be4db0f787928c4dd1195bb32c696bdcd983f1b7fb45c606cded6635d10744fe9344feab32e0c7939b78e219d3472a3 -DIST possible-typed-array-names-1.1.0.tgz 4178 BLAKE2B 8b0493b4c2d8d7d7807c0029a4a01dc598637d7c6aa2c857ca6ff3f02b4bc33c7a4dbd3525431f0cd4b5679deddcb8d7aedb8d0c4cd4f1d04ffc8a51b1b98e3a SHA512 ffee55153721243a158f76e1a2a8ba51eca6703d340c0c1bd672706a6ccfbc712ccc9e05a45e9234d6d46ce4bcc88e7aa87cdd57c78ad2a11f3928a87644ddc6 -DIST postgres-array-2.0.0.tgz 2213 BLAKE2B 073f5696b2c21cbf95c9e8c38317faba1fc64d48ee00fe85865c3da5caaa09fbfb067bb1213f6b5965ef33b0fb65249fa863567ca2413bcb030874ab86d0114d SHA512 56966b52a53903af5e4325b6739080d63b4b79c0ac37653f6c3e958a5ac50d6ab9fb95081153bb9dacd2dd311c1dfd73b8f60efeca86bd4bd6eb683ce915d9b8 -DIST postgres-bytea-1.0.1.tgz 1724 BLAKE2B ac7bd62e28bf77784857b9e32fdd40f6209acffcc5578baa2bc612368874533a9c12b22da6a332743a3df6ae57adb1d19b2047267bfdeb6ab5a2893b6a2556bc SHA512 e7ee47a979ec64f13ae4825948c919b544404597a57a5da85d410ef2b1fcdd54bf8711f9befd6e1eab8f839c19b3cc8c01f76ff7bd4853e91c3d47338bb35505 -DIST postgres-date-1.0.7.tgz 2836 BLAKE2B 95ec01aa9ad511cf45c46903af5d0e68da721686ca6ab8607fd62db80b7d8b3e2b4f7bdbb9e76f94ecbf51b7b6f533f7de397553585be1a6745aeaab6962496a SHA512 b2e0e68cb55083bf2730ad94678e788401be3805be1d03d9ea7fbe4cd0d45fe2f4fae5252f2c27a3124a0e8bb9d599becd30a3ac297436ae89f42e613fdbcafd -DIST postgres-interval-1.2.0.tgz 2926 BLAKE2B bb4dc76d4259ba41c156645210214c3846dc333f8ce9e5456fc38ae0cf04f17f324a456d0a1a5fa29b5d2e5c6c063302637437b763c0cd285ffe1b94c9cd9b9b SHA512 f5985728cfebc37e74375a2fb961db1b19c687f48d278727c4788cd2bc44e15378d70b20f0ff335a7f61bff6ee2b4d113f85af94ecabfd10438a9b72c556e465 -DIST postinstall-postinstall-2.1.0.tgz 1607 BLAKE2B 7da38a3fe940c4f08012aa4cb2539546e7f436b196bd2e7b99e775c799b8ddebc128d5c0aedf60f8c670584e5eda89a57f013d472809a6c9275cdc0688e496e2 SHA512 ee1417e999595c8a1189636b6cc41a2f35147c7fac4b1dfdbbc109f4762e0dcd642e8f485ca5a3339452aae64dd5a7791a71fc08614cefc7ec000422dce28411 -DIST postject-1.0.0-alpha.6.tgz 1405830 BLAKE2B e3d5fbbd7e40f9d628a503743de61fe3167904913b09a19a7c26f05e09625cb5b63b0963fbd1f68f08497dc5a7b75ed140d356789e254dc703732de25bf714c3 SHA512 6fd11bf21d9e56a344f1e76f29dc2a92b63a3bb900c2623c91c9c1bf535272895825ba39f57505d27a05abe9716c2d72376d1b982d160446c30b91ffec049bd0 -DIST prelude-ls-1.2.1.tgz 9408 BLAKE2B dad1c8ef07dc9ba13241afda1eb12053ee1c58952ac2d0849138a9b633f4c76b904b4046f1862e9a39a143c1696545aacc8f0e9d7fc9e4b6e139d2e91b27d2da SHA512 be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6 -DIST prettier-3.7.4.tgz 2182973 BLAKE2B d36af911bd5f69f93fbefa7ae4e8cc74f7570101b8c9b9b1b1595097c7823a64eb656370e752e92118161f9465311d0d6d66190ba8a0f32c2960fe16010330d4 SHA512 bfa50d8b5fb7852955beff1f49aa146e0804339544aca9a6a4603b3e5dc717c57ab8a63baef0a504e2651fac8dc10b5f4ee78d9065693affe6b562fd2f86e044 -DIST prettier-3.8.0.tgz 2184366 BLAKE2B 8414d3a47f2e19e15735360cbcb9d08b28567267c3a7ea233a3a39a79e78c309ec3f3c1b0a209f8f83a70ab2f4a8027b3f674fb412b6448c9834b83bdd8c99e0 SHA512 c843eca2f41fa7161f81636109f1028c6e4041a3be2b7769e9711198e7a9c8f0d5a9c266f9b8f20953b7a6653e9c03ded0de5d0ef7a47c67b3b7f1088917b54c -DIST proc-log-5.0.0.tgz 3989 BLAKE2B 7fc93ce4c9a7230c8beff21d0091671c48542b9868ed150d50775451eba65a0dc1f4c625149bf62921ec28a4b3d79e6ca07ffdaf0d1aed7b7b08bc4f49b45dc5 SHA512 033c33be5f741da174682cf526b0dd5d0ca415a91248d3da3e8899f5f9b9a8920c1e2a036448bb380751c129baad2a0fb58dd0bad9e6dcbee882683775cfb06d -DIST proc-log-6.0.0.tgz 3991 BLAKE2B c905c3c0e5290bde9fa9ac3e113463824f29f9b4dbe0271f3f51e8c174db70d9ede2a2813347b926496a35ccd4781f031096033e1d412934566c88c6f4b3390c SHA512 286fd7b130cdf74d4f35f3df00c9a3e8dfd8c20f6d33e6c72bca40cfedbb7d2e0de0f72bfb8ce860139c19206ee9c79760d3f190ba5ae2886d7f15755dc2c07c -DIST process-nextick-args-2.0.1.tgz 1654 BLAKE2B 89e07643d0d6f6fbbdeee65a7313219828b3b696e2004f556f156f048fadeffae5e88166fe166b8ca5d72baf5cb8a64c7721369cec09577846ca633a32a65794 SHA512 de8b943a9421b60adb39ad7b27bfaec4e4e92136166863fbfc0868477f80fbfd5ef6c92bcde9468bf757cc4632bdbc6e6c417a5a7db2a6c7132a22891459f56a -DIST progress-2.0.3.tgz 6000 BLAKE2B 55d307ccda73494ed07075dd377b581627711d4d71b694fd711d1e0e62278fd1c9f8d9561d562ec7b255ed708d801a19683d57998dd74a371ef8b3b325f39553 SHA512 ecf887b4b965e4b767288330d74d08fbcc495d1e605b6430598913ea226f6b46d78ad64a6bf5ccad26dd9a0debd979da89dcfd42e99dd153da32b66517d57db0 -DIST promise-retry-2.0.1.tgz 4101 BLAKE2B d9ae728ff9cccb8d5cfae2eaabf5010dec00ac1f0e5c10841c84850123bd6b855701d9430454b9c3dab0b3d346fe2818ec1c4efe62c2107f6b9f7e4d85cc21ee SHA512 cbe58a165051f011979ec3652071463d99b20dfdc314ca0b85a7e5027c99815eab1bac6ef89c1eb13a3643d47a5f0626b66c001429009377b7e6311da1e87fde -DIST proper-lockfile-4.1.2.tgz 8728 BLAKE2B 63129c311639a13ad0ac0ac0d58a81e296565fda3d54939020dea9fbf478b393b788b86b8371da119c61843de89a5162daa523869ec2e0d6a84ff7be1f2b6ddb SHA512 4e334f6e537807001631753cb3d004cf82664319c3d4d34bedb34e63f00a533c9a99cdfbf4558049485cfcad692f69e855bf9799928b2faf1c8f32ec88e00c68 -DIST pump-3.0.2.tgz 3719 BLAKE2B 02955ad809df8d2a3ef5ca6d77b245877439378b1ee83e49e118331b6ecad3d5ac5e2c581a7d261df6c751cb1af0b7ba2cec17d42573dbb52a77920431ccd0b7 SHA512 b543d7b7394633c144dcfd192fa0d5b3fdcfe7c93d9e4f3f8d97900aead327295003ca856331c57e104992eab21341627ceb10d2e2967a4899e60f30b6bdbc73 -DIST punycode-2.3.1.tgz 7603 BLAKE2B 7515ab158e12f6af144aaca1ce1922ab4a6940c2e3282a135565b1a8330a35623568b2a8121e8c725e41cf91839a06a20939b9396fdcbce78aacf9e30f1364af SHA512 bd8b7b503d54f5683ad77f2c84bb4b3af740bbef03b02fe2945b44547707fb0c9d712a4d136d007d239db9fe8c91115a84be4563b5f5a14ee7295645b5fabc16 -DIST queue-microtask-1.2.3.tgz 3676 BLAKE2B 9c6ae4155d63581227a2ed675f1e66ad6e73f25c20e5352879cd66599992ebe2cc587cc6f2530bd4ab580c1fcd153971f5d20de4ca40a6c69287bb2873a93b58 SHA512 36e68d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4 -DIST quick-lru-5.1.1.tgz 3387 BLAKE2B dc4fa002c962b90faa9093890cffe583633254e6c8d36aaf06db3ca826c74ad1bbb73ce385e3218acbfa72b1ed92d0aae594603085213fa272309ff6625a1b30 SHA512 5aec802d18d63c31adb7fc3326269d3b901763ef2167cd215697ba3328af82b691116ef9d57dd26e146f1b778b28e60dfbc544bea2dc7f7c1d9ede386784b848 -DIST read-binary-file-arch-1.0.6.tgz 2783 BLAKE2B 450ec37775ac34066291d7576ef14826c230157719af8d398ce12bc90c661b04f2f30ccc0f03a2f8397fb909258155eee751c71d5f74ea6b05ccae19cb66f2c8 SHA512 04d83d10ddc30f71ac0d75fb01af0ee29f76b2bca3926cd86209a04c073a080e2e18b103cc57f13b1ba0bb6d5a90ec697171e2120b18902ea73ec42f2cb2e612 -DIST read-pkg-5.2.0.tgz 2552 BLAKE2B 7d7939ab0546fdc20faa90410827d2fed713d83b427b61c9ac2431c3fa94ef4aaa5bce1ae5ac2dddeafd64ae139a6658d53f30a7dd1df7f64f1d9fc5da9971e6 SHA512 520ebd98d3a97ef28301cd90f034693238f376dae7bfd1dc48c5fee15b19c43d5a67a673ac813bae5cd706d593ca150b48c2a0d3be805ba591e626690f42623a -DIST read-pkg-up-7.0.1.tgz 2733 BLAKE2B b172b1d574630118e66c90b3c565615c60d2892d9b2c3c3fa02db9025eb4ead1ef1ce6a4b77ecad5fd0578e96a5a7cd81bd13103573e0540f51ad536a1589650 SHA512 ccad1307b5dde89a422e694b9ae7eaca4184fbf4e539e3c3eaa28294d5bb8470ca161fc9effee0096191ee3a044045b56caab76b7c9465239b3a858b150e2886 -DIST readable-stream-2.3.8.tgz 25747 BLAKE2B 80567318cc3262cde9b9a61e7ea9b07f0f2bac11fd7ab279948823745ceeee7174ca23a1c85a6664be24374521817acd734074ba640d0b38194ccb0493da1b2c SHA512 f29d00524e173838087b04a2d25f04a63b3e1159d688aecda03204194d07844efe67263c0f520c63ba1dbb9951ac55c683bd4bd79286f10acf9ae9b8e514ed74 -DIST readable-stream-3.6.2.tgz 33238 BLAKE2B d4f40db1f6f74cdfe1302097944cca5d009aab67f70765f1d92999a5c96e3113068836bc70c8f450ed42c83a586390c077c357db1e0aef02263a70cb448064dc SHA512 f6efec9e20ab6370f959db04447cc71381b66025eaa06e454c7522082e1221bafa5dc2d9058d39c9af442a361e93d3b9c4e0308c6abed497460404bb43d49ca0 -DIST readdirp-5.0.0.tgz 7530 BLAKE2B de3a225244fdab369399b57821e4942ecd6df1cc0ffadece60b7e7e00f121671451c64afb71b291fac648f0b6d38639001f4c1d0f2eb411e6595d9fcc5c2d85b SHA512 f6efd7435a6fad0b58c8ca597bb0d72afda9e4236fc95c33501eae84b0274301cc4a028c051eb695cec01e58da7ad79e1d79f5d574c068b2d4559615672b9105 -DIST reflect.getprototypeof-1.0.10.tgz 7601 BLAKE2B b8a54b1b124b8a8fd6a08832226708f6ba1210aa7de9fbadf565bc4fac35fd93cdfdf251959357c84d95d4679d8c34e144147424b9f996509a18dad6179cd300 SHA512 d34a3823e0d5ade7e1bfe9d7d2e9728b76e248708f0defb22efe68fe9e9dfd45658ab8a307c135e85b5fc12022e20ded72aad0e25440a904a81446497a160473 -DIST regenerate-1.4.2.tgz 12607 BLAKE2B 05a37b512845e36241e9b65ad1ecd63c41a4979e6fb0481aef5e2985b512ec8f84266d08e90ca04b14a1a9300e8cbb4b0b8a5fb54e639c3beb08325a66209c3c SHA512 ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0 -DIST regenerate-unicode-properties-10.2.2.tgz 111008 BLAKE2B 27abd45020f9f1d1083d2228a825c4608d728996532704ca1bf01c3280632caa4b34618fd959f6348177b80587502ca4bc9e3b02ddec1665543fd0e6a56f2745 SHA512 9b4dcffb38417907754469d8c6b1b20c03e9597fdea4a8ab2eba7c7b7a9ebd975590ab670ab8e359ccc86d873cfb177abdc4d2b5596a7f2713c75291e0b3abd2 -DIST regexp-tree-0.1.27.tgz 68410 BLAKE2B ed6e43b11920e67069a0b9ab493f2505bf7f3d8175f1ef439ced266ba7068cbf3374df53fd37a9c8cd3baa2cc581ae97ced56c39b54449eeaa7dfeec103455b2 SHA512 8844f1a632ba628456246e68ea15cbc2f8d80285be144667f68b343c3fdbe803fac50c2c6bf63b942560222c416d43cc7e1bbe8b62ed75e02a5538069506ab7c -DIST regexp.prototype.flags-1.5.4.tgz 13056 BLAKE2B 094d203420e530ab52314e400a5492a224b8a63c08edc6732aa76a29be2597ec6bf37f401ec83fd0d7005a56055f76ad27a0d9186636c1fc242da6df6a87505d SHA512 758aa035265b0f091a27671e45df688c21a306afa63a6f4b9ad5e7027106c8784dff947b8835b64d1c3787ea3f8c2171bacdcfd8b7d62088b0a3002300d9bb20 -DIST regexpu-core-6.4.0.tgz 35105 BLAKE2B bc497d0e1d60afada515074caab10aaae39a1332720abebe2a95d7b25f77428a91cd8903560785e3e03ea498e0e2d35718f918596a7e72231ca0931056240d09 SHA512 d2086eceaebb2c8f5b2d7a4e5ff2127ef7bf32adf76b8685473a106219e7a24d49385a6613f0364c11a43557a738611e4810a322259c73a315386e47110bf4b0 -DIST regjsgen-0.8.0.tgz 4693 BLAKE2B 5d6e44c96b7fcd127b334ebb5a9ab327e2c90b172907816c1a2cdec755c37475cc4fc9c2d43a9893aadd8276a7c244074bf7f8c0e45d6647d439cb6515e26dda SHA512 46fc2d19edddecbbd6883417790c3ca796ac65499f5351bf97a59b517787b5aed8d8f108bc14f01fa13611f99850af29c5cc4474499aa26ab2a74bd967b0bedd -DIST regjsparser-0.10.0.tgz 18864 BLAKE2B a12da246bbe8b65e057cd2dab5c253a3b24a8532c3b3c653f5ce7235c8354fe1dcf8254e4262e15954ede5721a5f35fbea33d374c1b2f26f62533c9ead1fa4ce SHA512 ab1fb1406655b32e79087d1ad61895c079aa8cbaf27e1ef04321791ced3b5c9f5fedd40c63f80f407865c83908cc9282fb1d9f502a42714383514505ae6ed21c -DIST regjsparser-0.13.0.tgz 20524 BLAKE2B ccbd2cc8da3c0ec452d634a77aeae3a53ee7ff81c6c4ddf059825f4179772f3d2285b2afe9a3f8aa877f040112024bc874fac7cce1f93adbe8535f7ee5330903 SHA512 359419742e70384fc7dd44f6f1f5462fe8a4399704cdf30693f73788df541b1cd61cc6b5a29ef6ef8a3289456b006e01d84b8586eb3c4af91a62786f5bdda9f5 -DIST require-directory-2.1.1.tgz 4372 BLAKE2B 0d1097eba3243eb50cdfeab59ad74abe7fb7fef67deb9ccf552388f1b004e644d16e6702ab5d2948b8e977aeb07415c8c429ca22db426e68982c2c774ddc088f SHA512 7c6c4423bfb0b06f71aef763b2b9662f6d8e3134e21d1c0032ba2211e320abc833a0b0bf3d0afb46c4434932d483f6d9019b45f9354890773aff84482abba2f9 -DIST require-from-string-2.0.2.tgz 1816 BLAKE2B ac0408fa672b2206ab4f2c323e0120be3a53c1a10679cd3485461f27c7d1df6b7b4c4261136728a941b32ccf7fa22fc3e92fd2ec866b5427f3df7f27a6c102ba SHA512 5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13 -DIST require-in-the-middle-8.0.1.tgz 6351 BLAKE2B 242ba8506372ae2782e3125794328eb6cc47395c052d3fd336b61e0f795ce27838ec0a818d0d7d98179dec52e508757d55114890681b93391e183020922f4389 SHA512 413ec554c5df58e6056de44117a9eef88eadaf64dfdeed2af112048cda1bfe178a63f9e1eddac3fe4ede78c1664908274ed0b32c3702bbf5c49e95b6c24e3109 -DIST resedit-1.7.2.tgz 48046 BLAKE2B 2763a290b155054683d3923cab0e1772d77209788130bbca634bb49086504f453a0993fdf2aabbacaa0918fec73ca0af613ad5c9c23d6df1b19e8007c122a3d9 SHA512 bc78dc6363250084c9842d1e443fd5bfc565826bbd49ddcb5fdcd9bed1b353964899d4cddfe77a7bfe269d3c95f2f11bc9fd6c80d22b5b185696bcace763a410 -DIST resolve-1.22.10.tgz 27550 BLAKE2B 65fbfd938dd4ac749a6c32a2628b453668d8569f1b9dfb661747e7f045cb17f68166ec2de630bd45687e606fe373d5e38dddde7d1e94d23113dba798906d715a SHA512 34f472fbf9dc20c78395302cbaac0a2227deae26b085e7c526d90d496d2a64912a3046fea81b7fefb07f8c679e7a4f85d2e39e374e420dae875db6c882d557e3 -DIST resolve-1.22.11.tgz 30870 BLAKE2B bc477a01f9c3b01a9d024a8402163d774ce019103b1d747e26797911b2c9e224b1221b28d154e9c8ada32a6c8e8d2915181ef35a763d8bc4c90eed528eb04375 SHA512 45fa80bcb9cc977d77afb73da1c941d478541007b37292e3cfde70147e0b56e864f4917faf6daa9953fd00c98e538bcc5fb43ca4df23c0d83f092a5d1673234d -DIST resolve-alpn-1.2.1.tgz 2231 BLAKE2B e106a759d6c788e839df75e065fd59efe93ad4a45db69fa1419114392769bd77f166607eeada3cd30dc1db44e6c823bbbd1923b04c0edaa17489792f9a714d89 SHA512 d1ad45e25ef7fd915939a9099d0dc5be4276fa0493416cffaf6284e4e7436344f13e6e61e0692a91659f338ed3ec7b1b9ceb5c255105e1ea42572eaeed0dcafa -DIST resolve-from-4.0.0.tgz 2149 BLAKE2B e02fc5ac056e33e1374c4200e0ddbca37a30867255573b5cf78264193eb5f7fd66320e119199782a40e91da997ed86833fd1350a46ee114fa3212949f8ffc03f SHA512 a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2 -DIST resolve-pkg-maps-1.0.0.tgz 5194 BLAKE2B ab93fd38cf92fa8e8c22c9b83dbb732c9744bf25505c8bee56f61c9a31ea0685c100698107790fd40e588aa966c2e1923eac4f25dfeb02ac972ace86f6d9be4a SHA512 b1e4b64e3dba4c154e0b6348736ace7b6cb664eede7f1213b4b65c1923a71c734e43b0a489405fc34230d9c93ac642213f02e128d2d2f013be844a6781096acf -DIST responselike-2.0.1.tgz 2190 BLAKE2B 82929071ea15a4d3abf62abe3c4cdbb112b86ed62a8691f7afede64bf87436131a7b2540c599faf0ba7591980e9a3548f1b7097c8fef1b8cc595a70ed58266b0 SHA512 e20974df09f7863d473f7cb381d23b777942905f79176d4fcf804f1af2878a7c90cc02d1e426a9c02f32222d11879f0310c43f4a0b82d37c058f693433f98787 -DIST restore-cursor-3.1.0.tgz 1600 BLAKE2B f011cb4b8878e845509a8951c4ce8cc1e6dd9cd76a62232f240dd59475cd9e902cdc94b3bf86c20ed23763c6b0bb7bb658e5d5022f2b95119ad24ca71fa0c2f4 SHA512 97eb1279fcc7a63e6a8a6845484e5af27b9f65800cdec05254c00fb589260bee041f66a7486684317483d22cd141bbbd9dfc90f72e49ad59a9ec4f2866b523bc -DIST restore-cursor-5.1.0.tgz 1684 BLAKE2B 88dc020c1b3f4e5ce981bfe9ace82ec679ec53fdd8dc12a1a8c0925087e8868fce871f71a526269bec0072c6080be5ed9e8804d27e30bf77cc512c85917ff6aa SHA512 a0c03675caf0eaed187f12505e6df8d9b14a5ff138b06f6b6d3ccef69b54711fdef00df7707baf4ad8983b01fb7ecce4665675cffb5af400283e4d85e2a20e1c -DIST retry-0.12.0.tgz 10431 BLAKE2B 0585baf9a534480fabac45492236479d02a73332c2086f731528ac5dbabe8c20990234100a0eb74ca2c606e856755f4df3e931e12098eb9aaaed79ea3287e5fa SHA512 f4b9224f08d487aad3e79e43b44f6b4d7f81281c8f7eb333100b67944b5d130af73647dfc228a1a9ed9b5800e0f8e4118edf6097a20276607f6450c2180b52a3 -DIST reusify-1.1.0.tgz 4683 BLAKE2B de118d03df9b7c6d0fc78bff635fd879f0f4b30e20a2919d160a31c5ecc12e7e32f4e15d5334da8933b56385d95e3561fed67297f7322db874fee4f2208b1570 SHA512 83a4147dfd38a19a47b34786e69f37ac52e11de574d2e83f61ff6764ce9f2de52b3e0b814e44d039da40596b29321e794d97d54033da37735025f6d5440c5d23 -DIST rfdc-1.4.1.tgz 6828 BLAKE2B 5396c932cbf19cd11884e507579e67cf17b60f755a8e3d95cc264d6e18fcd962df29b3880429d3af2710cba2ad3882e2f780e83d61700e17209ef53af215d02d SHA512 ab56f737942445459497b8b2ca569a8f790ea484f43768bd32a2044173fbdc656c37d730ddf771f17eb77049968491a2d8f3c2176dc88e9ee4b66777f6b6b020 -DIST rimraf-2.6.3.tgz 5537 BLAKE2B 2f68628b7d381f50aa925fcb5f19f52d987bc52d2ee49d5049223666acf624f16e0b2af6037411610ec0e96682ca838e5c39234119e5a5de2da0a7bbd39c8b43 SHA512 9b0a9e5b95ec036a807a31b8ea061d10d6b15e3c7da2744d09f9fb2f476eb8fe210ae4c88bf40eecf0cad3b2897e9d5dfa2cd63ebcc4243712a816b439942b88 -DIST rimraf-3.0.2.tgz 6480 BLAKE2B fd78b3e6a69473b66f6e5a8bdde62c5861afe28edc26e5d85a1decc75b0c8eeeb37c1368e3f0d066f867d121278eeef54515ede261cae95cc89c788ac0248d8a SHA512 25990931990018514f3f662a5d95cf6cc94c060b31cc4f082ece253085ffda8d0bf54070f4efd8de8eb0170fe2f582daa5c5095b0a9b8b791dc483dd0bad9320 -DIST rimraf-6.1.2.tgz 39410 BLAKE2B ef16257d591c197d4960f19375179b9e6f80cdda58960a07f776bcd61d112ebb43740a8d72d8d11674b9e3ae819e734019052baa53aeeefbdcca543654d25007 SHA512 7050a43ec949bfb0405c9b1894ad5d66c6cff3f64d2e40804346e2d617f910a5f64077a0983144140e9086e609964ed40dd73ed362633bcd1848ead63e9c34ea -DIST roarr-2.15.4.tgz 17325 BLAKE2B f4af324603f22618d070f5ddfb5a50a14ceffcdf90f318af76a535c5984548ef71d7132dfa94b07f82c711df0c9f4c66394e7206822f1ca019efe48b82bdc06a SHA512 08784f87e50d1c3d864d735884f58b9d4f0e347748fb90c8fb811820039a883eb7ac7798959bf287c3fe8a7e7df7d4d348581462e294023cd123899d87fa7ed8 -DIST run-parallel-1.2.0.tgz 2813 BLAKE2B 08a2c311d0639f0072c941a29163c0813e4d18904f3f18e0e80f0c221f31a5840d8e52c687b131a6e1a29ec94f54a9ea1e857111610183b6ff6b42701c652ce3 SHA512 e65e15c9947ce8b67f943c594d1ea3a8bf00144d92d0814b30fdba01b8ec2d5003c4776107f734194b07fb2dfd51f0a2dddcf3f0e950b8f9a768938ca031d004 -DIST safe-array-concat-1.1.3.tgz 6542 BLAKE2B 5a10f9801f7c61ccb83df2735bba97529ff5e77bc1a17d68144b52465c6972051bd165d1cccf17f6cb775d9def4b5b66f2fc250be0858464327afbd133aefa5e SHA512 014466e5fd236043b27418fb550955bc3ae378582d8437441791f574ffba98da685ce328d6ab90a89e30bc90f2459f7ea4ede4196a0e766574f1c4afd9a255e9 -DIST safe-buffer-5.1.2.tgz 9822 BLAKE2B 709688b8776b6d6e4df8452f482d8c46feef1b826cc36f7f54d70566b191fc3ff18cd354d3cd9cbbd235a9c765efb02f8d713293cc3a598d00785318778a3c32 SHA512 19dd94641243917958ec66c9c5fb04f3f9ef2a45045351b7f1cd6c88de903fa6bd3d3f4c98707c1a7a6c71298c252a05f0b388aedf2e77fc0fb688f2b381bafa -DIST safe-buffer-5.2.1.tgz 9972 BLAKE2B 5291e5d14e580afa8945efddfc4c59beda822429625779151132f3ce19755f29022decf7f57bf84e43598c4d363acc6431af15cd29cc175e3c503fc3a4e895b4 SHA512 ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d -DIST safe-push-apply-1.0.0.tgz 4053 BLAKE2B c5a19ace60203d64ef14cbeb83c7208288678a7e6f01d9ffc70814ff8aae1342c9e78d9d764ee8aa04429bb1a78bcf008314fc84cc5c78b5130d62688e436670 SHA512 88a13dc3f67bc42cd430866a741b29ea9110bf0b8479b1f8bdda637035a7cb3688eb297a3bd147bd5a6619e96f10736ca18eb019b964c51e99b72fe1d345a248 -DIST safe-regex-test-1.1.0.tgz 5064 BLAKE2B 8b74b77e91bbb2ed6758d301ace9037702309ee70935dd538f01633518a1315d5f84d306195459dd72989f4ff0c0f993491f83299a4d64a6a642dc6a80465c2a SHA512 c7ff82cf862b8a643141c7097f998a11b21ad4dcde091348e44725fde92695869a9a974d2cf6a557221c09934d1f732f9aa06e815e53318657bf4963b255256b -DIST safer-buffer-2.1.2.tgz 12035 BLAKE2B 739b558efffab0ebd10a3bb510eedc1516be71ae4ca0a96cd76899cec0e3eed2e0eafe8e14b14cb7f79dadf40a8a01240c841ee40f50ab56cd9b290cf00609a9 SHA512 619a372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6 -DIST sanitize-filename-1.6.3.tgz 6448 BLAKE2B b2b97bf00048eb6fca1d2121b56dbaed48f466076d01157091c9f717e4428145b0758c54585b1b030d09d83f14b50dec3c50c5bea5322967b372c0b258a283cc SHA512 cbfe7631ccbb6b0de0466ec8adc183171fdb0a4e00851876788f65b8739033cea766cab0891924ab619e9075c1043f9298f89d73c8b63eab58665fa9589f0e7a -DIST sax-1.4.1.tgz 15623 BLAKE2B ed66a1e2d0dff7d63ab042279525c2b72efedecfe2e6428666b7e1a1e7701c1abea0ef5e95ebee9970368d2433ee75bcd335a37ed7abf73dc8eb7019353b6deb SHA512 f9a58ecfbc9549c106a0a35de0f035d0b67cb24d00ff3e7e9d7406e608943b9ae9ad7f63818b13768bfda827216623c865ecdb647fa346eb7c9cfa1d1405f826 -DIST semver-5.7.2.tgz 17872 BLAKE2B dd3265a9ee0fabf98c2db6d32cf6ac55441e725932cfd80ae5eb937a8acac908a8aa5cbfdbb9753e64a36d2275c0300299e2704dba63d45f4d62802cdd62ef44 SHA512 701ce79d0f4a8c9a94ebb079d91302eb908c6ab2b6eb4d161676e471a8b05aadf1cbfe61685265b21827a63a2f31527e1df7f8f5df06127d1bf3b0b9a43435d2 -DIST semver-6.3.1.tgz 19093 BLAKE2B 9c7316abc5be91329fa6db37ee75553d1c57fb4837f53c91d40e85a13db3b271d7cade2957a8182f348dadfb6e111b032396f06e885b66d4c91b022514cec5fc SHA512 051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc -DIST semver-7.6.3.tgz 27678 BLAKE2B 899166cb4e1ede1c02fb0d68c216844b316307946000034615ee196fba7dcbb71621f5ba972f42a26e344ba15b47bf50fb4c3104f9e4c39b11b0c84d44be66e3 SHA512 a157a43f570ab48f824c3bc759815470cb6c2bfd34c260047f2a8a7cd740466f2ed7035585281a5fb03c77852e225508e5ef38884c0e86ced93d8466cd4f54e8 -DIST semver-7.7.2.tgz 28388 BLAKE2B 12d59d9a65dee7f21e209b413fbe2246c2c156395de9257a3360eeeb3eb5d1eb4282d0d8a1b022682851be1e8a9842c78d35a0bf268dd7c682316e15b3055b5f SHA512 445d05c3eacee4031ff4c0326915c8e005745258f994c1ea571c5d4a08956e2c52097a049a65ff8e4d02b89c38fb74aaae860ef55a1487e1dcb898afbed25e98 -DIST semver-7.7.3.tgz 28442 BLAKE2B 3986669859e3cf6468817d5d0f5d7ed0fb4758a5334142bba55b3a8a67d37c30f76ed133eecf02d83b361f06c27ecd8b40e95796ddaf31451a7a82d0c1dcefef SHA512 49db0a32b23d4dd823770794491f4cc1e1c0e0427c6311e7f0315a0e2b2f85595439ee01175b4b0fb1808f4948a96565f9d3dbfeb131af406d6f2e65a109b6d1 -DIST semver-compare-1.0.0.tgz 2003 BLAKE2B d526f97c589e0045194461229e9fd00181cb253630d2cdbb484d9871799f5a579edc3be9e14216b4f43bc5afc5bd315679f1c73495e5fb619859ab37ac92d433 SHA512 60cdff213876309e4cb7368ce36f5a9e1fb1da388b563a882c5e26e28c90075f16ec681e6bb05fa9d1ffc0630aedd0e232086fffa586ef39d6330503cc9897a3 -DIST serialize-error-7.0.1.tgz 2756 BLAKE2B 851707fd8a065c88335ae1058ffd076faaf83c5e01093e996e5a489177a889f2227446fcbf3c211a9f4815368d82057c066c4304070ad8783d628ca372ac6589 SHA512 f08f138d6e4a30e2ac6504efa318ee4886bb7e80303d618eb6cfbaa3bb208f3e35fea303f55407103c62e8f06f2b6974317526a99c8da542be4f6b5069a125bf -DIST set-function-length-1.2.2.tgz 5784 BLAKE2B 61e3b21151917298faea8906aa9122790dfbda6b00f64ae585608f381ae32437c5c8513484595809a954e3d95d7aa66558867a4b27aff497b171ee6c36021638 SHA512 a6045ce21278fec363582492f409a74b8d31ddb34c0d39271e02f951a3014ccc899d4f741205a1d51cfe302f5e16ee01b8dfd4c198ca42e63fd6fdeb33b1cc7e -DIST set-function-name-2.0.2.tgz 6437 BLAKE2B aad84a98dc88b344818910e25a7906e7b50152151df309f8a7ce5ef62bac0847f69fab313a632f805b7a05f15283879f15b6965aee9e0cb99d908c616bf67754 SHA512 ecf185966b70b040036f4598caf08c6b5b7eca47ba75a206e168ab69fbabe6471ff8c8549cf9acd54791d02290753643f35c844b03076ed9fe4d1f9d32f89a91 -DIST set-proto-1.0.0.tgz 4194 BLAKE2B 3fb18049a2611d633f2d5f42837d53dd157e477184a985dfde259175b9265b4f244efcc44f262f9deab490fc2b61676d2bbded88383d37f81b80ad998b93ce57 SHA512 44945dbc2a3a2009cf76cbcfffb9ba6ec42a3679f5142057e5936d14bf7c326145ff8c402094c883561b1d6e430b65b948a65a9eb0ba8b81ec26a95a8f0fdd67 -DIST setimmediate-1.0.5.tgz 3255 BLAKE2B c47e1a138cef34b67495c308ccd1a30b697359f4030d0658df17a004778d03fc9e4f41cb9d23360119e62a7583ce79aa80b9153357b00676384e994ce1160f3a SHA512 3004c9759a7cb0ba8397febc2df4266cff3328f2d0355e81219a0882bb1c14343e46cbcafc1c5e0d03a0cb128aa21d32ffc87706a5459c2a90fe077eade8885c -DIST shebang-command-2.0.0.tgz 1506 BLAKE2B beb3e87ac0128e3bb1e54211c7d77c1c9a26b1218a99845bbbe0e4b35004725f8b49632c4bcff6822fbe2210961e3ff65b24e7739ce037ff8521bdcf604daa8b SHA512 907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c -DIST shebang-regex-3.0.0.tgz 1503 BLAKE2B 39a22dbe7504b006bd310e2fce1c7e75baf07f9a19da2778583f484d638ccb217fda56dc99e72843f069dba1429dc1381890aa7eec3ccb6fad9d4a91da2179a4 SHA512 efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4 -DIST side-channel-1.1.0.tgz 7750 BLAKE2B eaa6bd86fda4951dfae7d87f9b6ad77dbbcb6e2e06411bb37447060b3f809fa13bdd8939bf704d788de1f1f481869594e3fe267a9aa54d1f6b723db6fe34059e SHA512 657f7d7bab51c1ea145ea47e541aec96175ae75361e4c4d0c28bb9b6750381bb723347418268440ed5863ffc5b2a7ea1a9f3d11ee8d4370cf97f2ff06db867a7 -DIST side-channel-list-1.0.0.tgz 5659 BLAKE2B 8975407842290c1e93e4d3193224c967191daf694a89ab2487ba7a866c781d1d0a9bcd8e52785e6d96ff5df95d76421832085c8884619612e381d8227773283a SHA512 1422c7b510ff827a428821c48892cec1d9853fec330a60c491cf72ecdb18c5e178bbb06db27d59bb0830246c4898898789c240acb3f8474c97e1cd8a0ab32b4c -DIST side-channel-map-1.0.1.tgz 5280 BLAKE2B eff3b624730c09b13d68e7b67c08dc558757b885c46beac2ac81c9ef801fb7d1955f52dc5594826c0f587e28cd2d0d974a1fb1fc77a1c85a9da7546d5c94c9b3 SHA512 5428c235f80cb1bcb7b53768d369db8ed33f7b0adaea33c79a94e17a7913621f291bdb9c67fd4ff12a38bb814605e93f063a4e56c0c23282c0fe2b8128815744 -DIST side-channel-weakmap-1.0.2.tgz 5442 BLAKE2B cc8cae0865d40da6a2608e672f5b1aaef16b544071abbef0c666156b649d306323fc86d560bcbcb65065b256ce0e5839c34d82f16a3a728b9ae1302ee43f6aaf SHA512 58f4bf1ef1d04d89c78ac2e8f4c72a0473899361641cefed969be5772ae77a6e1a790a7885a8b7832b61b3083aa74d684a84e5e7cadca621408c5d9baf6024d8 -DIST signal-exit-3.0.7.tgz 3851 BLAKE2B fa147e1212b0e532057f1c9db8f4c91528fb75059bdd991c6a50101fed643099aae28efbaa27c57dad18e6e05a890e000515e55d7183e692c9659e79f26f4603 SHA512 c270f6644fa5f923c2feea12d2f5de13d2f5fb4c2e68ca8a95fcfd00c528dfc26cc8b48159215c1d1d51ae2eb62d9735daf2ebd606f78e5ee2c10860c2901b19 -DIST signal-exit-4.1.0.tgz 13369 BLAKE2B 8f3cba37ea92637525671056202d62b1e9fbb67313745a6e250a520dc43b519cff3064c921a4aaa7b74012492c9b8302e48922c5cb2713f76f8b5a5de5f5624a SHA512 6f3c99d5ef3cc3d3b588d25b2a73a5bd84eb58f0e5e3a3b56c6d03dd7227bfef6d90faf1acdf235144e21650e4926296827d4ce827c8035dd2b86a8e6bd2a8af -DIST sigstore-4.0.0.tgz 10117 BLAKE2B 4d7bf2e4fca9cb62d26479126d0607b6a14152d3a0ebe2987abf6a2e0199acdd9b796963add247ce139900ed05d5b9c00c9472c3c751b0fec971cb9e06da8e07 SHA512 1b0fc5807b6b2ccf563fc3f994b7121a1f4e41cad3aee58210b0224b8f2293541b2f4707f9d7e3a268914d413dcf3cfe0f537aace2e4c1752f5665d902c344d1 -DIST simple-update-notifier-2.0.0.tgz 7774 BLAKE2B 85d9c206d5d1f56e471ca1334d3c18d2a1dedea753fe5ffee73e5a0a6e62e3e2b2e2918c81b47bb37261eb5e4f3b3dc8329e5ed9e74b36cac0b514b201dc5a69 SHA512 6b607d6342a535797dbbfbec5bab1322ef6f184a5f2aedb0455ea5d47dd711ab3fd20508cc6cc1a0ffc8a2e4dc5106e6f495992c7dc23b1ca7d374d89456b1eb -DIST slash-2.0.0.tgz 1695 BLAKE2B ea7014f7ee511f9c09e9e7eb5fea9e715c27c96fd1a9e99f53ee44f433bc90b9973278da6f84730cd1dc99fbe18e8d70fde6df4c9678e4294e12e79cc0291832 SHA512 6582a1dd6876cf53e91175abd0ca52059d15ea66470107d87afb6d3b5d5ce7509a5a319369a762299fb056dd4f6cc943579aa1305b25a5909e9a1c0e2bb0bcf4 -DIST slice-ansi-3.0.0.tgz 2915 BLAKE2B 2f9f96629d938bda2ee2da30e2442e8b89242dead76e6df3bb8a267ccb029bd1bdeb9367aa224ecfc8dc352bbc3bd5e92a73357be4f259c5bf2a10db22500acd SHA512 a52cafedb4930bb8a0f437206f0f40b913546f993957aa03b9d8d9a0c052af5deaa4b046eed07ece00a40118eaef121481dcf93f541ef2efab486768b8e388c9 -DIST slice-ansi-7.1.2.tgz 3180 BLAKE2B cead15300812c43bf5a6e206bbc16f545ef7dd63b74423c30d12d982b558c9dd43407f60118e3dc77878f50266c0d8eed3f8f064b30b2f3e4962bb95033de9d9 SHA512 88e056160517edc688662baeb480b15605f549dc700151452b0b7512f31861e73f3563b999e389e8ae6e43186b6017502677b82b18aa65cf8aa6d14e585488f7 -DIST smart-buffer-4.2.0.tgz 21539 BLAKE2B fb6d7db81aa68a6e4d7d651f7fc936132f7be8859981b7142938a16e69c7e4563f9994e59569c3002f5553f88ffe4a4dd12364227d0b1e4935bdd9df9530ba30 SHA512 f7884ad0787cacfa90976c577371ec681a0e5ca576d0c4e83e4717bf06c84962c4b3eeb8b01ab9905827da42431dbd4faf2f72acfd1dc6b088f5145c8bb4572a -DIST smol-toml-1.6.0.tgz 19675 BLAKE2B 9f9c84f351497e60ad1267dddcb111b8643f622e26d2662bdfb44f8299c58b7149664b59aa1e6845cd0cbf0cfec0ef378f6bb2cc81c9f6e18927ec3f2c66e5b5 SHA512 e337a6662d07bd39d8c0b7eba64fc217d2ce77d2edf3b900b79d069ea84ca7217d537a680c03f6fa2ba4ab66d9b0efee7de81b61e84192a20d6ec5b18f897873 -DIST socks-2.8.7.tgz 29891 BLAKE2B b6323f9840c131220d2214f80d8e2c8656ae9e578b18397db6989aa75353111b1c08aafdeaea4808d4bfdb4ce136342c9036cc89922a1a85d2ba649c0a17c197 SHA512 1cba6dfae2f2fe9c41f9bba6ffd0f302088a4bc097d44bdb5b1238ce59a01821312262dd89a776882c174f967873d73712af2b3f6df5f263d6d9cf906ed8caf0 -DIST socks-proxy-agent-8.0.5.tgz 6814 BLAKE2B a3a808aaac782f4462edb96e850997e92d7ef916e528d898d3289224896f14798c092bdde2891c22e30bbacd17e814f358898d39695f4f8de1b4349d1b5cd453 SHA512 1de84212ca2d16a6cf5bdb09f1655807a51b98832fee4514391205d8d9dcab8550bc17cd04b89b5bd619479765602494870703eb6f29465966ee7f84f984f327 -DIST source-map-0.6.1.tgz 199644 BLAKE2B cd44c893274129a1e6a2af1dd7e60bbc58a386d95318cc933d948a9b8c4eb2f008128565f7294295c035a1eac3b94017d9511ffac32aa62fcd6b4e26afcce6c0 SHA512 52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee -DIST source-map-support-0.5.21.tgz 26650 BLAKE2B e22a3f602e0a5e06c726b568ac83548622d637b732921749caeb4039b63744930f44bbe2e4967029edc96bfbfc6eca065c5e2f25c434ece6c192d3eef2255570 SHA512 b811d4dcbddccec232617297f3c7ddac6a2fc5d482a13183459e92617b524712d95331e0e4fffae87b7aba85251eef4466877e8a75e12a8dea420c17513ff2d7 -DIST spdx-correct-3.2.0.tgz 7240 BLAKE2B 0ae95a52ff01ee80abf88071a222737d8916738fdecc45da10d2e5afa24c2cbeaba018a92e2ab376152aec65709e65a72011c3090512a327b8ba79f74129b2f3 SHA512 90df5d25bbe7c921d42c896e0c7cb7d961d152edce83b07db1b63bb6c14b72d42422a9cc877844ad881d3234d8baa99c5d7fa52b94f596752ddc6ef336cc2664 -DIST spdx-exceptions-2.5.0.tgz 1621 BLAKE2B fd488925d11c37edd06898504dfad9f715a4a10d4a0ceba140c2a63af9c73a33bce667f655e01446408c69d826d54723b2c3482908fdcb42769c647ba7e7eda5 SHA512 3e2538dabfb13b851b512d5bba8dcb3c992394eef8df45e7e5254085da73cec3c7b236d855f9679c57404e069b9cbb9d7be0aabb6e69e8dfa0da5c3f3c5b1ae3 -DIST spdx-expression-parse-3.0.1.tgz 4427 BLAKE2B fcdbc90a20791f1d48b0b1c0d001b283c0352d3eac766858ecd57e9942cf97c9e56178f0030c1c2ada43fbd6e5cc208f7d659a0f70aaf604e01791f69608879b SHA512 71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1 -DIST spdx-license-ids-3.0.22.tgz 4728 BLAKE2B 2436e9c4968400d48d1467eda6d3f41ad57f36681fee8176dcdd6c909f47f0a06220d175db4a1c3fc0a8e3d374a51b9b2934b6f97d174f2ddf251aeeb74afcb8 SHA512 e0f453e2787510898f6edda301238a1d7ecf07b23e7b821634bbe42850f13612657e36d8965798421dbce59ff798f4c74802bf02f74c9b0e4134db981fc4a181 -DIST sprintf-js-1.1.3.tgz 10968 BLAKE2B 5ee47a0b4b0f1178fca747e1dfc82207ce52d381ccd531f4e77d0bb3bf8c07ba70a1d08742e51917ed030abda153de2e2de38bdf4d985671a8ceb4cad701eb31 SHA512 3a8fb4444155e7dfebcf781f24d2908819707c7692112975a5c1b200142c9e721f58e16de89363e600a883653a30b67ffc81980fe9c0f2723e9934a144445e68 -DIST ssri-12.0.0.tgz 11552 BLAKE2B df9548f86a86fc202e549f251a60d2d2ddca204fa762fba6482efb5394b5f518afd6a26d1111910667395790ec93103955b837fd3065ca9ec7c6f13f58b3ea94 SHA512 4bb886368b1ea71f5169d5fcda88a6524bebd02b7b22325b11bb38989713c6cb7cba6f79277b03614d510443af76eea82f559e9363832398b8300c3e759e9c01 -DIST ssri-13.0.0.tgz 11552 BLAKE2B 85e3983c5671d9662e4063e5ba1afce581b033bbfc3dde5ed2edc0849c88710981d7c27fd2ea6e1d1e34364ea253fd5a8b80abc00f3d1ebb9e24212260ae25d6 SHA512 ca2cf0181a5b0a7e18a26076973859aab1cb268a851978a135b89bde8ce1a85fdc229e6e7bec5298e42b8cd6ac104eb6845c6c09c83f57fcf6dede27f233049e -DIST stat-mode-1.0.0.tgz 6189 BLAKE2B 51299191a97abf802206aaea737bb9e497ac5a86c0364ff675430d434a63ec83e8c817435c8cd2c1bdb941e3fabda78d1d99a142d36a2807cfbe53c1c10498e9 SHA512 8c7f4486d2888ee5d9d9c5b19974bc64ff345f20b789ab10c4c0d5f23ce1349a5f0dbed56d02d55b85afb31cfd419bf357e1b862849f05454a0cecb12f38bfb2 -DIST stop-iteration-iterator-1.1.0.tgz 4949 BLAKE2B 476e754a5a0bf3bb26e48e3225a2e3de9dd3a132c49bcceac8cbe15ec65e212bf9f8265eb83fb4384bffcde556b285c068ed8b64f9eb9b531dd7ca0681191ffe SHA512 78ba175bf0c7ca5eb6cf1638482688827461b8cafaae2e23b84600452f04eac084ab32a93a2139db551ca1f771f8a9c3665e719af19869a2829391443b1242a1 -DIST string-argv-0.3.2.tgz 2956 BLAKE2B eedc3f55aaf1040c152c5e9647736b560d93dd672c012a8b1f2a9ab1ffdb55c3dea4fa9af22536249526086f51eb6388184d0295c61cc149f5f264e084645692 SHA512 6aa0f6434d78e19fbf46a1b9d8d78712465ab930145893bc73ac937ed18928edd38dae6d52021f98897a904c6f86dc520cfedf5c1e83bf391f32909dfc5dc6f9 -DIST string-width-4.2.3.tgz 2383 BLAKE2B 97d93a484dd17cf2f088e0bec61a1a8e9415964b0dd16de9c5dccef3b614213862cb1d0432c1b6a8bd7514b977b7d292ad0447cf648e971cd195385ee2938a12 SHA512 c0ac90450a63274b08a7ad84ad265d1ac8cc256b1aa79a1136284786ee86ec954effd8c807a5327af2feb57b8eaab9e0f23fdcc4a4d6c96530bd24eb8a2673fe -DIST string-width-5.1.2.tgz 2557 BLAKE2B bbcd1084ce0d3aa3782bcd7e3439d24f5e5dca64b3d36c77d9188bfc9cf1a81c336dd204cd6569c56a40399970a03f3bc3e7d5a564bd3198f666c2ad1dd9b500 SHA512 1e72ce091def8dc63c6dea0d2ed723679fe7c67d9a7e6304ea586b0eb79ba24a8c6a9f976de5bc9fd4d7a4f0cea9d18ae6a708de84f418a4d6eb00bb10c895a8 -DIST string-width-7.2.0.tgz 2989 BLAKE2B dd8860a4f3f5c73731e78a1328e0404e910568f00774af483611cdd3b57e21c858e84edf726cfb4ad5cb92e0a0ec126b55e1a7ddb56120a76a310fae7246337b SHA512 b6c693224296f5be0df80123f92540f96849cd5effccc85c4aeefc98b2964a4edc5cc3921ec04a15652cd1f5b0abc4322b73202414115fa19b8b89186ddbc691 -DIST string-width-8.1.0.tgz 3223 BLAKE2B a90f4846fa50bb42112d028720c268fba948ec51e7a4b267477152c6cccfa877f6ffc16659ac9fffe6171a4764db336882589ba772df978abfa6f01d22e32563 SHA512 2b197728919bfe0c6469430e8d1b10f08ad78865bbe4ee04dd13e314820d3951fc00c976490ff259d4f35b017715ebc85fd2dc3008c95be191c009406d349776 -DIST string.prototype.trim-1.2.10.tgz 11013 BLAKE2B 242c83ac58c374c9dee24e20506d3696afdb4500dddd1de90c5be85b487d5a8fe4dcb85f26014e5c9a9721a0aa849291b631da21dfc2bae0ff0867c0529a9ee2 SHA512 46ceba1743ffd6479d9399726321fdb81cee888fe43519b024047daae2ba54eb48a59d86fa131977e1d06dbbf6e4c80203a8047dfa0c658c654e877859c76b28 -DIST string.prototype.trimend-1.0.9.tgz 8088 BLAKE2B 23e3c02cc1e1f7c73fd766183ebc0911d0c613461aecd9ec521c06ab97a21adfea5da415b03d500e1d6786cac99760856051a95e5a9ba5c1361510900e0deca3 SHA512 1bb3a4e42e84fe3e1219fc8b0a5a174eb9e0408414dcf5ad5c6b2ddf233b05e6bd1515117f54b8d991e5659b6c36ab9ed853763e85217d95d82cd5b012be1d2d -DIST string.prototype.trimstart-1.0.8.tgz 7820 BLAKE2B fcdd590111ff96e10d2df4dfaef09dacc48845a412994d6fbd1d3ac643315dfadb7fddca025e399959d36ccfc75c882c378adbba275d905de698898a76b5ad31 SHA512 517487dbad82499635b5fbb71b749e72beae18b08554f32122a1e3960094b4209c82285873fc4ab3d76331331439bda3d66552794f0453a35673f890294e867e -DIST string_decoder-1.1.1.tgz 4831 BLAKE2B 758f860c2eb59cc9b5b862c65813fd7eae817dc278fe3dabc1d2d19a202605a85fbefea113d1323dc421908c7102131af0ca222853d227bfae93c03eece05a84 SHA512 9ff4a19ef0e2e851db6d57ef8aba3e5a88e2173bfeb3c30f30705ccd578f7d4a4324bc282d3d21b759786300426e2f29240bde104767907c8fc933ff9b345fc2 -DIST string_decoder-1.3.0.tgz 4622 BLAKE2B d8b7e544eec0099b7a420f8e96968708649728224e97ebec8edffcad4a1c8cdfda5ba4a1a9a92d24cd2d16f436743883fe0b43d99d3b40389e5c3e29283ced44 SHA512 864457f14d568c915df0bb03276c90ff0596c5aa2912c0015355df90cf00fa3d3ef392401a9a6dd7a72bd56860e8a21b6f8a2453a32a97a04e8febaea7fc0a78 -DIST strip-ansi-6.0.1.tgz 2041 BLAKE2B c5eb8b50d005ea59fda908a7aef3eb8b27234d19deaf022ff48c652204ac2045d279baa76f3e633b80187bc939520b2c0b3b30f7010525c1f86172b53902204d SHA512 637f153d21dcaa416b0a916743dbee4979aabaebf9a1738aa46793e9a1abaf7a3719cf409556ba2417d448e0a76f1186645fbfd28a08ecaacfb944b3b54754e4 -DIST strip-ansi-7.1.2.tgz 2101 BLAKE2B ef42521cf05feec735e596a726dd916964e451d3c1086f3577b5e4026eabd4569d1956489abf732328e2086b8346d611a1445d4207ba821fce1192d4a29d36ac SHA512 826046b25a68409b609cc02f395a86669133f5dca82930b3cb69dfcff9fc68816137f8c213fac299cc5a6c1ea338e1d5fb458d9f294ec5ac4140f4af71692584 -DIST strip-bom-3.0.0.tgz 1736 BLAKE2B ab46143243158f326dfb187310cc740f852c25148367b779b2c412e48856c6d8c744d7533e4ec8935bbe151574f90446e4df9cef15584d4f3ce62653e8871281 SHA512 bdabc03115ce80154d17a9f210498bdc304ad7d891a437282305beb3043e09b1a2bbb963bbab7e264940d4c1f07a85ad69d82de0849552c5cbc83ab7e1d75cc0 -DIST strip-indent-3.0.0.tgz 1719 BLAKE2B ef7b5b9cc9003557e714c0d7c5cbf027b04797b478b905f9238d75f86637045d33292f17112f417e8467e29d12df08848234bdb6c197b5de9144b550f6873f49 SHA512 95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45 -DIST strip-json-comments-3.1.1.tgz 2847 BLAKE2B 94baaaa178902ba8b2b0161e86091e27deb01b139448bcddaca601ebb1e4a0be73a4664ae4206ff2519de9bb8e3c2b80ef1bce47a37f963291bbf53263dfa9b2 SHA512 e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a -DIST strip-json-comments-5.0.3.tgz 3004 BLAKE2B 3474eddf59cb9c4b6cdf5914e5849d7f49e77676c023052342c8a21974a9f736018d5c08ac91560869641942cc16da8dcd74bdfaf02a297b12145062a3eaa611 SHA512 d6d0799a1568ed4f844c128d7fddb14f886b41ade99b4319d0f42fb839d68000061c3b1fa7894f4a9892ea9b2b4a27adf3bc3218f87d7edeb09a138c4348438b -DIST stubborn-fs-2.0.0.tgz 3550 BLAKE2B 8f525c39e48443d65ecdbdf9a9973a83c334244d7fdf9530bbc7a30aed4def11856dc936b433538373a79a10cff52bbc120d01a33e46d8ad234063f72a461a0d SHA512 63402f4b00f0f32fa79523455cc9b683a2f9d6b046740413db42776123aac42e772e8ddb8d646daf604a71f62801fdf9d96629b19493511ac0d2daa17e0b9d3c -DIST stubborn-utils-1.0.2.tgz 3337 BLAKE2B 2a07f5d79e67ed4a65ca498cc5c907c510c6895305da37d5fb4fcb5b3fff4cd831ed3d42b658a673a7ecf32037b3c7e118b5711f879898a3719ec48352ded311 SHA512 cce87d8cf608fb1acd3b28ac49e960ca6e2da2529324241de460612b4fb4c49bdc60373094ea3117fae714a4362916649d7486f63580a7ae9fc0fe80c4df524e -DIST sumchecker-3.0.1.tgz 87152 BLAKE2B 9d1c1f781020f80e9317af113134a570c429ab158be2724dadce1513989c11c6b58bcc4ae48102f9eea73c9e6859af21ea1fa1657246eed88f6be65a6c636092 SHA512 32f8d7ce4cff04e7f2543906d2814eb41c475f6bb780a6cc1c817f7576e566c803dc158e14b987a2f229658ec1ca425d02372a442062d5660135d102f7223bbe -DIST supports-color-7.2.0.tgz 3210 BLAKE2B 9a670249661259f3772e01bd1eb9e698b25ebacffbb1f390f3257445b59d93890200e7043999521bbc78b0c7c49f5b53fa41c18c6664ac198e6e6de2650e0077 SHA512 aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047 -DIST supports-preserve-symlinks-flag-1.0.0.tgz 3810 BLAKE2B 2ce1b3b853621b46e7cbd3ce6c68c7ad2aa06051d9032191967cdcf1839303900a9b4b6fec7432458350a7a1a1db4713a4001c18fe3d523c58e92346c2f7a27c SHA512 a2dd169d74bd7e076480871e3dee911cd935580f3e9ae3dae9c4a3791dd5f0adbbabd041d6b4c4dd1d69ec7bf4cf567201cf2ce95beff0323259febcd4c02dd3 -DIST tagged-tag-1.0.0.tgz 1452 BLAKE2B 43cd42a3da63e2acdec011c294e250d8c3c56fb9865f10aea9ed2bc276fa9c133a7a5a47c36a5cb3abc85063017d0251c548a68d3315a667eb9a37de1edef8e1 SHA512 c84158ad586877e85d372c7b8390679246f41bab22f0726eacea0e1200bc07f3b4b972c795a7b2ffae4a46fe9cb9604d84180728044e56973b43262a1398059e -DIST tapable-2.3.0.tgz 11386 BLAKE2B 73b8e2a5628b451d39d1358040d09f0a885f6a7c76a15d6fa143afc9af9395c52d2fb3e4d76592a5a32bd98841cdfa4eefd89fe00824cf155194a4d877796f18 SHA512 83d963662c248bf2dfc664000ceddd118d426e99974f91e6d9f27e41a18ac125d4ca53326de3d1effebb616ee33abaef8c480bd459b3e64cf202359558b96e72 -DIST tar-6.2.1.tgz 42735 BLAKE2B b8c823b785d2437fa6878e13f0070e989f6a48c0f602b6e26792598af5821caff6e6e30064116b38eac42fb17b010206a6dc3050fdb362c3be2cebefca0c799a SHA512 0d9e323914f0adb4e3ffb31962adb0fbf645748e8e67f7fd4851d1fbbd6021551984e40f1f35422e9bd19cf83268ca5f5b1c64ff838dbdadc6412c8d20a46fe8 -DIST tar-7.5.3.tgz 192636 BLAKE2B fc292c55fc38890610405e0f41ec9834478ddc8237004b27387967f8fa89b9e3a57aa4904316717861428f63f8132a2ccc202fdb80f20fdf83d913ef550fc65d SHA512 10d8392541d49b6ac30fb22f28d146cf21252d736369c84d2e9e916867f8f893a0c571e4a80fa0abcd5900c0949ad32da81b2853ada5729e92dbb8352c260619 -DIST tar-7.5.7.tgz 199242 BLAKE2B d7855e2f93a40a7aa4e4729e88dbc332319493ae5b757a8a3e9b9e00ed5563ccec190873e5f35fa56821f244c293d4ed0e77f54bef0b4fbcade6fecca5905d76 SHA512 7e8bf9e9f26246e4e15455c3ea8ebf437e784bba6758c2485650c16228ec4cdc7a8ca484e29beb0d3b3a9549e61af3727c9c05410c16cb7a302b3d6e70886f79 -DIST temp-0.9.4.tgz 5744 BLAKE2B 7672fec119adfd72bcd09374b3d704ffbabd8ae134dea6c8f986b7395c9064ed8d65c3918e9e48ce857fa269ba262c9c5f49574615bebf08e31f2b834aaf8832 SHA512 c98aebb169eb5cc71db27bbfed83180287ccd64b692f9072eef6617f5e42ad78a3596ac461992ce405c1b9d6a57d25892e59de9ff4142540796a807492a65418 -DIST temp-file-3.4.0.tgz 4581 BLAKE2B 35da8468deb497a23541c488647d93697b67e94d294916ebffa53f980c3aaa9ec4887a7a9a5691065272219d123a23bd1f9189a2dfa9952420f8133a484ffe78 SHA512 0b9b63942fc70ad5543a2dca595a24778bc755588e9868ed2f0221e0cbb33e8fe73184d5fe9d6eaeddd19cccf62165c374a106247de4e7e28fc6da91b14606b6 -DIST text-table-0.2.0.tgz 3897 BLAKE2B 700a5a786c055283203c29777a9e0fd3e256c153d80a888c99247ecd1c660edccbf4ac97565e98cc66b3707db2f996be3e0af2e9c41b40e3aeb2ac3a4fc71555 SHA512 37ef148ac0170c693c3c55cfe07033551f676df995277cd82c05a24c8a2a0b9bf98ac8a786bfabe6e68ef3eeebdc131fb8d22e7c8b00ed176956069c0b6712a7 -DIST tiny-async-pool-1.3.0.tgz 2677 BLAKE2B fb2b50fa895db07f36a579b1f1d62ebec3ae63841ee6ce4c2e6ec69817e4297a34a6e1a50e83233176aaf8248a9e1c52a433fcfa2ba7447441f5966350d87253 SHA512 d35100c39103adc56b760c822e0a123efab39c2d2c5710d255e88ecf4f455298e1ef51bbf550aa9de3abfb1beded3d6befa085e9965f3e31e8acddbe77ede6a8 -DIST tinyglobby-0.2.15.tgz 7740 BLAKE2B 5ff2c7ab11efec435aab19dc1d1dbedd83fd2962fa9753ac7751706af711cdb0d5e9d217d0ccb209e9af931e6412cec4ffce85a384a9c95d95093ab3db3a5d84 SHA512 8f666ae0dc90606e573124f871bb34d8093c88951dc513345c8e50cb15ee64ecca3883665aeae9dec997bb7cb9c03709ae9b70a528e05c7cc8431474a265e58d -DIST tmp-0.2.5.tgz 10990 BLAKE2B 6606188064b5a13050eb497bed6388397d38db68f3b5e7208ca819f0f0d6d84c2ed21fed3179814c11b9ad2235978b0c16122e1c629cc7c00662768b5abbda89 SHA512 be8cb3e8c0296b5ad0194c53dc4f812bbfd139ef22b44c7bbc3f3f1c4bede31c17b9cbd0e46e687848879261d926e04edb546939ff98626f4c3a2be3ef4f63a3 -DIST tmp-promise-3.0.3.tgz 5179 BLAKE2B b03e242f78e9c55a77f1814a60335cf566622a2a4fdfb311c25aec02929b0798c41073cd208013a4473fab3055720825ee0ad73f2ae23ea3b1fbf512cd3f5c1b SHA512 47033b3283e88cfc6c381627c9dda1cb46f1b48955ae284db3da63e5252f63c673d6c41c406dad1b5852afc3c3c5f80407c44d28386a6c896ba086ab48d0cdb1 -DIST to-regex-range-5.0.1.tgz 7479 BLAKE2B 999ae921a17bdca8f6615022f230c18a94df14c59d8496524dfee4f6ed048087e9b44c2af9eec973545ba363faf293b2c494f09788903976b071695133412537 SHA512 eb93fb8b3e97e7212bd5cc1c82f4316db230ed493780ecb974876d678ac3bde2ea86b7493fe2e2fc7c7ab722b43446fed860b29de08c2621aaac00c248d93cb1 -DIST truncate-utf8-bytes-1.0.2.tgz 2234 BLAKE2B 768dce87e550232d1d306a0106a84997db6fc98a429cc3dc0da8de7b167e9b4e5ee85fc6ddec9c6f8fbbdcf5caf6a243525fe2e926ffb6d3552c086307eb21ed SHA512 f793eed505d0bebb86121bfad9708c3b7326f741ac70e08296fac853008cd0f60e5cade4685de5dec207c71ef54e125f71b3363b902ee923b701609211f5b899 -DIST ts-api-utils-2.4.0.tgz 51170 BLAKE2B 64539cbc75175b6356b234a0691f968c7b54782c18cb3868aae22367101ee533ba1c38087dbc0b1c5d3c14210099ee03e85c34f7ccaefa17c8199228feb8e1ea SHA512 dd36954da02fda04e2301df98b71621896917f06f73f29ff8f79bf6df02f19ef0507b085eaef8b318a9894387bade41fed436fa13bdd7c0a871a63c6392b0f98 -DIST ts-declaration-location-1.0.7.tgz 6310 BLAKE2B adaecc0972ee68a0ddf36e43058ddda2063ed6490fa2c4d4189d0f1ac6941bc5bd0bd8896f4446d60b954d3ee6eaebc1561411211e41ef85b5af11fa2517013e SHA512 103c860301f580ed00bac9bd815e93da752f0605d3e641a808c24f96539aa2867ee15bc988a05d644ef02b5f0dd5d784a3085c529b52fb919764af14fdfbe9c0 -DIST tsconfig-paths-3.15.0.tgz 44053 BLAKE2B c6448d638bbc4be6ba5ffdf44f1d510d4d6a83b0da78651d02fa98501726c27351563517abfae0f40eace77101fbd6acd332b58ac58127c5b9f3c8bac8a25447 SHA512 d80736460cc37bf727e3c1af39edccfa8f36a4415ec03dd43dbca85071dd29ab07c092a376ce1f2d759ffd4c799004c128ddb4a1a146bbe8db125a75a68b349a -DIST tslib-2.8.1.tgz 18477 BLAKE2B 832f91e2339ec80648ab8db58af086a04c999b92aa4b79a3448c5dc5062332fb6fc9096291d7fb79a1c9c1f08d7e97693117049e34b8182d4eb2ada41a17aae4 SHA512 a0916ef781d06fe29576e49440bef09e99aa9df98bb0e03f9c087a6fa107d30084a0ad3f98f79753a737c0a0d5f373243ae1cf447b525ca294f7d2016b34bfdb -DIST tsx-4.21.0.tgz 154267 BLAKE2B 74f055fa3b7d1fb2f28f1278b37610e0f63c9fd8b4fd5c22b504231dea983ab8025869556bd63213881557ab846df64056fad4046d81e2ebff79c11b6d8331e3 SHA512 e42d6c838512b3595f1b41856f644b5ec7695ea05212101a03fd243cbd35c31ce932a2c82cdc48c4838a8882f3f9c760fe92e7394c4560e479ca11d4ebaeb06f -DIST tuf-js-4.0.0.tgz 10465 BLAKE2B 175b0c6f8d14722edf3d3a74d0b20afb348ac636cbfc416d2472e6b5856a9ebc43767e178d48ba2223727b2f6582056a586f05ee9d2f301f3d1490a22aa8a851 SHA512 2eaee279e1af5c35f0a684a639280b59576c18657d2786bbee80d300f7bf2edaea9e79bf1136919410104c7e496ad121f0a5ee13ab1d75ff6a02fd50db6f361e -DIST type-check-0.4.0.tgz 6779 BLAKE2B 62d61ff21d8f2e4d528b417206e36e076586b59b25b0976677da8a76651a1f962f9ee9e38215cf4ce10d74653613c3129c1f633ca7ca8ac08d1029c742445400 SHA512 5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b -DIST type-fest-0.13.1.tgz 30612 BLAKE2B 53c90bd6f3a47085d48c578b890a8267e2ccd6ca3c90b9fcc4fa00309820fcdea9b505e291a1d5b304edca65b67e03b92191c1c0cafd98f15d865300a583fbe8 SHA512 df847b1d39c6d172097014a7e5784377b9cd14f45c5d8459ac10763b68dd2aa60e0e5752cc102acec5a865862f76e932ef7b68612fc44aac4fbe40dffc5d1732 -DIST type-fest-0.20.2.tgz 37225 BLAKE2B 85224465405cf12adaa1c8f786eb3f629dca5d00e77cc25041bd7f33a7ed7fdbc9b45d7c355319c6d02544dc09eebc79022f9842d1ee81722ab5837336ba95c6 SHA512 35ef9e138af4fe25a7a40c43f39db3dc0f8dd01b7944dfff36327045dd95147126af2c317f9bec66587847a962c65e81fb0cfff1dfa669348090dd452242372d -DIST type-fest-0.6.0.tgz 9565 BLAKE2B e4f9210e0b8da6428d0f2b6143d477a8ee751e7dea050f500a81bb160dca73b66eb31bdcd3d4373ba06926ff0e89d1ae57d1c467458ad2dcd184933cd3b57ec3 SHA512 abe301f27611d4a0cbae0af81b9c9e99fb69302eff40ba959dd06610476ace6363e5d70538ee0ea3caa5c1913750b4f7f998a6d45f0aab87019e290d86508c96 -DIST type-fest-0.8.1.tgz 21970 BLAKE2B 0c93e7cfd2c37f8e361912e9f0dbcc44f1ac2c5b5940004946914c5f38bb0b06f53df5ffa2ba7aa91f9e81ae6daf1cda22b5a52d01d50957177466c2ab076f13 SHA512 e1d6f3233aaf8ed822339af0d64e6b107b4100d2a676e7611b20446a3374d5f13285a00886ca0a372eb2efe20df7721fa45b7063d8aa8bb903fb1c0a850b0d24 -DIST type-fest-5.1.0.tgz 133145 BLAKE2B ea01f861c10feb15e7d4af970ec8c95be248690b2d325f7570b0d32cc999bad954efea6863efe562bf50638d68e3bab111451161bd123da9009e463ef5776ad0 SHA512 c10e77d6db96bc1ea82bea5c84722ee651dee5fe70a520aa07c29fe1d59045b39873d1d381eec92f41b841de386e1e90b8909c708ccbddbba06fc188d0cc07ae -DIST typed-array-buffer-1.0.3.tgz 5117 BLAKE2B b0108e56d7d7143cf9c4e60480253fb57901cff02e9b0d95bbb15f21ba018c776afee376abf5f0b65f562479526d22d00f199451fb714e91b93f4b23563bcd98 SHA512 9c0618c1f637aa7cd7df422403a01066355bb4ae9db86a27b5c426d56486d4c0fde182ea2b4e75e46340a57928c4a39632eb15b2c00758b87d49e6a879f6051b -DIST typed-array-byte-length-1.0.3.tgz 6319 BLAKE2B baab266cbcb3f646f7caa470788e9e66a502d9751e7f7af81979bec568b79011c3f288290506e9d3cd6f9dc29b8752d382d443db078469052a1c0b9d1cdaa0b8 SHA512 05a5e03ae231cfc9fca48ab77bb02d83feecf83a6262bc67e2f768b77c3d29b9c185c450abaa37c5e9907487f29ea49e5de0eb177db1f96bdfce63a33e263d96 -DIST typed-array-byte-offset-1.0.4.tgz 6633 BLAKE2B f24b57d02e0368b4879ed88cc9b67d759240bbbd97b8a39a6f5a17652f2caf8b92c7279ca0a2e770398a673b540198b6c7e891b88405730194770cedd635a434 SHA512 6d3940141fc505831cb97f3581b2f839ca47e4f9a5147aa5082a4097c025133333e64e77a0d0ef37ca753cd3962c4988db1e28ae9deb68e141e75b6ff57f8c15 -DIST typed-array-length-1.0.7.tgz 8167 BLAKE2B 05973af8e12f5b81e1d1ddf629dda12b60018be51ed408f1c3657896959281f515923b29cec74a8e056a85b86fbd3b060f49f632163f2bd122ced661d32ca720 SHA512 dca4b66fe90bedfb2e93f78967b1107671264286a1a3fafa29479fee1c6f96d340e4347c34050cfbcc0931b2726781bdffb8b7bf9ccf04830de5ac9b021dbf26 -DIST typescript-5.5.4.tgz 4043150 BLAKE2B 6171a4bafcb7d9dff4cd603846980bcfa599c4ee13d585760af572dc410a584f729485bc2aaf5cb5e3721d37b7cf8d4f54eaf9abda86eba04bf54b50ac80db9c SHA512 32dab6f6c28300460feda963460b4f3a94ef39f6f0456952e9d3d1cf08dd13e0b44786eb5ff194ca11d279c6c73052cd04b70920fb7d9e5f721b94d9d70787f9 -DIST typescript-5.9.3.tgz 4377468 BLAKE2B 851466b0e045c7ccd7b53c65c5c0bcb35a9ad89c4cf7afaa0acebcd41ff6580f9b2a8902b1f82ba9b46d833ea90d3e4cf529efebf3a2b139f276ee601023d758 SHA512 8e5d6f6733c38a72ebf5e52ddc9feded5e8580d130f508ef04f772b33f4a7d00c3e357d0ac2d98e2f290762694a454f86d795bd511e12e9a7cc2d9ba3394e04b -DIST uint8array-extras-1.5.0.tgz 6397 BLAKE2B 1a1971013a3026a17180892b25e68ea162462b6633887e47557d7b8d187480431fa1f2e755db8f733f1df553a1d5bede8317beb76fdc6697e9193334a89d25cc SHA512 aef2920620b9cea08288367d9003accd9703bdd007c3020a246df76248f8dce29c5ac9e670144bd3d6135389ce78767c6366bb9753204ddd3c4817bd03c423e8 -DIST unbox-primitive-1.1.0.tgz 7004 BLAKE2B 5abd09b6943e05b225ab0dc0c4b850a02911d224a7ab1bd79f00b5fd43b7d988cceeab2e6141313a4eed38e37e57f2460d0c662b2677371a25fd1f5560b0379e SHA512 9d627dd438de3a47a3fd303ca574379b2aee2a9284620aafa70f65cf838f1e3fcd585365b98ae36f3f63d35089f322907768388c5a0e9083424d6d88e4b104cb -DIST undici-types-5.26.5.tgz 17979 BLAKE2B 59dc1eb6fa8049d6b20966b544ee2fb85eb91430bf2afcfaca379d560b32c9a8cb43186118f6c4973b76edf69df9d98aad3b23051ccbeda03856b1c88eb41b33 SHA512 26508c3be7a174420aaa517193a21f568014566833edc53bcc3fe1f57674ab37a8b121e650954ecd242fbd84985979055c2f887cb29221f7e1bf4b1566ea7aa4 -DIST unicode-canonical-property-names-ecmascript-2.0.1.tgz 2282 BLAKE2B 8295e39b70e2c0ffb709459cfb0b9173c45b3ef6f8e71d96731011a9909663fa0ab7205af735c9ceea173e85d2d80f16a320618d3799f376290cb7247828202e SHA512 740f166cd79bd9aea8433010e796254f9bd0016195f565ceb22dd2b241376dc09d3343f848377edb8cd2fce09a71d46ae4191db118fdab73e0e98c90a31206aa -DIST unicode-match-property-ecmascript-2.0.0.tgz 2267 BLAKE2B 8b9f1ca87f1c861eda475049396fc8072c50c4424ae1517b72f3def8123a3fdad1e2f6c7b20910208327ddef096941e17e49505993c37e874399cc1f205bd142 SHA512 e646990ab6e9e6699bcf9ba50640e46d8d12b0f3a32aa552df95692fdba530f7d29742745ec9bef44be986ff42a08645c2b7bb689a1af78018eac78c28654de5 -DIST unicode-match-property-value-ecmascript-2.2.1.tgz 5597 BLAKE2B a86e8a43bb5275026d80fba28fac57feb46c4130843e637db37814800c03cb2d307bcc3fb46dbbd8772a7586518e18cb9b913b64efc927cda75891199afe16fa SHA512 250f38a93b8c8389d5931f206b8035e9ad5ea48f47eae4d70249eac64185fda15f44bc35c42fc1a76e0734b6998474a459ddfef38b7c8979e9d49d2461c64786 -DIST unicode-property-aliases-ecmascript-2.2.0.tgz 2702 BLAKE2B 14bd8ceab94e457a3ef6d96aa1bef1e9ee5012e339ba380a0cd01fb1a298a149139a1f64bf8bc3b05538781a4c9f8c8f3e2a590d1b915b820255a47f131047c1 SHA512 8696c3cf1518f411705fe51e067c6fdd2875abb1c5c63e3c0d399772136045ae3a94ef2e8f7ff58849f732235461383583d72d22a5c2084467f206198470b995 -DIST unique-filename-4.0.0.tgz 1852 BLAKE2B 2de4576a1ac5682eeed7b423f0635a410a00f3baace4b2346cd276fe39bb6c12ad7d4d15deb1e8746602c3c021429ba5ac2844b798852c1eb9fa971b15c88d13 SHA512 5d29c47b05e643ebde3fbc57d9d4b9438c9902f3b8d1c04dd8c5a427b0ffeac5b80e0eb060137033556b9f3d45847e4075e2c89545d123d7b6f33d58662ef535 -DIST unique-filename-5.0.0.tgz 1856 BLAKE2B 02bc0e89893f6ab1dc5b550ffad38be4e0b475cf7374ec112b4c0611c2c3bc7488d3d030b98e6c6bc872b802ec08e538c13b1e9e2fd48359ae421164cfd0a3df SHA512 d916894c0bc06f8a30ca39654df5f3142949ed6b06c65ca490fbc2afda40fff2c3f60a15abe9b83cf01e06036874667b9d2ae7b53fdab96a49e98e4815771f8e -DIST unique-slug-5.0.0.tgz 1553 BLAKE2B dead3e4978e7ac1f86e5c00a43bb9ac6e7275c7a28c0295f21ec34c3e6fbea5290dbe81180342587e734d1f0ca8d51618ceaa77c38908df67a26e20583e4f596 SHA512 f4e75aa8ee64c2a47ed645601c086ca79bcf354d219f145adbaac114d7cd80ceccea936d8337819f7b3fc5bc8240bddd723cce6ad71e7fa5141e907fe8c6844e -DIST unique-slug-6.0.0.tgz 1555 BLAKE2B 9690306f152cd3a4f03f342700c1697846d3cc3a89426ae249a571e7bbfe2d4646c5dd7d131aecc62fdbc3f5bf9b18485603c05f25d77b90d4993b37e09a63fa SHA512 e0bba9ec4ce7f16ddde76ff106164155dc77db7724c5aec312f77d90f407a694e42e8257c3a96dac10b28f9a67af18f4a8a0f160c279e82a3136e142b1c7538b -DIST universalify-0.1.2.tgz 2039 BLAKE2B c246da4e9d57a00cc7fc6e13c8ca8a8f211d3c59ca5f2c5b9a13234038d9bf485f46f97f9ff13529251102d49077c6b7a478bd91119abad3b2f78eda502f5446 SHA512 ac125e2390970259b2d6957eeb5ed607d27add4e9771acc71c5d9fd9d6c98b1e17ce9505d114b765b8f414620e080bdae4ffddfc604e61a002435c3ed1acd492 -DIST universalify-2.0.1.tgz 2068 BLAKE2B 2c1273456a3e771ac1efa46673e5fb31f05973d01a81c47303ed4c21bebf1c112856f55a90471e66ded77cb59cf53d3237b37676908da1ef545be8e25a7e45d4 SHA512 829b4735082120d9dcfef4c6224d12385185357c3b255ae5454b42a2725196f6b0e83b97d303b925e928f6c5ab301861f8fb18019ee85c088e9dffd42a88328b -DIST untildify-3.0.3.tgz 1577 BLAKE2B b98a2296c054e6bb92c5fe694aed633e5a36bb3dc7cfb9540c00629a335d37111ba1065e54d35cab5629c4272a69ac9d5704e55c1c5313c28712b302ddadff96 SHA512 89293f27c79fafcb8f4ff678792532c27ab2ad053b0d274c7dda8ae2258469455599c3f925c9e946a995330730727988d404c53600b957dd2ed3db41ca734528 -DIST unzip-crx-3-0.2.0.tgz 6095 BLAKE2B b74126950d13c8922557c9e01b475c1f138061b76745b47405bbb457b8195f51971084aed143c318258b63db660ea5152025adcfeec4486bf9c51816838d9f77 SHA512 d3e26252aff3edf689ea889f541e674b0b79f3dbf528276ea8826ea4d543a1649766d5839a30c63b744010ebf0274ef0f746a85e83f87a72ac47b79c32b26d59 -DIST update-browserslist-db-1.1.4.tgz 5204 BLAKE2B ed1a0a2ddec756ec26eecb3acf59837119f1cdce0785673d94c65dc0fda71c54b9765b5f1505c74d311f695066afccc4f1fb6998a331f04beb5a5f8e2c1aa8c3 SHA512 ab448f4f8c7253ce2c6945feb689b3d562e4c546ee6899d1d715add7b33b7c9b4426280979650d194aab6ae157b079ea7aff72f494d11b0935ded141b8a6f2e0 -DIST update-browserslist-db-1.2.3.tgz 5240 BLAKE2B e363bd95760ad2cdf2cb4e49468218edaad2b8e64cf29d5c233a9e03c9b7672789f9a9f2630070a9d1b365390735a27fe428869ba6aab4e6b3b6c19bb7c5e9b1 SHA512 26cd26f5cc7ea8e803c68d1e32214612e796cedcfe778f8cdeb1a598a3d3f93e084bf8cfe32970dcdc29bba7294d33fc4753000b5905e156dd2eddc045fdb4f7 -DIST uri-js-4.4.1.tgz 132003 BLAKE2B da869f54813aef325e3d55559fe17237ff39ba8c981956f66a1b2722b164b0000ed7ef9c670d02359d202857e5abe6da5b27019ced4df53081c8b07b145a173a SHA512 eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06 -DIST utf8-byte-length-1.0.5.tgz 3003 BLAKE2B 389881e234f5b3b8394b28aa89a01d7f33794cd6085c066255e21fe218348f5b186ec15729e78a61def672b66504a1359ed64c2e16f4486b8f661bf6d6d0fcb4 SHA512 5e7d30dccb6243ace8cf6bc5c9456bb9a08be773bf0f052f90478ebe3faeba5326d019141985a6058572125a996922e163a643d2e95f537681adad9a553e317c -DIST util-deprecate-1.0.2.tgz 2246 BLAKE2B 9ce927e7619b8c64676fef6ec645deb149bbb85fad6c8523f834a23e2357e2ee94e4cb7cbc4e324a0023677ba587981faebac9d87c7d01fb8ccb9ca43326cf33 SHA512 10f0f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73 -DIST uuid-13.0.0.tgz 15664 BLAKE2B fbc4deb60348e04eae4cfcc241a329bdbc04bfcfc13d01d95af333e5619744d35d3dbff596cdbb05812fc591702e585a73207465966c8b38fffaf54e03481674 SHA512 5d07a021a0535548d21e588aa9c9c5a98ca901de12f96098b79348791b3ac3f500af2ef3f18f63e59c1144be24ceaf54dec0fabfef397abf45be411a0698e2db -DIST validate-npm-package-license-3.0.4.tgz 5675 BLAKE2B ac41bea55db2c93d7902e55b48edd4ebb5e02b31d38d3b9f1027c174770d9d3ffea3fe408e58dcfd74214c945f0633b51e97a67bd57c9dd15561270268826b3f SHA512 0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13 -DIST validate-npm-package-name-7.0.0.tgz 3224 BLAKE2B b39a0c0cebc6260e9e13fbdb88dd8531384897b29d2168be9831ce3462a97bf23d3c7f20d29841235cba3213373de385fdde54b9fcee7f318a1f75c55d6b070f SHA512 6f0564fce2be42ed74f1a25c300122538c9abc7508eda376d138193418fd311da2535ccf525d59d4eb6befbef51317d84cf4ef7cdf19275a5baf9224960b78c6 -DIST verror-1.10.1.tgz 12165 BLAKE2B cfd68dc5e1eae92f05e6c2fae09b7c6d2859c759d8480ee4eda93c0bdc47c35a13abaed064829e36c9a4308194822eed5bdbd211ecead63d07e4db608035471d SHA512 bdeb9f726c6b8b87b75d2ad3d31c1f511ee482e2246b105ea2c0e0d34c835a1938f7077091252bbefb26ee773be5ed4f532bc87998fa9d2f15411633dbf4b85e -DIST walk-2.3.15.tgz 7771 BLAKE2B 3ca129c876ad66c5748f45d47e21c5c0e739d2c285c1f953c190947edfbfb4d78aad22cdfd5a1c32edb844f35e3a89d752f3b187a9b071721e7d338a95176059 SHA512 e1e45305996305f20848ad559edebd1afaf6c3fc1cdd4e95b6bc3baa23798aa6093c7ecb12571887f894e175a1742cb6759aafd53a0cc989726c3ca57c6ff956 -DIST walk-up-path-4.0.0.tgz 2495 BLAKE2B a05b30be7ffda0ae3533d603581f7e173bb066d02d305ce91b0bb9c1d2bc3680730bc4a0f34ffbe055d13a2c84b99b4abb011d3e5b9ec9b4cb5a33163960e3da SHA512 de1bbeb43f18cd22c6b8562d3d16f8f2f76128c8b4290579b27fae5abf3eedd304abfd86fddb4badd0e29e42e3aaae5321b2018d8278031fe7dd889a5bb40cf0 -DIST wcwidth-1.0.1.tgz 5814 BLAKE2B b48240428c084a8895591e8ae76234ea7594e20e40cf5a3f381871e1c933b9077d7f9afef13ae05fb2950c03dc537b27b9b959691fc8d59a9ac130169dc1b17d SHA512 5c73c4c12d2ae936b172f1bce7ef046246e20aec765ed586da691ce3b360d80efb050bbdf83a8838995d493e0780f92e79aeddbca4a3e55817dcfd5de2b5bc4e -DIST when-exit-2.1.5.tgz 2811 BLAKE2B 0c4fed584a3bfb76d13e70f07205b3b4deab531bd59c1d6c55e24c6621d7c48d1bea6d54ef447ccea4e68cb553b1b91dfda0c3d15f327d6b78f8cd8224fb3ee6 SHA512 54690a279eb8933b7a32cd5d6e03cfff2b88a100abb0502745ba6da42e70384b0368db1b081d9b9df9da03c8bfbd1b39b6351210eb48baf97dfccc95b2f4190a -DIST which-2.0.2.tgz 4496 BLAKE2B d3a7efcfb97c5f7a5cd50907eb9535fef5e6c2c69f6810c230ad1b26fc8f2ad5d6921136fce9274805a060b67a7a29c0248bd0eb5b9412da1991c2e09610fcbe SHA512 04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c -DIST which-5.0.0.tgz 3346 BLAKE2B 0cf8a23f884ebfb9c3c8fe1a14357856a87f539645ad231b2cd3dc34fe8dcc18ea06c565a14fe627670a42e0b1395cae06a26a11633bd5e326379cc430d6ebd1 SHA512 244746cc7c3092b6d6a063a5207a90e60b69aca18e7a7a431e9c44f73551d5b59b3ad611c8f3c731ef4568feb1eb50a635a4d385291bd03009b5ee630fe0e6cd -DIST which-6.0.0.tgz 3347 BLAKE2B d9677d2fdfe3ae0b1ea8c0430fd44bc5be00e16587a18869d24f80b4eee15bd559ac91e792cdd86cdab27f5a3f5a021999d4da97a92be6032eafa2ee86fa3761 SHA512 7fe804a4828c47d7da5bf2600203cad43ee67a4905a2a6e68b0bcdcee86c1deb678b6d104a0ce0f55867d20d894899247de8509ea754031eff7b5e6a4b594fc6 -DIST which-boxed-primitive-1.1.1.tgz 6732 BLAKE2B f101e4df8813f47ba55aff4a1f49715dc52295710fb6ed6979b974e142dc6b6eb6aecbf02edea540e5b59c416b59b3eff194c4a3f804a4a5de4eda1e1a8e5ba3 SHA512 4db5f79a3f27d2874204556563c03192a707012c372fad2322e17c8c53fbf1acf70b6621986bea6c70690234d11f6ff1a98ba7ac9f60d634b28c28e9a16cc800 -DIST which-builtin-type-1.2.1.tgz 9377 BLAKE2B f2f0779bfbafef5d937dc47e3d8670ada5addb785f3463a41b9b7d5b76553e13eb6227acd9e53504318b765cb7b8eef212177fa1bfb046cd47f6749347939b25 SHA512 ea205cce85fe90343b6b7f982419e1dd3f8a651c4cfe260d3d789caa4ebafd07e6d5bf778aefb23889a4834cc76e3e4b34e70dbf54c4003899d316b7e01e2ae9 -DIST which-collection-1.0.2.tgz 7277 BLAKE2B befe842301986b733a7829df09ad7d6718ec015f5b585b7c40c9fb69292f493ff80f200ccd910d1b4648363049b425cd897becee90525278d414dfbecc54adef SHA512 2b88d5ca39c1760bdcf3a63a06468b64437ddf74b060eb8116476606ef597e47006dd55ba484e70e68ef67f6908d15d0aefe443e44e70f5b37f468a2a9b9e00b -DIST which-typed-array-1.1.19.tgz 12962 BLAKE2B ba9d7215e7d7f3a985877d41f6c2c58964d6915e0c0998a7fdafc41d2af6ce0ce7293a3c0bed9bd16ffbf7e56783c457764b0b53856467cf282ea31d042148ad SHA512 ac4bebf7405c938599b7d1c7142e0324cb23beeef1fabe9b226cf4fc1adb59bec0d9d8c9f219d932b5a71e8f45f2cb2fd0e304adab0385fb6b7d1393caa483af -DIST winreg-1.2.4.tgz 10021 BLAKE2B 1db4e08503349d4a102922b38b4d22f65b086070e8d1f843b690528497dbe84b93d882b48d61552bb4bd2f868c305089d8a83059875abde98341972dbeda5f3d SHA512 207a73391b9bee46256fc038dc88a0deb78ebe57012465fd819d16c9c1e18211ed03ae57d0b627311b89b3e687d5a6d59cc273b5092f40d965b676cf8b968620 -DIST word-wrap-1.2.5.tgz 4409 BLAKE2B fc2af833f19b1b564ff813bc79f96c799c877b8eba79bbb6b7f04ce28835a5ac1f274804bef1d48377ca49e3b2497d4269218f10d5bee0bb5b49ca6a2bebd98d SHA512 04ddb607979a30c23d50cb63ac677983978260fa423c3532d052576d8b1a4f9cd8c6314e7244b9dd2403137a56915a16a475d56f706b61c10de13c1ae7907970 -DIST wrap-ansi-7.0.0.tgz 4317 BLAKE2B 244edb4d9434ceacc0040ac26a02717b94e114e1a112ae15298cd14ca148a0e6097aecc214b0510a4c57c06c81c2e6da0549a5d2106db56d70421fd6a1d430f8 SHA512 6151888f691a98b493c70e8db198e80717d2c2c9f4c9c75eb26738a7e436d5ce733ee675a65f8d7f155dc4fb5d1ef98d54e43a5d2606e0052dcadfc58bb0f5e9 -DIST wrap-ansi-8.1.0.tgz 4444 BLAKE2B 4fa0c6c92f1bc5eef9388f0d53e75c7dde15cfee246c30182a4c5ab768bec02d8bbf46b24ddae827f43fae5835d2a1805f5560d1cdc78bc1e3ad9a86e6b2de49 SHA512 b22ed0588eb350cab9e9b11216f6a0b66ccc7463ada317d1f927b3d753286df73bb66f9591472493d6d6d9479f7d319551b3a4b31992c34000da0b3c83bd4d09 -DIST wrap-ansi-9.0.2.tgz 4316 BLAKE2B 83b61bf8afdc3990fca528e534dc62b277816a25edd3731d58fd0d61afda5126019f6df4bdc2be190ec1253fd609d471462e976586dbaf4ac7f43472363d6557 SHA512 e3602d9a0aa357e5f556974e7f24c6398462d3fceca0baad5d07244e6a937b26d3f810c86ccfc6bb1a3bc77a44dafb69af5a24eb146a33d3a905ef89ca8ab2c3 -DIST wrappy-1.0.2.tgz 1676 BLAKE2B aacb2a57d477c3cc3033c7095af248ff1ce00132b06bf25fbd1ba42a4898c0bbcf90e5c7cd3572a7483a5c1f1ab518fa8e2cb60c4176cbd2a609eb4419e7c8ce SHA512 9784a9fc346c7a8afdc0be84bd5dbe4ee427eb774c90f8d9feca7d5e48214c46d5f4a94f4b5c54b19deeeff2103b8c31b5c141e1b82940f45c477402bdeccf71 -DIST xmlbuilder-15.1.1.tgz 62870 BLAKE2B 4e934e405f32fc3cab9b47dba20efc7afe9dc9164ee48d16c7359ebd4346b4382bb9bd69ccbdc71691f90b14fabfcdc31210282617e1d1c6515996eeffa641cf SHA512 c8ca8606ab57c9e3757b74c662f80d803559de3f385b873090e5d0b30821a25e803e065669f7fd9676ef37b3076093a25ecbc63d7b634d8244882f49db0bfd12 -DIST xtend-4.0.2.tgz 2529 BLAKE2B d6a6883ead488ac0552716779fd2d74685b0004c37e6300917626649033accd49ea27901cbb6cce9e29d34144467690a4f163bf284455f7e632602b7daf6cf3e SHA512 2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011 -DIST y18n-5.0.8.tgz 6157 BLAKE2B e9056018245afc85f1b62a2a3779ff76c05a8cad23c9374c43f40fc6e52a8045fc93c648ab5529fae82f4dfb28b53adf88cc1fa25161489348a8fb9a8468ef1f SHA512 d297c5cde81e0d62472480264cb44fd83c078dd179b3b8e8f6dbb3b5d43102120d09dbd2fb79c620da8f774d00a61a8947fd0b8403544baffeed209bf7c60e7c -DIST yaku-0.16.7.tgz 31529 BLAKE2B 210302884821f7d1cffdbff2fe8c6996ea57e8f8e5e0ef03880ed5d871ada4e35a276f4d7dee9caf79b5abea1ababe8bb0cc537efc57f76779abb04e1841b3bb SHA512 4b2bb7201deb66f2af624ef24e2ca5d5ba3f8e210569a4adae0bf55764c8253a983d2b5231054ef0442383fcfe0d1ccbabfe0b20885aacd4f7887d61ca510847 -DIST yallist-3.1.1.tgz 4496 BLAKE2B 5dcee70de5944274b95a9531b2394776d56add3b3905ce653e4cb8641279b3102d44dc5ab6283446de97aa6a97ab033102cff8f57b4783d5ff66d0de37c5a024 SHA512 6b850641a58f1f9f663975189c01b67b09dc412e22e05e374efdc9a0033eb365430264bd36c2bc1a90cc2eb0873e4b054fb8772ba4cea14367da96fb4685f1e2 -DIST yallist-4.0.0.tgz 4494 BLAKE2B 3fc1526410ae37bf4485770bd5db254126c0671b7478861de0eef0a5456616ea02e1972f91316e95b593219da424b3c991830fd270e6e385ee81cb2e7546d4b7 SHA512 df074689d672ab93c1d3ce172c44b94e9392440df08d7025216321ba6da445cbffe354a7d9e990d1dc9c416e2e6572de8f02af83a12cbdb76554bf8560472dec -DIST yallist-5.0.0.tgz 9821 BLAKE2B 7f7c9f45dd7d3453618e7722e03ce737fe70c8646839815d3db2d46018a4ed0fb46b81aaa2833c022f7bd5fa365bc3171a18e18d37f73e7e6cf9d16714f397a3 SHA512 620bd44dfc2ac9ced45d532b07e4889ac5584a64d2f17fed4abb5d35930898cfa7efe413ae2457c978a6d2606b4d735eab3545d0a5868073de8b2562145acd0f -DIST yaml-2.8.1.tgz 111596 BLAKE2B 9771a0a700a9bad814eef8231c04696e46582253c365a3288ecda3d514d5789e7e40b67688527f3d840b6db8741fdf6e5d17eb5ca2b197abaf5c693e4cd67074 SHA512 95c61c3315f63cef57306bc02642773ac34cc3effb14a7aceff8607ab1946162285aee63ffe610a9c66be499cf656cceb0406031b49b8924e7fddbffebd324a7 -DIST yargs-17.7.2.tgz 65691 BLAKE2B 89ce62eeab8b355b3123f4d2050194061335afa1b79d46de44df3e944630ece542b2d4e255d3ec737a0df7d9bf7437afc5a31340193ce2059ac844875526fd20 SHA512 edd4b3cd143ef822a7348fe4aca9d8455ec928a3d45cc121eb5b286872a0f66ad6121cc55a1167c4fc4697eebd703d4ebbadc2d773543c29e621caefa82b8ceb -DIST yargs-parser-21.1.1.tgz 28613 BLAKE2B 88a0f25192099cd298c67f05e904201967d0036afc3482b89156406edbef807f396faeaf5736b8c5f792560182d645fab2d0becb474cf10bd42fbcc0f42943ea SHA512 b55a6c256ec376379c0221696c80757b7ab1210b04e8da0f739fde4ddadb6c80b88742d5b16867a1ade0fa6d87725048ba31f3b31678549540f8652e736fcb07 -DIST yauzl-2.10.0.tgz 18697 BLAKE2B 09034afce040c8e1667d6ff1dbf82a9499b5b0582b82011385da92f4f624465a8a71ab5b32cfe78648d046aab1db7dcb2b283fc43df846835f8e8c0f8be03723 SHA512 a786bd23a5fa9eee888681a606a01c6c9cb59a50b88f6eef10f657f45e0be3fbd94f72f2ab5564147c3f57f3d4701f41ba8f831b7887913d31dd0c9ae7ccdcde -DIST yocto-queue-0.1.0.tgz 2765 BLAKE2B 2f097107d84d11469841d9f1db0ec31eee4873dfdd2533fcd86b2aeaa7b96d314d2d818ad580a5f25dc2cbb1d89bbf44786fde89ad1a812283fe4494ed365b7f SHA512 ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9 -DIST zod-4.3.5.tgz 715598 BLAKE2B ef3b019d77b41910f5dfe28ee8baab2f0aa5ca52fcd7100de87596449ca952f6c78a45ee3b23db375c335c8eee2efd8a9525df4056895366df4b2e78ac000f51 SHA512 93b370c7abee5b1d4827d063b9fe19b753c49657307bb725b3754dce6e02435fe182d1542b66d1346debbe7a4f5211639aa24a00ab63579efa2a75241e8720fe +DIST element-desktop-1.12.3.tar.gz 3155645 BLAKE2B 0bad577b47fd6b77ece3d6712170d7f2b765188d1b35e1cc0d627aa188494637267443963a4ea831fd7ac93046d6e9ae9cae8cd8a8d93147889df9983a11a60d SHA512 f302907165a35f4a4f069f5aec6bc28edeba3d09c75f483c818e3930ceb4e838e5bb91ad9d42019a11a661d6e656da3c1ff25507cbb281c69183aac7d499e882 +DIST element-desktop-1.12.6.tar.gz 3167063 BLAKE2B 94762a2336896e8cbd1be3115ba1b0ec2c4621f7786f6a3b84c1d992143bb4a33d2b4e01e5c2b557181f09b280a34117c0130ebd179bb909667ffe4244b609ba SHA512 556e43330d4f36d7569ad657c974b1c08bc7140f8fae0f0fdc6e1c797d163b407f04ef1448ed0b1dcb7b9ae8be170509cccf7ea8df2641beacd379d2d2928f9f +DIST element-desktop-1.12.7.tar.gz 3168015 BLAKE2B d58d4d9507755ff692215d29dbd5b527e314333f82bce8eb7911b8382a06813c24b1e8f786e96a7fecee1f2f427845b6a2254ffc45f0d4527d18086c50319a53 SHA512 1c914ed46607818ab3286c0bdb279d3d5765e6d72c5dffb18d5bef7080a93294eefa74a1125d13f4e0784cc2c67e3ab2c9cbf265d42085c1424c1f0e537e7f79 +DIST element-web-1.12.3.tar.gz 24197114 BLAKE2B fc4d5789167d861be92c5600bbbf6965d55208f4654f6d219cc1360b56e33d7ded90ea5b8430abf195cb06fff5e5003c2116c47d78950cb3a4a4ba2af2091b7c SHA512 b845ff71ca39d7ae4dca9bb55e821bfdf911b12de5d012ba55d598f3287046fb2b525bce608925a9fa8fa7d39a4ceed9b4213d5d1c1d0c9e6b9b72154c9a35a5 +DIST element-web-1.12.6.tar.gz 24467930 BLAKE2B 240f32dbba7d4d173a3bf7f7602b0913b8acb1835ba4ae1690622422de71e28678a12b6f42edb81ac86ec274e979618fba3674ac760000317982589aab93fa68 SHA512 5ddef6cbf2948b36c12d6eaeeffbdf56c09d217b87b73638374459ad412d70fe7ab2d55beb42e752be4ace952923c266f0c5b3a1443f836f1e6f311a7f2f7645 +DIST element-web-1.12.7.tar.gz 24583616 BLAKE2B fbda62604e3d0b8a6e56a6346c296602090a44a10a86ccdb36c6877bc83e51995eecde4e001bae232e29e05aab607027a9b0d2a938bb7c6bd4cf9e1132c0d556 SHA512 2433af8b01f7b3ea6152a0778e7e1502f7fc2c678dcaad0af8147aa34235b3a9453617b611e2fd8bece511600518a8b512823dd79cf7f8b8d8284b649ba52fb1 diff --git a/net-im/element-desktop/element-desktop-1.12.10.ebuild b/net-im/element-desktop/element-desktop-1.12.10.ebuild deleted file mode 100644 index aa14f914be4b..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.10.ebuild +++ /dev/null @@ -1,1203 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="!build-online? ( - https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz - https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz - https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz - https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz - https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz - https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz - https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.28.6.tgz -> @babel-code-frame-7.28.6.tgz - https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.6.tgz -> @babel-compat-data-7.28.6.tgz - https://registry.yarnpkg.com/@babel/core/-/core-7.28.6.tgz -> @babel-core-7.28.6.tgz - https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.6.tgz -> @babel-generator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz - https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz -> @babel-helper-compilation-targets-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz -> @babel-helper-create-class-features-plugin-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz - https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz - https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz -> @babel-helper-module-imports-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz -> @babel-helper-module-transforms-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz -> @babel-helper-plugin-utils-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz -> @babel-helper-replace-supers-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz -> @babel-helper-wrap-function-7.28.6.tgz - https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.6.tgz -> @babel-helpers-7.28.6.tgz - https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.6.tgz -> @babel-parser-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz -> @babel-plugin-syntax-import-assertions-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz -> @babel-plugin-syntax-import-attributes-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.6.tgz -> @babel-plugin-transform-async-generator-functions-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz -> @babel-plugin-transform-async-to-generator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz -> @babel-plugin-transform-block-scoping-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz -> @babel-plugin-transform-class-properties-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz -> @babel-plugin-transform-class-static-block-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz -> @babel-plugin-transform-classes-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz -> @babel-plugin-transform-computed-properties-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz -> @babel-plugin-transform-dotall-regex-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz -> @babel-plugin-transform-json-strings-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz -> @babel-plugin-transform-modules-commonjs-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz -> @babel-plugin-transform-numeric-separator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz -> @babel-plugin-transform-object-rest-spread-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz -> @babel-plugin-transform-optional-catch-binding-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz -> @babel-plugin-transform-optional-chaining-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz -> @babel-plugin-transform-private-methods-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz -> @babel-plugin-transform-private-property-in-object-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.6.tgz -> @babel-plugin-transform-regenerator-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz -> @babel-plugin-transform-regexp-modifiers-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz -> @babel-plugin-transform-spread-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz -> @babel-plugin-transform-unicode-property-regex-7.28.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz -> @babel-plugin-transform-unicode-sets-regex-7.28.6.tgz - https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.6.tgz -> @babel-preset-env-7.28.6.tgz - https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz - https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz - https://registry.yarnpkg.com/@babel/template/-/template-7.28.6.tgz -> @babel-template-7.28.6.tgz - https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.6.tgz -> @babel-traverse-7.28.6.tgz - https://registry.yarnpkg.com/@babel/types/-/types-7.28.6.tgz -> @babel-types-7.28.6.tgz - https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz - https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz - https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz - https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz -> @electron-get-3.1.0.tgz - https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz - https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz - https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz -> @electron-rebuild-4.0.3.tgz - https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz - https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz - https://registry.yarnpkg.com/@emnapi/core/-/core-1.8.1.tgz -> @emnapi-core-1.8.1.tgz - https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz -> @emnapi-runtime-1.8.1.tgz - https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz - https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz -> @esbuild-aix-ppc64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.1.tgz -> @esbuild-android-arm-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz -> @esbuild-android-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.1.tgz -> @esbuild-android-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz -> @esbuild-darwin-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz -> @esbuild-darwin-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz -> @esbuild-freebsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz -> @esbuild-freebsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz -> @esbuild-linux-arm-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz -> @esbuild-linux-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz -> @esbuild-linux-ia32-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz -> @esbuild-linux-loong64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz -> @esbuild-linux-mips64el-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz -> @esbuild-linux-ppc64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz -> @esbuild-linux-riscv64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz -> @esbuild-linux-s390x-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz -> @esbuild-linux-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz -> @esbuild-netbsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz -> @esbuild-netbsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz -> @esbuild-openbsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz -> @esbuild-openbsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz -> @esbuild-openharmony-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz -> @esbuild-sunos-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz -> @esbuild-win32-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz -> @esbuild-win32-ia32-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz -> @esbuild-win32-x64-0.27.1.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz -> @eslint-community-eslint-utils-4.9.1.tgz - https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz - https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz - https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz - https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz - https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz - https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz - https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz - https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz - https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz - https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz - https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz - https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz - https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz - https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz - https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz - https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz - https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz - https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz - https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz -> @napi-rs-wasm-runtime-1.1.1.tgz - https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz - https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz - https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz - https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz - https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz - https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz - https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz - https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz - https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz - https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz - https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz -> @opentelemetry-api-logs-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.210.0.tgz -> @opentelemetry-api-logs-0.210.0.tgz - https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz - https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.4.0.tgz -> @opentelemetry-context-async-hooks-2.4.0.tgz - https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz - https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.4.0.tgz -> @opentelemetry-core-2.4.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.55.0.tgz -> @opentelemetry-instrumentation-amqplib-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.52.0.tgz -> @opentelemetry-instrumentation-connect-0.52.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.26.0.tgz -> @opentelemetry-instrumentation-dataloader-0.26.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.57.0.tgz -> @opentelemetry-instrumentation-express-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.28.0.tgz -> @opentelemetry-instrumentation-fs-0.28.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.52.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.52.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.56.0.tgz -> @opentelemetry-instrumentation-graphql-0.56.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.55.0.tgz -> @opentelemetry-instrumentation-hapi-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.208.0.tgz -> @opentelemetry-instrumentation-http-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.56.0.tgz -> @opentelemetry-instrumentation-ioredis-0.56.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.18.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.18.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.53.0.tgz -> @opentelemetry-instrumentation-knex-0.53.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.57.0.tgz -> @opentelemetry-instrumentation-koa-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.53.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.53.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.61.0.tgz -> @opentelemetry-instrumentation-mongodb-0.61.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.55.0.tgz -> @opentelemetry-instrumentation-mongoose-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.54.0.tgz -> @opentelemetry-instrumentation-mysql-0.54.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.55.0.tgz -> @opentelemetry-instrumentation-mysql2-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.61.0.tgz -> @opentelemetry-instrumentation-pg-0.61.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.57.0.tgz -> @opentelemetry-instrumentation-redis-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.27.0.tgz -> @opentelemetry-instrumentation-tedious-0.27.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.19.0.tgz -> @opentelemetry-instrumentation-undici-0.19.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.208.0.tgz -> @opentelemetry-instrumentation-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.210.0.tgz -> @opentelemetry-instrumentation-0.210.0.tgz - https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz - https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.4.0.tgz -> @opentelemetry-resources-2.4.0.tgz - https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.4.0.tgz -> @opentelemetry-sdk-trace-base-2.4.0.tgz - https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.39.0.tgz -> @opentelemetry-semantic-conventions-1.39.0.tgz - https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.16.3.tgz -> @oxc-resolver-binding-android-arm-eabi-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.16.3.tgz -> @oxc-resolver-binding-android-arm64-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.16.3.tgz -> @oxc-resolver-binding-darwin-arm64-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.16.3.tgz -> @oxc-resolver-binding-darwin-x64-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.16.3.tgz -> @oxc-resolver-binding-freebsd-x64-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.16.3.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.16.3.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.16.3.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.16.3.tgz -> @oxc-resolver-binding-linux-x64-musl-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.16.3.tgz -> @oxc-resolver-binding-openharmony-arm64-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.16.3.tgz -> @oxc-resolver-binding-wasm32-wasi-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.16.3.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.16.3.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.16.3.tgz - https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz - https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz - https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.19.0.tgz -> @prisma-instrumentation-6.19.0.tgz - https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz - https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.34.0.tgz -> @sentry-internal-browser-utils-10.34.0.tgz - https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.34.0.tgz -> @sentry-internal-feedback-10.34.0.tgz - https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.34.0.tgz -> @sentry-internal-replay-canvas-10.34.0.tgz - https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.34.0.tgz -> @sentry-internal-replay-10.34.0.tgz - https://registry.yarnpkg.com/@sentry/browser/-/browser-10.34.0.tgz -> @sentry-browser-10.34.0.tgz - https://registry.yarnpkg.com/@sentry/core/-/core-10.34.0.tgz -> @sentry-core-10.34.0.tgz - https://registry.yarnpkg.com/@sentry/electron/-/electron-7.6.0.tgz -> @sentry-electron-7.6.0.tgz - https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.34.0.tgz -> @sentry-node-core-10.34.0.tgz - https://registry.yarnpkg.com/@sentry/node/-/node-10.34.0.tgz -> @sentry-node-10.34.0.tgz - https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.34.0.tgz -> @sentry-opentelemetry-10.34.0.tgz - https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz - https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz - https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz - https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz - https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz - https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz - https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz - https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.7.0.tgz -> @stylistic-eslint-plugin-5.7.0.tgz - https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz - https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz - https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz - https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz - https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz - https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz - https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz - https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz - https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz - https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz - https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz - https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz - https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz - https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz - https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz - https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz - https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz - https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz - https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz - https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz - https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz - https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz - https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz - https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.7.tgz -> @types-pg-pool-2.0.7.tgz - https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz - https://registry.yarnpkg.com/@types/pg/-/pg-8.16.0.tgz -> @types-pg-8.16.0.tgz - https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz - https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz - https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz - https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz - https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz - https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz - https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.53.1.tgz -> @typescript-eslint-eslint-plugin-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.53.1.tgz -> @typescript-eslint-parser-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.53.1.tgz -> @typescript-eslint-project-service-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.53.1.tgz -> @typescript-eslint-scope-manager-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.53.1.tgz -> @typescript-eslint-tsconfig-utils-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.53.1.tgz -> @typescript-eslint-type-utils-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.53.1.tgz -> @typescript-eslint-types-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.53.1.tgz -> @typescript-eslint-typescript-estree-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.53.1.tgz -> @typescript-eslint-utils-8.53.1.tgz - https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.53.1.tgz -> @typescript-eslint-visitor-keys-8.53.1.tgz - https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz - https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz - https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz - https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz - https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz - https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz - https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz - https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz - https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz - https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz - https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz - https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz - https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz - https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz - https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz - https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz - https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz - https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz - https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz - https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz - https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.6.0.tgz - https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz - https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz - https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz - https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz - https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz - https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz - https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz - https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz - https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz - https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz - https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz - https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz - https://registry.yarnpkg.com/async/-/async-3.2.6.tgz - https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz - https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz - https://registry.yarnpkg.com/atomically/-/atomically-2.1.0.tgz - https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz - https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz - https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz - https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz - https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.16.tgz - https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz - https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz - https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz - https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz - https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz - https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.1.tgz - https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz - https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz - https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz - https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz - https://registry.yarnpkg.com/builder-util/-/builder-util-26.4.1.tgz - https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz - https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz - https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz - https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz - https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz - https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz - https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz - https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz - https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz - https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001765.tgz - https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz - https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz - https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz - https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz - https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz - https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz - https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz - https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz - https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz - https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz - https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz - https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz - https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz - https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz - https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz - https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz - https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz - https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz - https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz - https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz - https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz - https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz - https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz - https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz - https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz - https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz - https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz - https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz - https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz - https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.47.0.tgz - https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz - https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz - https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz - https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz - https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz - https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz - https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz - https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz - https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz - https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz - https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz - https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz - https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz - https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz - https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz - https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz - https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz - https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz - https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz - https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz - https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz - https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz - https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz - https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz - https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz - https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.6.0.tgz - https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz - https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz - https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz - https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz - https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz - https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz - https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz - https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz - https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz - https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.6.0.tgz - https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.6.0.tgz - https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz - https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.6.0.tgz - https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz - https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz - https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz - https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz - https://registry.yarnpkg.com/electron/-/electron-40.0.0.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz - https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz - https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz - https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz - https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz - https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz - https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz - https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz - https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz - https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz - https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz - https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz - https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz - https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz - https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz - https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz - https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz - https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.1.tgz - https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz - https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz - https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz - https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz - https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz - https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz - https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz - https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz - https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz - https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz - https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.2.tgz - https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz - https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz - https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz - https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.0.tgz - https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz - https://registry.yarnpkg.com/espree/-/espree-11.1.0.tgz - https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz - https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz - https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz - https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz - https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz - https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz - https://registry.yarnpkg.com/except/-/except-0.1.3.tgz - https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz - https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz - https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz - https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz - https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz - https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz - https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz - https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz - https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz - https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz - https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz - https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz - https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz - https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz - https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz - https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz - https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz - https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz - https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz - https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz - https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz - https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz - https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz - https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz - https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz - https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz - https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz - https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz - https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz - https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz - https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz - https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz - https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz - https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz - https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz - https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz - https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz - https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz - https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz - https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz - https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz - https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz - https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz - https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz - https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz - https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz - https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz - https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz - https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz - https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz - https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz - https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz - https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz - https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz - https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz - https://registry.yarnpkg.com/got/-/got-11.8.6.tgz - https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz - https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz - https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz - https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz - https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz - https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz - https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz - https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz - https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz - https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz - https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz - https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz - https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz - https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz - https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz - https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz - https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz - https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz - https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz - https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz - https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz - https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz - https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz - https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-2.0.4.tgz - https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz - https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz - https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz - https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz - https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz - https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz - https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz - https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz - https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz - https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz - https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz - https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz - https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz - https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz - https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz - https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz - https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz - https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz - https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz - https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz - https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz - https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz - https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz - https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz - https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz - https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz - https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz - https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz - https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz - https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz - https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz - https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz - https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz - https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz - https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz - https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz - https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz - https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz - https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz - https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz - https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz - https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz - https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz - https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz - https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz - https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz - https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz - https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz - https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz - https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz - https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz - https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz - https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz - https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz - https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz - https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz - https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz - https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz - https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz - https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz - https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz - https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz - https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz - https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz - https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz - https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz - https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz - https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz - https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz - https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz - https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz - https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz - https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz - https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz - https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz - https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz - https://registry.yarnpkg.com/knip/-/knip-5.82.1.tgz - https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz - https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz - https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz - https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz - https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz - https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz - https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz - https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz - https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz - https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz - https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz - https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz - https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz - https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz - https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz - https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz - https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz - https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz - https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.5.2.tgz - https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz - https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz - https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz - https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz - https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz - https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz - https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz - https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz - https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz - https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz - https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz - https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz - https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz - https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz - https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz - https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz - https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz - https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz - https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz - https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz - https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz - https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz - https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz - https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz - https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz - https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz - https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz - https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz - https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz - https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz - https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz - https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz - https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz - https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz - https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz - https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz - https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz - https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz - https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz - https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz - https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz - https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz - https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz - https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz - https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz - https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz - https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz - https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz - https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz - https://registry.yarnpkg.com/once/-/once-1.4.0.tgz - https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz - https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz - https://registry.yarnpkg.com/open/-/open-7.4.2.tgz - https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz - https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz - https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz - https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.16.3.tgz - https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz - https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz - https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz - https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz - https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz - https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz - https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz - https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz - https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz - https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz - https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz - https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz - https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz - https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz - https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz - https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz - https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz - https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz - https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz - https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz - https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz - https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz - https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.11.0.tgz - https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz - https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz - https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz - https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz - https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz - https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz - https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz - https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz - https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz - https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz - https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz - https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz - https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz - https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz - https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.1.tgz - https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz - https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz - https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz - https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz - https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz - https://registry.yarnpkg.com/prettier/-/prettier-3.8.0.tgz - https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz - https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz - https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz - https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz - https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz - https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz - https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz - https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz - https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz - https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz - https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz - https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz - https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz - https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz - https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz - https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz - https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz - https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz - https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz - https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz - https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz - https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz - https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz - https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz - https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz - https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz - https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz - https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz - https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz - https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz - https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz - https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz - https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz - https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz - https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz - https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz - https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz - https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz - https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz - https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz - https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz - https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz - https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz - https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz - https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz - https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz - https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz - https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz - https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz - https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz - https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz - https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz - https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz - https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz - https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz - https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz - https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz - https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz - https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz - https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz - https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz - https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz - https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz - https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz - https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz - https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz - https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz - https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz - https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz - https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz - https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz - https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz - https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz - https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz - https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz - https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.6.0.tgz - https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz - https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz - https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz - https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz - https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz - https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz - https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz - https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz - https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz - https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz - https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz - https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz - https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz - https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz - https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz - https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz - https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz - https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz - https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz - https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz - https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz - https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz - https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz - https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz - https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz - https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz - https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz - https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz - https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz - https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-2.0.0.tgz - https://registry.yarnpkg.com/stubborn-utils/-/stubborn-utils-1.0.2.tgz - https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz - https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz - https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz - https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz - https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz - https://registry.yarnpkg.com/tar/-/tar-7.5.3.tgz - https://registry.yarnpkg.com/tar/-/tar-7.5.7.tgz - https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz - https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz - https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz - https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz - https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz - https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz - https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz - https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz - https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz - https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz - https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz - https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz - https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz - https://registry.yarnpkg.com/tsx/-/tsx-4.21.0.tgz - https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz - https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz - https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz - https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz - https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz - https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz - https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz - https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz - https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz - https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz - https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz - https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz - https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz - https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz - https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz - https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz - https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz - https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz - https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz - https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz - https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz - https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz - https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz - https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz - https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz - https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz - https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz - https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz - https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz - https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz - https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz - https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz - https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz - https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz - https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.5.tgz - https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz - https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz - https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz - https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz - https://registry.yarnpkg.com/which/-/which-2.0.2.tgz - https://registry.yarnpkg.com/which/-/which-5.0.0.tgz - https://registry.yarnpkg.com/which/-/which-6.0.0.tgz - https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz - https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz - https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz - https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz - https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz - https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz - https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz - https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz - https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz - https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz - https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz - https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz - https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz - https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz - https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz - https://registry.yarnpkg.com/zod/-/zod-4.3.5.tgz -) " - -REPO="https://github.com/vector-im/element-desktop" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-36 electron-37 electron-40 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" build-online" - KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-36? ( dev-util/electron:36 ) - electron-37? ( dev-util/electron:37 ) - electron-40? ( dev-util/electron:40 ) - !electron-36? ( - !electron-37? ( - !electron-40? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs - sys-apps/yarn -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-36; then - export ELECTRON_SLOT=36 - elif use electron-37; then - export ELECTRON_SLOT=37 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/${P}.tar.gz" ]; then - unpack "${P}".tar.gz || die - else - git-r3_src_unpack - fi - else - unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # OLD_PATH=$PATH - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - PATH="${S}/node_modules/.bin:$PATH"; - export PATH - export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - yarn config set disable-self-update-check true || die - yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # #! Until electron-builder >=22.11.5 - # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' package.json || die - - if ! use build-online; then - ONLINE_OFFLINE="--offline --frozen-lockfile" - yarn config set yarn-offline-mirror "${DISTDIR}" || die - fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' package.json || die - - einfo "Installing node_modules" - node /usr/bin/yarn install ${ONLINE_OFFLINE} --no-progress || die - - node node_modules/.bin/tsc || die - node node_modules/.bin/tsx scripts/copy-res.ts || die - - if use native-modules - then - node /usr/bin/yarn run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json yarn.lock ${distdir} || die - pushd ${distdir} &> /dev/null || die - node /usr/bin/yarn install ${ONLINE_OFFLINE} --production \ - --no-progress --frozen-lockfile || die - popd &> /dev/null || die - rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} -} - -src_install() { - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.11.ebuild b/net-im/element-desktop/element-desktop-1.12.11.ebuild deleted file mode 100644 index 1000d7b01bed..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.11.ebuild +++ /dev/null @@ -1,219 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/vector-im/element-desktop" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-36 electron-37 electron-40 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-36? ( dev-util/electron:36 ) - electron-37? ( dev-util/electron:37 ) - electron-40? ( dev-util/electron:40 ) - !electron-36? ( - !electron-37? ( - !electron-40? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-36; then - export ELECTRON_SLOT=36 - elif use electron-37; then - export ELECTRON_SLOT=37 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/${P}.tar.gz" ]; then - unpack "${P}".tar.gz || die - else - git-r3_src_unpack - fi - else - unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' package.json || die - - einfo "Installing node_modules" - pnpm install || die - - # node node_modules/.bin/tsc || die - # node node_modules/.bin/tsx scripts/copy-res.ts || die - pnpm run build || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} -} - -src_install() { - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.12.ebuild b/net-im/element-desktop/element-desktop-1.12.12.ebuild deleted file mode 100644 index 52849c68c500..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.12.ebuild +++ /dev/null @@ -1,215 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/vector-im/element-desktop" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-40 electron-41 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-40? ( dev-util/electron:40 ) - electron-41? ( dev-util/electron:41 ) - !electron-40? ( - !electron-41? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-41; then - export ELECTRON_SLOT=41 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/${P}.tar.gz" ]; then - unpack "${P}".tar.gz || die - else - git-r3_src_unpack - fi - else - unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' package.json || die - - einfo "Installing node_modules" - pnpm install || die - - # node node_modules/.bin/tsc || die - # node node_modules/.bin/tsx scripts/copy-res.ts || die - pnpm run build || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} -} - -src_install() { - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.13.ebuild b/net-im/element-desktop/element-desktop-1.12.13.ebuild deleted file mode 100644 index 52849c68c500..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.13.ebuild +++ /dev/null @@ -1,215 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/vector-im/element-desktop" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-40 electron-41 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-40? ( dev-util/electron:40 ) - electron-41? ( dev-util/electron:41 ) - !electron-40? ( - !electron-41? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-41; then - export ELECTRON_SLOT=41 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/${P}.tar.gz" ]; then - unpack "${P}".tar.gz || die - else - git-r3_src_unpack - fi - else - unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' package.json || die - - einfo "Installing node_modules" - pnpm install || die - - # node node_modules/.bin/tsc || die - # node node_modules/.bin/tsx scripts/copy-res.ts || die - pnpm run build || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} -} - -src_install() { - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.15.ebuild b/net-im/element-desktop/element-desktop-1.12.15.ebuild deleted file mode 100644 index ae4bb2e90f05..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.15.ebuild +++ /dev/null @@ -1,223 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/element-hq/element-web" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-40 electron-41 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - # KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> element-web-${PV}.tar.gz" - S="${WORKDIR}/element-web-${PV}" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> element-web-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/element-web-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-40? ( dev-util/electron:40 ) - electron-41? ( dev-util/electron:41 ) - !electron-40? ( - !electron-41? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-41; then - export ELECTRON_SLOT=41 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/element-web-${PV}.tar.gz" ]; then - unpack "element-web-${PV}.tar.gz" || die - else - git-r3_src_unpack - fi - else - unpack "element-web-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' apps/desktop/package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' apps/desktop/package.json || die - - einfo "Installing node_modules" - pnpm install || die - - cd apps/desktop - pnpm run build:ts || die - pnpm run build:res || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} - - #! Fail CI - if [ ! -z "${NODIE}" ]; then - die - fi -} - -src_install() { - cd apps/desktop - - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.16.ebuild b/net-im/element-desktop/element-desktop-1.12.16.ebuild deleted file mode 100644 index 0fad77b61348..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.16.ebuild +++ /dev/null @@ -1,227 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/element-hq/element-web" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-40 electron-41 electron-42 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - # KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> element-web-${PV}.tar.gz" - S="${WORKDIR}/element-web-${PV}" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> element-web-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/element-web-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-40? ( dev-util/electron:40 ) - electron-41? ( dev-util/electron:41 ) - electron-42? ( dev-util/electron:42 ) - !electron-40? ( - !electron-41? ( - !electron-42? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-41; then - export ELECTRON_SLOT=41 - elif use electron-40; then - export ELECTRON_SLOT=40 - elif use electron-42; then - export ELECTRON_SLOT=42 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/element-web-${PV}.tar.gz" ]; then - unpack "element-web-${PV}.tar.gz" || die - else - git-r3_src_unpack - fi - else - unpack "element-web-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' apps/desktop/package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' apps/desktop/package.json || die - - einfo "Installing node_modules" - pnpm install || die - - cd apps/desktop - pnpm run build:ts || die - pnpm run build:res || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} - - #! Fail CI - if [ ! -z "${NODIE}" ]; then - die - fi -} - -src_install() { - cd apps/desktop - - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-1.12.3.ebuild b/net-im/element-desktop/element-desktop-1.12.3.ebuild new file mode 100644 index 000000000000..9ba6b200b494 --- /dev/null +++ b/net-im/element-desktop/element-desktop-1.12.3.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit unpacker rust xdg + +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io" +SRC_URI="https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/element-hq/element-web/archive/v${PV}.tar.gz -> element-web-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+emoji" + +RESTRICT="network-sandbox" #The setup script needs internet connection, including for yarn install + +RDEPEND=" + !net-im/element-desktop-bin + >=app-accessibility/at-spi2-core-2.46.0 + app-crypt/libsecret + dev-db/sqlcipher + dev-libs/expat + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + net-libs/nodejs + net-print/cups + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libxcb + 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/libXtst + x11-libs/libXScrnSaver + x11-libs/pango + emoji? ( media-fonts/noto-emoji ) +" +DEPEND="${RDEPEND}" +BDEPEND="sys-apps/yarn" + +QA_PREBUILT=" + opt/Element/resources/app.asar.unpacked/node_modules/keytar-forked/build/Release/keytar.node + opt/Element/chrome-sandbox + opt/Element/libEGL.so + opt/Element/chrome_crashpad_handler + opt/Element/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node + opt/Element/element-desktop + opt/Element/libffmpeg.so + opt/Element/libvulkan.so.1 + opt/Element/libGLESv2.so + opt/Element/libvk_swiftshader.so +" + +ELEMENT_WEB_S="${WORKDIR}/element-web-${PV}" + +pkg_setup() { + rust_pkg_setup +} + +src_prepare() { + default + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn install || die + cp config.sample.json config.json || die + popd >/dev/null || die + + yarn install || die +} + +src_compile() { + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn build || die + popd >/dev/null || die + + ln -s "${ELEMENT_WEB_S}"/webapp ./ || die + yarn build:native || die + # Use sed to temporarily fix upstream bug in app-builder-lib https://github.com/electron-userland/electron-builder/issues/9355 + sed -i 's/else if (isCi) {/else if (isCi.isCI) {/' node_modules/app-builder-lib/out/publish/PublishManager.js || die + yarn build || die +} + +src_install() { + unpack dist/${PN}_${PV}_amd64.deb + tar -xvf data.tar.xz || die + + ./node_modules/@electron/universal/node_modules/@electron/asar/bin/asar.js p webapp opt/Element/resources/webapp.asar || die + mv -n usr/share/doc/${PN} usr/share/doc/${PF} || die + gunzip usr/share/doc/${PF}/changelog.gz || die + + insinto / + doins -r usr + doins -r opt + local f + for f in ${QA_PREBUILT}; do + fperms +x "/${f}" + done + fperms u+s /opt/Element/chrome-sandbox + + dosym ../../opt/Element/${PN} /usr/bin/${PN} + dosym ${PN} /usr/bin/riot-desktop +} diff --git a/net-im/element-desktop/element-desktop-1.12.6.ebuild b/net-im/element-desktop/element-desktop-1.12.6.ebuild new file mode 100644 index 000000000000..a207e1e2a67a --- /dev/null +++ b/net-im/element-desktop/element-desktop-1.12.6.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit unpacker rust xdg + +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io" +SRC_URI="https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/element-hq/element-web/archive/v${PV}.tar.gz -> element-web-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+emoji keyring" + +RESTRICT="network-sandbox" #The setup script needs internet connection, including for yarn install + +RDEPEND=" + !net-im/element-desktop-bin + >=app-accessibility/at-spi2-core-2.46.0 + app-crypt/libsecret + dev-db/sqlcipher + dev-libs/expat + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + net-libs/nodejs + net-print/cups + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libxcb + 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/libXtst + x11-libs/libXScrnSaver + x11-libs/pango + emoji? ( media-fonts/noto-emoji ) +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + sys-apps/yarn + >=net-libs/nodejs-22.18.0 +" + +QA_PREBUILT=" + opt/Element/resources/app.asar.unpacked/node_modules/keytar-forked/build/Release/keytar.node + opt/Element/chrome-sandbox + opt/Element/libEGL.so + opt/Element/chrome_crashpad_handler + opt/Element/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node + opt/Element/element-desktop + opt/Element/libffmpeg.so + opt/Element/libvulkan.so.1 + opt/Element/libGLESv2.so + opt/Element/libvk_swiftshader.so +" + +ELEMENT_WEB_S="${WORKDIR}/element-web-${PV}" + +pkg_setup() { + rust_pkg_setup +} + +src_prepare() { + default + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn install || die + cp config.sample.json config.json || die + popd >/dev/null || die + + yarn install || die +} + +src_compile() { + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn build || die + popd >/dev/null || die + + ln -s "${ELEMENT_WEB_S}"/webapp ./ || die + yarn build:native || die + # Use sed to temporarily fix upstream bug in app-builder-lib https://github.com/electron-userland/electron-builder/issues/9355 + sed -i 's/else if (isCi) {/else if (isCi.isCI) {/' node_modules/app-builder-lib/out/publish/PublishManager.js || die + yarn build || die +} + +src_install() { + unpack dist/${PN}_${PV}_amd64.deb + tar -xvf data.tar.xz || die + + ./node_modules/@electron/universal/node_modules/@electron/asar/bin/asar.js p webapp opt/Element/resources/webapp.asar || die + mv -n usr/share/doc/${PN} usr/share/doc/${PF} || die + gunzip usr/share/doc/${PF}/changelog.gz || die + + insinto / + doins -r usr + doins -r opt + local f + for f in ${QA_PREBUILT}; do + fperms +x "/${f}" + done + fperms u+s /opt/Element/chrome-sandbox + + dosym ../../opt/Element/${PN} /usr/bin/${PN} + dosym ${PN} /usr/bin/riot-desktop +} diff --git a/net-im/element-desktop/element-desktop-1.12.7.ebuild b/net-im/element-desktop/element-desktop-1.12.7.ebuild new file mode 100644 index 000000000000..737ad13c7e4a --- /dev/null +++ b/net-im/element-desktop/element-desktop-1.12.7.ebuild @@ -0,0 +1,131 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit unpacker rust xdg + +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io" +SRC_URI="https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/element-hq/element-web/archive/v${PV}.tar.gz -> element-web-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+emoji keyring" + +RESTRICT="network-sandbox" #The setup script needs internet connection, including for yarn install + +RDEPEND=" + !net-im/element-desktop-bin + >=app-accessibility/at-spi2-core-2.46.0 + app-crypt/libsecret + dev-db/sqlcipher + dev-libs/expat + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + net-libs/nodejs + net-print/cups + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libxcb + 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/libXtst + x11-libs/libXScrnSaver + x11-libs/pango + emoji? ( media-fonts/noto-emoji ) +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + sys-apps/yarn + >=net-libs/nodejs-22.18.0 +" + +QA_PREBUILT=" + opt/Element/chrome-sandbox + opt/Element/libEGL.so + opt/Element/chrome_crashpad_handler + opt/Element/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node + opt/Element/element-desktop + opt/Element/libffmpeg.so + opt/Element/libvulkan.so.1 + opt/Element/libGLESv2.so + opt/Element/libvk_swiftshader.so +" + +ELEMENT_WEB_S="${WORKDIR}/element-web-${PV}" + +pkg_setup() { + rust_pkg_setup +} + +src_prepare() { + default + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn install || die + cp config.sample.json config.json || die + popd >/dev/null || die + + yarn install || die +} + +src_compile() { + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn build || die + popd >/dev/null || die + + ln -s "${ELEMENT_WEB_S}"/webapp ./ || die + yarn build:native || die + # Use sed to temporarily fix upstream bug in app-builder-lib https://github.com/electron-userland/electron-builder/issues/9355 + sed -i 's/else if (isCi) {/else if (isCi.isCI) {/' node_modules/app-builder-lib/out/publish/PublishManager.js || die + yarn build || die +} + +src_test() { + pushd "${ELEMENT_WEB_S}" >/dev/null || die + yarn test || die + popd >/dev/null || die + + # Right now I can't figure out how to run playwright + # under virtx so this test is commented out + # Help will be appreciated, need to tell the browser + # to run without a proper gpu support + #virtx dbus-launch npx playwright test --ignore-snapshots --reporter html +} + + +src_install() { + unpack dist/${PN}_${PV}_amd64.deb + tar -xvf data.tar.xz || die + + ./node_modules/@electron/universal/node_modules/@electron/asar/bin/asar.js p webapp opt/Element/resources/webapp.asar || die + mv -n usr/share/doc/${PN} usr/share/doc/${PF} || die + gunzip usr/share/doc/${PF}/changelog.gz || die + + insinto / + doins -r usr + doins -r opt + local f + for f in ${QA_PREBUILT}; do + fperms +x "/${f}" + done + fperms u+s /opt/Element/chrome-sandbox + + dosym ../../opt/Element/${PN} /usr/bin/${PN} + dosym ${PN} /usr/bin/riot-desktop +} diff --git a/net-im/element-desktop/element-desktop-1.12.9.ebuild b/net-im/element-desktop/element-desktop-1.12.9.ebuild deleted file mode 100644 index 9ead0ea19553..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.9.ebuild +++ /dev/null @@ -1,1204 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="!build-online? ( - https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz - https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz - https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz - https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz - https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz - https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz - https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz - https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz - https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz - https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz - https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz - https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz - https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz - https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz - https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz - https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz - https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz - https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz - https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz - https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz - https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz - https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz - https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz - https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz - https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz - https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz - https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz - https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz - https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz - https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz - https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz - https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz - https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz - https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz - https://registry.yarnpkg.com/@emnapi/core/-/core-1.8.1.tgz -> @emnapi-core-1.8.1.tgz - https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz -> @emnapi-runtime-1.8.1.tgz - https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz - https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz -> @esbuild-aix-ppc64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.1.tgz -> @esbuild-android-arm-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz -> @esbuild-android-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.1.tgz -> @esbuild-android-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz -> @esbuild-darwin-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz -> @esbuild-darwin-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz -> @esbuild-freebsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz -> @esbuild-freebsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz -> @esbuild-linux-arm-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz -> @esbuild-linux-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz -> @esbuild-linux-ia32-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz -> @esbuild-linux-loong64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz -> @esbuild-linux-mips64el-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz -> @esbuild-linux-ppc64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz -> @esbuild-linux-riscv64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz -> @esbuild-linux-s390x-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz -> @esbuild-linux-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz -> @esbuild-netbsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz -> @esbuild-netbsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz -> @esbuild-openbsd-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz -> @esbuild-openbsd-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz -> @esbuild-openharmony-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz -> @esbuild-sunos-x64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz -> @esbuild-win32-arm64-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz -> @esbuild-win32-ia32-0.27.1.tgz - https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz -> @esbuild-win32-x64-0.27.1.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz - https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz -> @eslint-community-eslint-utils-4.9.1.tgz - https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz - https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz - https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz - https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz - https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz - https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz - https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz - https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz - https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz - https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz - https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz - https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz - https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz - https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz - https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz - https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz - https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz - https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz - https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz - https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz -> @napi-rs-wasm-runtime-1.1.1.tgz - https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz - https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz - https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz - https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz - https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz - https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz - https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz - https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz - https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz - https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz - https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz - https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz -> @opentelemetry-api-logs-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz - https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz - https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.55.0.tgz -> @opentelemetry-instrumentation-amqplib-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.52.0.tgz -> @opentelemetry-instrumentation-connect-0.52.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.26.0.tgz -> @opentelemetry-instrumentation-dataloader-0.26.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.57.0.tgz -> @opentelemetry-instrumentation-express-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.28.0.tgz -> @opentelemetry-instrumentation-fs-0.28.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.52.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.52.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.56.0.tgz -> @opentelemetry-instrumentation-graphql-0.56.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.55.0.tgz -> @opentelemetry-instrumentation-hapi-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.208.0.tgz -> @opentelemetry-instrumentation-http-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.56.0.tgz -> @opentelemetry-instrumentation-ioredis-0.56.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.18.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.18.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.53.0.tgz -> @opentelemetry-instrumentation-knex-0.53.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.57.0.tgz -> @opentelemetry-instrumentation-koa-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.53.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.53.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.61.0.tgz -> @opentelemetry-instrumentation-mongodb-0.61.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.55.0.tgz -> @opentelemetry-instrumentation-mongoose-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.54.0.tgz -> @opentelemetry-instrumentation-mysql-0.54.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.55.0.tgz -> @opentelemetry-instrumentation-mysql2-0.55.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.61.0.tgz -> @opentelemetry-instrumentation-pg-0.61.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.57.0.tgz -> @opentelemetry-instrumentation-redis-0.57.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.27.0.tgz -> @opentelemetry-instrumentation-tedious-0.27.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.19.0.tgz -> @opentelemetry-instrumentation-undici-0.19.0.tgz - https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.208.0.tgz -> @opentelemetry-instrumentation-0.208.0.tgz - https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz - https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz - https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz - https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz -> @opentelemetry-semantic-conventions-1.38.0.tgz - https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.16.2.tgz -> @oxc-resolver-binding-android-arm-eabi-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.16.2.tgz -> @oxc-resolver-binding-android-arm64-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.16.2.tgz -> @oxc-resolver-binding-darwin-arm64-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.16.2.tgz -> @oxc-resolver-binding-darwin-x64-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.16.2.tgz -> @oxc-resolver-binding-freebsd-x64-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.16.2.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.16.2.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.16.2.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.16.2.tgz -> @oxc-resolver-binding-linux-x64-musl-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.16.2.tgz -> @oxc-resolver-binding-openharmony-arm64-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.16.2.tgz -> @oxc-resolver-binding-wasm32-wasi-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.16.2.tgz - https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.16.2.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.16.2.tgz - https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz - https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz - https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.19.0.tgz -> @prisma-instrumentation-6.19.0.tgz - https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz - https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.29.0.tgz -> @sentry-internal-browser-utils-10.29.0.tgz - https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.29.0.tgz -> @sentry-internal-feedback-10.29.0.tgz - https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.29.0.tgz -> @sentry-internal-replay-canvas-10.29.0.tgz - https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.29.0.tgz -> @sentry-internal-replay-10.29.0.tgz - https://registry.yarnpkg.com/@sentry/browser/-/browser-10.29.0.tgz -> @sentry-browser-10.29.0.tgz - https://registry.yarnpkg.com/@sentry/core/-/core-10.29.0.tgz -> @sentry-core-10.29.0.tgz - https://registry.yarnpkg.com/@sentry/electron/-/electron-7.5.0.tgz -> @sentry-electron-7.5.0.tgz - https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.29.0.tgz -> @sentry-node-core-10.29.0.tgz - https://registry.yarnpkg.com/@sentry/node/-/node-10.29.0.tgz -> @sentry-node-10.29.0.tgz - https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.29.0.tgz -> @sentry-opentelemetry-10.29.0.tgz - https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz - https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz - https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz - https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz - https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz - https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz - https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz - https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.6.1.tgz -> @stylistic-eslint-plugin-5.6.1.tgz - https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz - https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz - https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz - https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz - https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz - https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz - https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz - https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz - https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz - https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz - https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz - https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz - https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz - https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz - https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz - https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz - https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz - https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz - https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz - https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz - https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz - https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz - https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz - https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.7.tgz -> @types-pg-pool-2.0.7.tgz - https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz - https://registry.yarnpkg.com/@types/pg/-/pg-8.16.0.tgz -> @types-pg-8.16.0.tgz - https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz - https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz - https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz - https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz - https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz - https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz - https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.52.0.tgz -> @typescript-eslint-eslint-plugin-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.52.0.tgz -> @typescript-eslint-parser-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.52.0.tgz -> @typescript-eslint-project-service-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.52.0.tgz -> @typescript-eslint-scope-manager-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.52.0.tgz -> @typescript-eslint-tsconfig-utils-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.52.0.tgz -> @typescript-eslint-type-utils-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.0.tgz -> @typescript-eslint-types-8.48.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.52.0.tgz -> @typescript-eslint-types-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.52.0.tgz -> @typescript-eslint-typescript-estree-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.52.0.tgz -> @typescript-eslint-utils-8.52.0.tgz - https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.52.0.tgz -> @typescript-eslint-visitor-keys-8.52.0.tgz - https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz - https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz - https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz - https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz - https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz - https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz - https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz - https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz - https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz - https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz - https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz - https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz - https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz - https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz - https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz - https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz - https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz - https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz - https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz - https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz - https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.4.0.tgz - https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz - https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz - https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz - https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz - https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz - https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz - https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz - https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz - https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz - https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz - https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz - https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz - https://registry.yarnpkg.com/async/-/async-3.2.6.tgz - https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz - https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz - https://registry.yarnpkg.com/atomically/-/atomically-2.0.5.tgz - https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz - https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz - https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz - https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz - https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz - https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz - https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz - https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz - https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz - https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz - https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz - https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz - https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz - https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz - https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz - https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz - https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz - https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz - https://registry.yarnpkg.com/builder-util/-/builder-util-26.3.4.tgz - https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz - https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz - https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz - https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz - https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz - https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz - https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz - https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz - https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz - https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz - https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz - https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz - https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz - https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz - https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz - https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz - https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz - https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz - https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz - https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz - https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz - https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz - https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz - https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz - https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz - https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz - https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz - https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz - https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz - https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz - https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz - https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz - https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz - https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz - https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz - https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz - https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz - https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz - https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz - https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz - https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz - https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz - https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz - https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz - https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz - https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz - https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz - https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz - https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz - https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz - https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz - https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz - https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz - https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz - https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz - https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz - https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz - https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz - https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz - https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz - https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz - https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz - https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz - https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz - https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz - https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz - https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz - https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.4.0.tgz - https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz - https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz - https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz - https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz - https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz - https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz - https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz - https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz - https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz - https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.4.0.tgz - https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.4.0.tgz - https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz - https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.3.4.tgz - https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz - https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz - https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz - https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz - https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz - https://registry.yarnpkg.com/electron/-/electron-39.2.7.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz - https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz - https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz - https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz - https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz - https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz - https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz - https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz - https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz - https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz - https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz - https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz - https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz - https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz - https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz - https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz - https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz - https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz - https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.1.tgz - https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz - https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz - https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz - https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz - https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz - https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz - https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz - https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz - https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz - https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz - https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz - https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz - https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz - https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz - https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz - https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz - https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz - https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz - https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz - https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz - https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz - https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz - https://registry.yarnpkg.com/except/-/except-0.1.3.tgz - https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz - https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz - https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz - https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz - https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz - https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz - https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz - https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz - https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz - https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz - https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz - https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz - https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz - https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz - https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz - https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz - https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz - https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz - https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz - https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz - https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz - https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz - https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz - https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz - https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz - https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz - https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz - https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz - https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz - https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz - https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz - https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz - https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz - https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz - https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz - https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz - https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz - https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz - https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz - https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz - https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz - https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz - https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz - https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz - https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz - https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz - https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz - https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz - https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz - https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz - https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz - https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz - https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz - https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz - https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz - https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz - https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz - https://registry.yarnpkg.com/got/-/got-11.8.6.tgz - https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz - https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz - https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz - https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz - https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz - https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz - https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz - https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz - https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz - https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz - https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz - https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz - https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz - https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz - https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz - https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz - https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz - https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz - https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz - https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz - https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz - https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz - https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz - https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz - https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-2.0.1.tgz - https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz - https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz - https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz - https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz - https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz - https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz - https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz - https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz - https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz - https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz - https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz - https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz - https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz - https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz - https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz - https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz - https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz - https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz - https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz - https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz - https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz - https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz - https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz - https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz - https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz - https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz - https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz - https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz - https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz - https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz - https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz - https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz - https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz - https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz - https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz - https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz - https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz - https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz - https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz - https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz - https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz - https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz - https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz - https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz - https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz - https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz - https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz - https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz - https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz - https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz - https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz - https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz - https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz - https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz - https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz - https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz - https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz - https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz - https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz - https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz - https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz - https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz - https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz - https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz - https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz - https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz - https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz - https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz - https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz - https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz - https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz - https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz - https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz - https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz - https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz - https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz - https://registry.yarnpkg.com/knip/-/knip-5.80.0.tgz - https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz - https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz - https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz - https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz - https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz - https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz - https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz - https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz - https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz - https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz - https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz - https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz - https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz - https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz - https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz - https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz - https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz - https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz - https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz - https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.5.2.tgz - https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz - https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz - https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz - https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz - https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz - https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz - https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz - https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz - https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz - https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz - https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz - https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz - https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz - https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz - https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz - https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz - https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz - https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz - https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz - https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz - https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz - https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz - https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz - https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz - https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz - https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz - https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz - https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz - https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz - https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz - https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz - https://registry.yarnpkg.com/node-abi/-/node-abi-4.24.0.tgz - https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz - https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz - https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz - https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz - https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz - https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz - https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz - https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz - https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz - https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz - https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz - https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz - https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz - https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz - https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz - https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz - https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz - https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz - https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz - https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz - https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz - https://registry.yarnpkg.com/once/-/once-1.4.0.tgz - https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz - https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz - https://registry.yarnpkg.com/open/-/open-7.4.2.tgz - https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz - https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz - https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz - https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.16.2.tgz - https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz - https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz - https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz - https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz - https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz - https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz - https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz - https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz - https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz - https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz - https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz - https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz - https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz - https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz - https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz - https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz - https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz - https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz - https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz - https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz - https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz - https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz - https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz - https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz - https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz - https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz - https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz - https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz - https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz - https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz - https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz - https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz - https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz - https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz - https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz - https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz - https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz - https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.1.tgz - https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz - https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz - https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz - https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz - https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz - https://registry.yarnpkg.com/prettier/-/prettier-3.7.4.tgz - https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz - https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz - https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz - https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz - https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz - https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz - https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz - https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz - https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz - https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz - https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz - https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz - https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz - https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz - https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz - https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz - https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz - https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz - https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz - https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz - https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz - https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz - https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz - https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz - https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz - https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz - https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz - https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz - https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz - https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz - https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz - https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz - https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz - https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz - https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz - https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz - https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz - https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz - https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz - https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz - https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz - https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz - https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz - https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz - https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz - https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz - https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz - https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz - https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz - https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz - https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz - https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz - https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz - https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz - https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz - https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz - https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz - https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz - https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz - https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz - https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz - https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz - https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz - https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz - https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz - https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz - https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz - https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz - https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz - https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz - https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz - https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz - https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz - https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz - https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz - https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.6.0.tgz - https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz - https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz - https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz - https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz - https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz - https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz - https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz - https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz - https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz - https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz - https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz - https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz - https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz - https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz - https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz - https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz - https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz - https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz - https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz - https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz - https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz - https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz - https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz - https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz - https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz - https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz - https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz - https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz - https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz - https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-2.0.0.tgz - https://registry.yarnpkg.com/stubborn-utils/-/stubborn-utils-1.0.2.tgz - https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz - https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz - https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz - https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz - https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz - https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz - https://registry.yarnpkg.com/tar/-/tar-7.5.3.tgz - https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz - https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz - https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz - https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz - https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz - https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz - https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz - https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz - https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz - https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz - https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz - https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz - https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz - https://registry.yarnpkg.com/tsx/-/tsx-4.21.0.tgz - https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz - https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz - https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz - https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz - https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz - https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz - https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz - https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz - https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz - https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz - https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz - https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz - https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz - https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz - https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz - https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz - https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz - https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz - https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz - https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz - https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz - https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz - https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz - https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz - https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz - https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz - https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz - https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz - https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz - https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz - https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz - https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz - https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz - https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz - https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz - https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.5.tgz - https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz - https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz - https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz - https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz - https://registry.yarnpkg.com/which/-/which-2.0.2.tgz - https://registry.yarnpkg.com/which/-/which-5.0.0.tgz - https://registry.yarnpkg.com/which/-/which-6.0.0.tgz - https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz - https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz - https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz - https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz - https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz - https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz - https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz - https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz - https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz - https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz - https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz - https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz - https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz - https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz - https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz - https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz - https://registry.yarnpkg.com/zod/-/zod-4.3.5.tgz -) " - -REPO="https://github.com/vector-im/element-desktop" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-36 electron-37 electron-40 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" build-online" - KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-36? ( dev-util/electron:36 ) - electron-37? ( dev-util/electron:37 ) - electron-40? ( dev-util/electron:40 ) - !electron-36? ( - !electron-37? ( - !electron-40? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs - sys-apps/yarn -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-36; then - export ELECTRON_SLOT=36 - elif use electron-37; then - export ELECTRON_SLOT=37 - elif use electron-40; then - export ELECTRON_SLOT=40 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/${P}.tar.gz" ]; then - unpack "${P}".tar.gz || die - else - git-r3_src_unpack - fi - else - unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # OLD_PATH=$PATH - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - PATH="${S}/node_modules/.bin:$PATH"; - export PATH - export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - yarn config set disable-self-update-check true || die - yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # #! Until electron-builder >=22.11.5 - # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' package.json || die - - if ! use build-online; then - ONLINE_OFFLINE="--offline --frozen-lockfile" - yarn config set yarn-offline-mirror "${DISTDIR}" || die - fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' package.json || die - - einfo "Installing node_modules" - node /usr/bin/yarn install ${ONLINE_OFFLINE} --no-progress || die - - node node_modules/.bin/tsc || die - node node_modules/.bin/tsx scripts/copy-res.ts || die - - if use native-modules - then - node /usr/bin/yarn run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json yarn.lock ${distdir} || die - pushd ${distdir} &> /dev/null || die - node /usr/bin/yarn install ${ONLINE_OFFLINE} --production \ - --no-progress --frozen-lockfile || die - popd &> /dev/null || die - rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} -} - -src_install() { - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/element-desktop-9999.ebuild b/net-im/element-desktop/element-desktop-9999.ebuild deleted file mode 100644 index 0fad77b61348..000000000000 --- a/net-im/element-desktop/element-desktop-9999.ebuild +++ /dev/null @@ -1,227 +0,0 @@ -# Copyright 2009-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit desktop flag-o-matic multilib python-any-r1 xdg-utils - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io/" -LICENSE="Apache-2.0" -SLOT="0" -SRC_URI="" -REPO="https://github.com/element-hq/element-web" -ELECTRON_SLOT_DEFAULT="39" -#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" -IUSE="electron-40 electron-41 electron-42 native-modules" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="${REPO}.git" - EGIT_BRANCH="develop" - DOWNLOAD="" - IUSE+=" +build-online" -else - IUSE+=" +build-online" - # KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - DOWNLOAD="${REPO}/archive/" - if [ -z "$ELEMENT_COMMIT_ID" ] - then - DOWNLOAD+="v${PV}.tar.gz -> element-web-${PV}.tar.gz" - S="${WORKDIR}/element-web-${PV}" - else - DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> element-web-${ELEMENT_COMMIT_ID}.tar.gz" - S="${WORKDIR}/element-web-${ELEMENT_COMMIT_ID}" - fi -fi - -SRC_URI+="${DOWNLOAD}" - -RESTRICT="mirror build-online? ( network-sandbox )" -REQUIRED_USE=" - native-modules? ( build-online ) -" - -COMMON_DEPEND=" - ~net-im/element-web-${PV} - native-modules? ( dev-db/sqlcipher ) - electron-40? ( dev-util/electron:40 ) - electron-41? ( dev-util/electron:41 ) - electron-42? ( dev-util/electron:42 ) - !electron-40? ( - !electron-41? ( - !electron-42? ( - dev-util/electron:${ELECTRON_SLOT_DEFAULT} - ) ) ) -" - -RDEPEND="${COMMON_DEPEND} -" -DEPEND="${COMMON_DEPEND} -" - -BDEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) - net-libs/nodejs[corepack] -" - -python_check_deps() { - python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" -} - -#TODO: net-im/element-web -> runtime/buildtime dep - -src_unpack() { - if use electron-41; then - export ELECTRON_SLOT=41 - elif use electron-40; then - export ELECTRON_SLOT=40 - elif use electron-42; then - export ELECTRON_SLOT=42 - else - export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT - fi - if [ -z "$ELEMENT_COMMIT_ID" ] - then - if [ -f "${DISTDIR}/element-web-${PV}.tar.gz" ]; then - unpack "element-web-${PV}.tar.gz" || die - else - git-r3_src_unpack - fi - else - unpack "element-web-${ELEMENT_COMMIT_ID}.tar.gz" || die - fi -} - -src_compile() { - # # OLD_PATH=$PATH - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" - # PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" - # PATH="${S}/node_modules/.bin:$PATH"; - # export PATH - # export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - # export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" - export ELECTRON_SKIP_BINARY_DOWNLOAD=1 - # yarn config set disable-self-update-check true || die - # yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die - # # #! Until electron-builder >=22.11.5 - # # yarn config set ignore-engines true || die - - sed -i 's/electron-builder install-app-deps/true/' apps/desktop/package.json || die - - # if ! use build-online; then - # ONLINE_OFFLINE="--offline --frozen-lockfile" - # yarn config set yarn-offline-mirror "${DISTDIR}" || die - # fi - - einfo "Removing playwright from dependencies" - sed -i '/playwright":/d' apps/desktop/package.json || die - - einfo "Installing node_modules" - pnpm install || die - - cd apps/desktop - pnpm run build:ts || die - pnpm run build:res || die - - if use native-modules - then - pnpm run build:native || die - fi - - # # Electron-Builder doesn't support ppc64 due to using precompiled binaries - # if ! use ppc64; then - # einfo "Editing ElectronFramework.js" - # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ - # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die - - # #!Error: With electron's node: "Unknown argument" electron/electron#25379 - # #!Error: With electron's node: "Invalid package app.asar" - # /usr/bin/node node_modules/.bin/electron-builder --dir || die - # else - einfo "Manually preparing app.asar" - local distdir="dist/linux-unpacked/resources" - mkdir -p ${distdir}/node_modules || die - cp -r lib ${distdir} || die - # Copying yarn.lock allows freezing versions to the build versions - cp package.json ${distdir} || die - pushd ${distdir} &> /dev/null || die - pnpm install || die - popd &> /dev/null || die - # rm ${distdir}/yarn.lock || die - if use native-modules; then - cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die - fi - - einfo "Creating archive" - /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ - --unpack-dir '{**/Release,**/matrix-seshat}' || die - # Remove unarchived copies of files (they are still in app.asar) - rm -r ${distdir}/node_modules || die - rm -r ${distdir}/lib || die - - cp -r build ${distdir} || die - # fi - - #cp -r /usr/share/element-web webapp - #rm -f webapp/config.json - #cp -f /etc/element-web/config.json webapp/config.json - #node node_modules/.bin/asar p webapp webapp.asar - #node node_modules/.bin/asar l webapp.asar - - # export PATH=${OLD_PATH} - - #! Fail CI - if [ ! -z "${NODIE}" ]; then - die - fi -} - -src_install() { - cd apps/desktop - - insinto "/usr/$(get_libdir)/element-desktop" - - doins -r dist/linux-unpacked/resources/* - dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp - - exeinto "/usr/$(get_libdir)/element-desktop" - cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop - sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop - - echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ -/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop - doexe dist/linux-unpacked/resources/element-desktop - dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - - # # Install icons - # local branding size - # for size in 16 24 48 64 96 128 256 512 ; do - # newicon -s ${size} "build/icons/${size}x${size}.png" \ - # element-desktop.png - # done - - newicon build/icon.png element-desktop.png - - make_desktop_entry "/usr/bin/element-desktop" Element \ - "element-desktop" "Network;Chat" -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-im/element-desktop/files/read_flags_file b/net-im/element-desktop/files/read_flags_file deleted file mode 100644 index 3c618689ec57..000000000000 --- a/net-im/element-desktop/files/read_flags_file +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env sh - -name=@ELECTRON@ -flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/${name}-flags.conf" - -declare -a flags - -if [[ -f "${flags_file}" ]]; then - mapfile -t < "${flags_file}" -fi - -for line in "${MAPFILE[@]}"; do - if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then - flags+=("${line}") - fi -done diff --git a/net-im/element-desktop/metadata.xml b/net-im/element-desktop/metadata.xml index eae7fcb97134..9c6d65a815cf 100644 --- a/net-im/element-desktop/metadata.xml +++ b/net-im/element-desktop/metadata.xml @@ -2,38 +2,15 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>PF4Public@users.noreply.github.com</email> + <email>filip@kszczot.pl</email> + <name>Filip Kszczot</name> </maintainer> - <longdescription>A glossy Matrix collaboration client for desktop</longdescription> <upstream> <remote-id type="cpe">cpe:/a:matrix:element</remote-id> + <bugs-to>https://github.com/element-hq/element-web/issues</bugs-to> </upstream> <use> - <flag name="build-online">Disable network-sandbox and open Pandora's box!</flag> - <flag name="electron-19">Build against electron-19 instead of the default one</flag> - <flag name="electron-20">Build against electron-20 instead of the default one</flag> - <flag name="electron-21">Build against electron-21 instead of the default one</flag> - <flag name="electron-22">Build against electron-22 instead of the default one</flag> - <flag name="electron-23">Build against electron-23 instead of the default one</flag> - <flag name="electron-24">Build against electron-24 instead of the default one</flag> - <flag name="electron-25">Build against electron-25 instead of the default one</flag> - <flag name="electron-26">Build against electron-26 instead of the default one</flag> - <flag name="electron-27">Build against electron-27 instead of the default one</flag> - <flag name="electron-28">Build against electron-28 instead of the default one</flag> - <flag name="electron-29">Build against electron-29 instead of the default one</flag> - <flag name="electron-30">Build against electron-30 instead of the default one</flag> - <flag name="electron-31">Build against electron-31 instead of the default one</flag> - <flag name="electron-32">Build against electron-32 instead of the default one</flag> - <flag name="electron-33">Build against electron-33 instead of the default one</flag> - <flag name="electron-34">Build against electron-34 instead of the default one</flag> - <flag name="electron-35">Build against electron-35 instead of the default one</flag> - <flag name="electron-36">Build against electron-36 instead of the default one</flag> - <flag name="electron-37">Build against electron-37 instead of the default one</flag> - <flag name="electron-39">Build against electron-39 instead of the default one</flag> - <flag name="electron-40">Build against electron-40 instead of the default one</flag> - <flag name="electron-41">Build against electron-41 instead of the default one</flag> - <flag name="electron-42">Build against electron-42 instead of the default one</flag> - <flag name="native-modules">Build native modules (for searching in encrypted rooms and secure storage)</flag> + <flag name="emoji">Use <pkg>media-fonts/noto-emoji</pkg> for displaying emoji</flag> </use> - <origin>pf4public-overlay</origin> + <origin>gentoo-guru-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/net-im/synapse/synapse-1.150.0.ebuild b/net-im/synapse/synapse-1.150.0.ebuild index 9797be460182..bbef92967253 100644 --- a/net-im/synapse/synapse-1.150.0.ebuild +++ b/net-im/synapse/synapse-1.150.0.ebuild @@ -226,7 +226,7 @@ LICENSE+=" Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT Unicode-3.0 " SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64" +KEYWORDS="amd64 ~arm64 ~ppc64" IUSE="postgres selinux systemd test" RESTRICT="!test? ( test )" diff --git a/net-im/zoom/metadata.xml b/net-im/zoom/metadata.xml index 03f7490a540f..141996ed3a3d 100644 --- a/net-im/zoom/metadata.xml +++ b/net-im/zoom/metadata.xml @@ -2,9 +2,6 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>ulm@gentoo.org</email> - </maintainer> - <maintainer type="person"> <email>dilfridge@gentoo.org</email> </maintainer> <upstream> diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest index 16780978aa3d..5a74bbdc9a9b 100644 --- a/net-libs/gnutls/Manifest +++ b/net-libs/gnutls/Manifest @@ -2,3 +2,5 @@ DIST gnutls-3.8.11.tar.xz 6939944 BLAKE2B 54ec3fb396187294ae59c65fa92a515175d8ab DIST gnutls-3.8.11.tar.xz.sig 566 BLAKE2B 411c166ae5daf58ec325a1f2b528cb40decff01bc78e30346394d7b9c88189b0c93891208045beac8d5e3f701e918b5a5bcf0914700396f391d024ff16266e5f SHA512 90883e5736299b103844ca42b85d371969ef66b50b60cb185e814ad9978598796e9ed07a590245ff28ac6ac084b1dee93fae0845576464583a5941835990957d DIST gnutls-3.8.12.tar.xz 6949604 BLAKE2B ff326dddce464b366ab6e892b812a2e38b5ebd57b35627ce265e4eb3e5930e30fda82e584ec01339ef61a8a7704f5c772f13110046559537f3b667484054f728 SHA512 332a8e5200461517c7f08515e3aaab0bec6222747422e33e9e7d25d35613e3d0695a803fce226bd6a83f723054f551328bd99dcf0573e142be777dcf358e1a3b DIST gnutls-3.8.12.tar.xz.sig 685 BLAKE2B d917f17dbdb344d504c6b68c2608b648d76e31663462e15646d9a678bac2aad8004173dbcb041215a34a9f2d10ed3784f49a6258be313aa8f8e4e8ab045b0703 SHA512 2774d809aae857fe9752c385d95864e834af55ac71ecd56cc1e914095e09641c20babb8082afa53fb6a350daf4f4b510e2eae1548529c5e248d91708f14bf8aa +DIST gnutls-3.8.13.tar.xz 7275324 BLAKE2B 80677a45a7c6f892287020e3e6b0add2432f2c64a4c9a649ce889921ac65b44931504ad0682ccc12e4b6d8f94c1a72e35c50673c9d04bd4e327063b812339380 SHA512 71bf189a836fd18d58b9e995d4bfcecdb0aae6129dfd44247b98422b2f127dd868f9905d28fad2ca05afd919a0e6b3c8eebb6b95804067d3a8dab31ebdc72453 +DIST gnutls-3.8.13.tar.xz.sig 685 BLAKE2B 491724c9cc7afcd62cadb1412504d29075e62e83c0988e0a4e16573e3f3ea3e2e6374fb4477a49677e2d1982fdb3f33e41b34012bcea47744e180718ce8e6df8 SHA512 190a219f7c452049c668b1f8b2d4ed5fb932625a257e19f28f7a1160d16e6add092dbb5a2fa3ad773a78e0ffdbac22087eedff26d2762713e1beb158d23967c1 diff --git a/net-libs/gnutls/gnutls-3.8.13.ebuild b/net-libs/gnutls/gnutls-3.8.13.ebuild new file mode 100644 index 000000000000..cd1722f60f2b --- /dev/null +++ b/net-libs/gnutls/gnutls-3.8.13.ebuild @@ -0,0 +1,167 @@ +# 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/gnutls.asc +inherit libtool multilib-minimal verify-sig + +DESCRIPTION="Secure communications library implementing the SSL, TLS and DTLS protocols" +HOMEPAGE="https://www.gnutls.org/" +SRC_URI="mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz" +SRC_URI+=" verify-sig? ( mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz.sig )" + +LICENSE="GPL-3 LGPL-2.1+" +# As of 3.8.0, the C++ library is header-only, but we won't drop the subslot +# component for it until libgnutls.so breaks ABI, to avoid pointless rebuilds. +# Subslot format: +# <libgnutls.so number>.<libgnutlsxx.so number> +SLOT="0/30.30" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~m68k ~riscv ~s390 ~sparc ~x86" +IUSE="brotli +cxx dane doc examples +idn nls +openssl pkcs11 +post-quantum sslv2 sslv3" +IUSE+=" systemtap static-libs test test-full +tls-heartbeat tools zlib zstd" +REQUIRED_USE="test-full? ( cxx dane doc examples idn nls openssl pkcs11 tls-heartbeat tools )" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/libtasn1-4.9:=[${MULTILIB_USEDEP}] + dev-libs/libunistring:=[${MULTILIB_USEDEP}] + >=dev-libs/nettle-3.10:=[gmp,${MULTILIB_USEDEP}] + >=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}] + brotli? ( >=app-arch/brotli-1.0.0:=[${MULTILIB_USEDEP}] ) + dane? ( >=net-dns/unbound-1.4.20:=[${MULTILIB_USEDEP}] ) + nls? ( >=virtual/libintl-0-r1:=[${MULTILIB_USEDEP}] ) + pkcs11? ( >=app-crypt/p11-kit-0.23.1[${MULTILIB_USEDEP}] ) + post-quantum? ( >=dev-libs/leancrypto-1.2.0:=[${MULTILIB_USEDEP}] ) + idn? ( >=net-dns/libidn2-0.16-r1:=[${MULTILIB_USEDEP}] ) + zlib? ( virtual/zlib:=[${MULTILIB_USEDEP}] ) + zstd? ( >=app-arch/zstd-1.3.0:=[${MULTILIB_USEDEP}] ) +" +DEPEND=" + ${RDEPEND} + test-full? ( sys-libs/libseccomp ) + systemtap? ( dev-debug/systemtap ) +" +BDEPEND=" + dev-build/gtk-doc-am + app-arch/brotli + >=virtual/pkgconfig-0-r1 + doc? ( dev-util/gtk-doc ) + nls? ( sys-devel/gettext ) + test-full? ( + app-crypt/dieharder + || ( sys-libs/libfaketime >=app-misc/datefudge-1.22 ) + dev-libs/softhsm:2[-bindist(-)] + net-dialup/ppp + net-misc/socat + ) + verify-sig? ( >=sec-keys/openpgp-keys-gnutls-20240415 ) +" + +DOCS=( README.md doc/certtool.cfg ) + +HTML_DOCS=() + +QA_CONFIG_IMPL_DECL_SKIP=( + # gnulib FPs + MIN + alignof + static_assert +) + +src_prepare() { + default + + # bug #520818 + export TZ=UTC + + use doc && HTML_DOCS+=( doc/gnutls.html ) + + # don't try to use system certificate store on macOS, it is + # confusingly ignoring our ca-certificates and more importantly + # fails to compile in certain configurations + sed -i -e 's/__APPLE__/__NO_APPLE__/' lib/system/certs.c || die + + # Fails with some combinations of USE="brotli zlib zstd" + # https://gitlab.com/gnutls/gnutls/-/issues/1721 + # https://gitlab.com/gnutls/gnutls/-/merge_requests/1980 + cat <<-EOF > tests/system-override-compress-cert.sh || die + #!/bin/sh + exit 77 + EOF + chmod +x tests/system-override-compress-cert.sh || die + + elibtoolize +} + +multilib_src_configure() { + LINGUAS="${LINGUAS//en/en@boldquot en@quot}" + + local libconf=() + + # TPM needs to be tested before being enabled + # Note that this may add a libltdl dep when enabled. Check configure.ac. + libconf+=( + --without-tpm + --without-tpm2 + ) + + # hardware-accel is disabled on OSX because the asm files force + # GNU-stack (as doesn't support that) and when that's removed ld + # complains about duplicate symbols + [[ ${CHOST} == *-darwin* ]] && libconf+=( --disable-hardware-acceleration ) + + # -fanalyzer substantially slows down the build and isn't useful for + # us. It's useful for upstream as it's static analysis, but it's not + # useful when just getting something built. + export gl_cv_warn_c__fanalyzer=no + + local myeconfargs=( + --disable-valgrind-tests + $(multilib_native_enable manpages) + $(multilib_native_use_enable doc gtk-doc) + $(multilib_native_use_enable doc) + $(multilib_native_use_enable test tests) + $(multilib_native_use_enable test-full full-test-suite) + $(multilib_native_use_enable test-full seccomp-tests) + $(multilib_native_use_enable tools) + $(use_enable cxx) + $(use_enable dane libdane) + $(use_enable nls) + $(use_enable openssl openssl-compatibility) + $(use_enable sslv2 ssl2-support) + $(use_enable sslv3 ssl3-support) + $(use_enable static-libs static) + $(use_enable systemtap crypto-auditing) + $(use_enable tls-heartbeat heartbeat-support) + $(use_with brotli '' link) + $(use_with idn) + $(use_with pkcs11 p11-kit) + $(use_with post-quantum leancrypto) + $(use_with zlib '' link) + $(use_with zstd '' link) + --disable-rpath + --with-default-trust-store-file="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt + --with-unbound-root-key-file="${EPREFIX}"/etc/dnssec/root-anchors.txt + --without-included-libtasn1 + $("${S}/configure" --help | grep -o -- '--without-.*-prefix') + ) + + ECONF_SOURCE="${S}" econf "${libconf[@]}" "${myeconfargs[@]}" + + if [[ ${CHOST} == *-solaris* ]] ; then + # gnulib ends up defining its own pthread_mutexattr_gettype + # otherwise, which is causing versioning problems + echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >> config.h || die + fi +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -type f -name '*.la' -delete || die + + if use examples; then + docinto examples + dodoc doc/examples/*.c + fi +} diff --git a/net-libs/libupnp/Manifest b/net-libs/libupnp/Manifest index e43951a93ce0..7fd21ef710f7 100644 --- a/net-libs/libupnp/Manifest +++ b/net-libs/libupnp/Manifest @@ -1,4 +1,5 @@ DIST libupnp-1.14.24.tar.gz 820880 BLAKE2B a8b6a9a39a2b4f4e85af09eb8950a39fa51e9fb3199652ade580ec07a73e4d6c7ff7f9d4de4059c1032a581926187a181b1083cb7c6fc0c907ca43e695c1ee33 SHA512 0ec4d2af846e1f85be6e5142540ed5f61c65cfc1dc6a30668c94cbced615d53abb126699c6ee557646dd30f47a9f29ff2554d6a4345f7cbf8f0a998dc9df3048 DIST libupnp-1.14.25.tar.gz 821381 BLAKE2B e502dbc8e57030e807e5f92a6bea41bab696d4fcc5259ce5ba4d130f9f88d56f77300757c988aecb913547a21cf1382791c72801aa26c64aaf71cbc32199f74a SHA512 2aed5c72cb8e33b89d85e6755b99e7bd4e82ffb58d03ef58c2cdd790d4dc6c33b3a9f91168595930be53f0bb803e266e2bb02ea5fcc5cda8edada9453bf56492 DIST libupnp-1.14.30.tar.gz 824654 BLAKE2B 93b42d5793f68a1d54b162af3e8e6701e3e72435bf07a0ca839413fd8fd816175764fb799dc95666e30c5c539aa2835cb330b3be4b189d70d5cde4aa22e73de2 SHA512 0a773131fe076e3b2d48c2ea961e569498b7599419ae78ecc8a9499e5cac690c1283f072bb19be53a2a10ec4329467d7aa4df46c296114a4c809b2dc9f9cedf3 -DIST libupnp-1.18.4.tar.gz 831832 BLAKE2B 9739c64e1511d9aa4573d050cbd26979f485a27a5991cd36c162e53ad73e10b0caa7b342593d5e7dcb06d209a6e1060427dd74c96a863ea2cbf6042926daf2b0 SHA512 ace788d403ee18bdce8ad078121fc375c8f2f737dad763c1db26ff44c53f065b7c16188f86522f08a55fbc2deb225d1f1858f64b21eef07868afc83eb484a50f +DIST libupnp-1.14.31.tar.gz 826590 BLAKE2B 2fcfcd00aab5e97821ad40125071d6c5354cfce63ff59a88783a1bed17658d71566a4834615826b37a681cc3f6ac26d9324f6202c824849e5399ca81e58f7b3a SHA512 be0f876adb7a0799187531cc83a29afd5bfe8f7772e909f88faf406e344f992ccb07ef410f7511766576bde8128478926e33cebfcfa8ed1ba15fe136e0bfc8c7 +DIST libupnp-1.18.5.tar.gz 833624 BLAKE2B d4e94020f3e01e55eccdca089ede45715c812653120122d627daa0270b84f30329c9bcf5fc9ab0a66fdd83886fdf8f0768a10edd78abf514f7a6af1ac459bdb6 SHA512 a4ffb5977d9e103f8ce3ed8f9dec6a336424258c9541ae38790accaa35cd7bf92165cded285ce30f57c7aa5e03f05f0a639d846436b460800ee5e5fcb4d2d7c8 diff --git a/net-libs/libupnp/files/libupnp-1.14.31-disable-network-tests.patch b/net-libs/libupnp/files/libupnp-1.14.31-disable-network-tests.patch new file mode 100644 index 000000000000..c24fdda4060e --- /dev/null +++ b/net-libs/libupnp/files/libupnp-1.14.31-disable-network-tests.patch @@ -0,0 +1,13 @@ +--- a/upnp/Makefile.am ++++ b/upnp/Makefile.am +@@ -197,8 +197,8 @@ + endif + + # check / distcheck tests +-check_PROGRAMS = test_init test_url test_log test_list test_parse_uri +-TESTS = test_init test_url test_log test_list test_parse_uri ++check_PROGRAMS = test_log test_list ++TESTS = test_log test_list + test_init_SOURCES = test/test_init.c + test_url_SOURCES = test/test_url.c + test_log_SOURCES = test/test_log.c diff --git a/net-libs/libupnp/libupnp-1.14.31.ebuild b/net-libs/libupnp/libupnp-1.14.31.ebuild new file mode 100644 index 000000000000..ca133b5f6481 --- /dev/null +++ b/net-libs/libupnp/libupnp-1.14.31.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +MY_PN="pupnp" + +DESCRIPTION="An Portable Open Source UPnP Development Kit" +HOMEPAGE="http://pupnp.sourceforge.net/" +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-release-${PV}" + +LICENSE="BSD" +SLOT="0/17" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="blocking-tcp debug doc +reuseaddr samples +ssl static-libs" + +RDEPEND="ssl? ( dev-libs/openssl:0= )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}/${PN}-1.14.31-disable-network-tests.patch" ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable blocking-tcp blocking-tcp-connections) + $(use_enable debug) + --enable-ipv6 + $(use_enable reuseaddr) + $(use_enable samples) + $(use_enable ssl open_ssl) + $(use_enable static-libs static) + ) + + econf ${myeconfargs[@]} +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +} diff --git a/net-libs/libupnp/libupnp-1.18.4.ebuild b/net-libs/libupnp/libupnp-1.18.5.ebuild index f9ee3ea1090e..3c5f6d94aadb 100644 --- a/net-libs/libupnp/libupnp-1.18.4.ebuild +++ b/net-libs/libupnp/libupnp-1.18.5.ebuild @@ -21,7 +21,7 @@ RDEPEND="ssl? ( dev-libs/openssl:0= )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -PATCHES=( "${FILESDIR}/${PN}-1.14.12-disable-network-tests.patch" ) +PATCHES=( "${FILESDIR}/${PN}-1.14.31-disable-network-tests.patch" ) src_prepare() { default diff --git a/net-misc/frr/Manifest b/net-misc/frr/Manifest index 9247636953cf..378eab512f62 100644 --- a/net-misc/frr/Manifest +++ b/net-misc/frr/Manifest @@ -1,12 +1,13 @@ DIST frr-10.1.3.tar.gz 11054898 BLAKE2B d0315061fddd2fb7d44cc9fd58044203a54778f716a341e3b73f15427f17ac73aaab0887d5d805f2d80c26688e4b49445467e8007d35d1f0aca785e296a2a181 SHA512 90dc1be0ef975b55e4e4442106543ed38b0f51b30dc250a619639d7e37de339801728672ced4f7b197141921b22ad86471a5a2422421daacd6e53f04e1de5179 DIST frr-10.1.4.tar.gz 11052999 BLAKE2B ea887de27ef8878158de6922ea694c763911e68e2b9a80ab6517d9b55bd717c06f1f9fbe1706b1fecbd1fc55cd69f68171371fd6cd69fdffd271bb8003811b4b SHA512 c19ebec84eca93b19ec1722e99abe8188aa159ae6b3d298199aac42da7327f07002d2ddd01f88f12ae37347c82a5fa5d1879166a28fa7df9ee0d482c991829d7 -DIST frr-10.2.2.tar.gz 11184873 BLAKE2B 610060a8dd352085e084b8d5d367b357a0432525a296af5be2c8333f2a00934291c2b0ce1d2cc46e8eaab41e43fdba2374464d6944e9379d2d521b359beb3ac7 SHA512 992e75438ebb0c337eb00c64d6a1097427ce3279c2b3b5b592dbc52d1e7b978776e86dfa5d3a5062bb29b25b6d1f68d8423cd9e5fa93c04cf1207fc362dcf6a2 +DIST frr-10.1.5.tar.gz 11056980 BLAKE2B 601f500637e05fb1a0f86723add22b524a643c2231d2bdd7060cbfe12174cee676b253042d052e759c1b68823d8948fe1985b2d40dd134faf63e387ac69a9ad7 SHA512 e561419763b0f96ece0f6fdc1e4d6b8a2147dd7f1f134e256791802ba176d10a5a67141cc3f6c2c718d4d28c4df869b4d58290a9409142be0345b271c8bad356 DIST frr-10.2.3.tar.gz 11191641 BLAKE2B d1ece2ead664e1e06b4080c48c895ab730b08a6f97f0ab119f0edfb1d04913e5dba64725ba4382dd87622639b0e7f30b22121206a5d28ff175275e1682124051 SHA512 e426499ae02aca87bf33d30917f40b730f80be8b70b4ae69685d9d0b70c1a205730691a434613f7348dc5ae196319a797f33c3872e668905e8d5799bff41da93 DIST frr-10.2.5.tar.gz 11211589 BLAKE2B fb44d197418f7d96e2465fc6f5eedd5014550cc5f215a38ca03a8dc5ccc62794d2e6042f65b5930c1e681060dd59c74858cab78bc53bb38d775dec5ede417c62 SHA512 ac1e8433df84cc0411587856cfa2709ed04cd2628682ccdf7c55de8fa0599c9ddf57b2e01a9df27a6d1b54e1ab2289136e2145516182c67a2835b65780f07b68 DIST frr-10.3.1.tar.gz 11379856 BLAKE2B aeeaa15bcd102ec322672106e1fdd98f2d124ac79514be6ee1ac63648a336519a95b1f1dc5fbee348b92796e6e79e2a9f857b959af5838b2c2b4afb2dc68de0a SHA512 a39ef9995c13f6e5c7fab683a8fce78640c5d40c580ea1978af3af46d393f5da6a2209b49e6609f197a603202943926def035be271b54e79d50b4e68b277c31b DIST frr-10.3.3.tar.gz 11407013 BLAKE2B 51d244073ab54cc4861a7bb3c88931df7ef5d7d5eee139fcb2529e9c3004daaa2ddbad15cecd6a063b70f6f4a4955a12c89f961aafd2738bfc03d7e5c67ea3a6 SHA512 183fab4c767329a67de00e9cd77c4af61d248468218702e25e6a7e4d72fb0a524417dd4ff6c5cbb639a524fd70c8ba0cac3b3f251794bf5dcf5cf21e4297d737 -DIST frr-10.4.1.tar.gz 11564121 BLAKE2B 1270fe6bb82e9e0ea718bab72658ad8b82c936f06f2c5e3686a66f3e9baeedf10e181bbf6c9cd05713194518f7bc6ab561b9baeaf609716fe182240e8abccdce SHA512 c2903e4ddba0ff484872c0378c64dfbe5a92620d62d918c0a1330302d798ad04b7ce81e10f2dc693b37b8d651ad0c76d3f0a2c57db4c5676ff221610173b10c3 +DIST frr-10.3.4.tar.gz 11417283 BLAKE2B fd8fa07ec6c5c637644c7502b7fab5bf9238d613b91e9a0b31f968cec99473012f526dbae064a909fc8be6ee93ac9351bf67b1df8ade3bfb4e41dd14691fa035 SHA512 bd9684a54106c9913497b81d2fdd97b8d1f946024f102a9c6f5ee954aee4cbfea66d053343249b15fd8b679f59568a53d99e844b76aa894c7bb3dc4d3aae07e9 DIST frr-10.4.3.tar.gz 11604274 BLAKE2B acb0a576a49f203a6472bcf2154ca93cdc73466da4669fc6c40cef334a33f1ab9f9fdc982afdb04411441aa470b3f4b3812569fe67f0108c5ed8c11bf7e8b869 SHA512 a02af2804c65996e831b067ba775c5b925d28f7f12ac5ce435c439b9aad874080c6594fcc0013f3895db3c4a1fa6f2cc5934f78103f7331c56e7feb20e2069c2 -DIST frr-10.5.0.tar.gz 11650715 BLAKE2B 2690c6cfa8a44f8a9315cc3ef6920ebed36a793d60bb0aa3b6f3b686c654e940ed453960c67fc811422099ce17c7e0e8b509dd81e8c69a3ec99dee5557eda744 SHA512 b44367c966e7f8337056b269dab301c91db99f954c47b48997443570b210870f87113ca04e84de4483c9a79845d0b8dec1a311b0d22696f542301084bdadc2e8 +DIST frr-10.4.4.tar.gz 11608145 BLAKE2B 9f22016737cc835d3a3dc9770d511504d0a8f43cbe7c2046663fafb4e67266e1a6c0cdcdc2c4e3588565ea47d89f145144f7c5b01ccf091cd61888ada1de225d SHA512 22aea3b97c285930f8ebe3e4916fef9043141a5ee5ffc3f4e88b5dc3f80b537b3a5e930a222db21c424334a0008a8ee9f0434c93faa0c49ecad3f0434e78a86b DIST frr-10.5.3.tar.gz 11681795 BLAKE2B 86575b9c887d7c933f24c97b3f220b422c332817cb0012fb6b14a7888da49b9963be87014197ed3854740aa0058e7a577d42bc4362b5be9e131606e1ca2a1af0 SHA512 0195dff0299be91d4e7ce7c9c0737773d74171a8500f2257c74fcad8388849e955aace5dbcc28b6bb99ba6b4102886941055d7742196628701f5f6996d5f7a9e -DIST frr-10.6.0.tar.gz 11989734 BLAKE2B ed90d54b832cb041cbc0e5bf833472ab2434b0b5fa0dfa89e56da6d6fae6cca272d6419b8004b1861469c4d2aeaee7d2858cfc148ec1d1313f5d41172fe46ead SHA512 e3d81e7f70469ccd1fc9a09da8f0036b9705be680f8d7b655b094540468830f398d0e7b3a458ad32d891b1c34c3a5e952735b66aa4389e5cdf49088b331baf56 +DIST frr-10.5.4.tar.gz 11692283 BLAKE2B 1b28435a6264fa9ff249a974cebad2b544bd6d31c2332247c39e8b884a74e61306ac2f71f14636b80efddddbce0b8a4e64d05909d23d43ad4c4cbad7ed5c2bcb SHA512 69e5c9ca70efa0cfb84cb251b213a2b3bd526ec7b8477f0d269b9463bf9e85338ad7e28c3e0aa2bd2dbe9e6c9fc412b12afcff28898bdbaa2f3a9c420b074f2d +DIST frr-10.6.1.tar.gz 11999229 BLAKE2B 1740464b53ea93e4dfe1e8c7eecfeb062f40d0ea3fcf824a12f66caef4155ee047ec4bf4c4f2defecd5c38bddc9659941763045095cf133fcb48beacd7b2d006 SHA512 c591055fc29c237f16f337835268515685872876e6f6abf82f91226543a22068c4e169904780a7ad08e383a31509b93a14fbfce26170186e64b9af3799e8f271 diff --git a/net-misc/frr/frr-10.2.2.ebuild b/net-misc/frr/frr-10.1.5.ebuild index c97a794af16b..f43afa84c033 100644 --- a/net-misc/frr/frr-10.2.2.ebuild +++ b/net-misc/frr/frr-10.1.5.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/frr-${P}" LICENSE="GPL-2+" SLOT="0/$(ver_cut 1-2)" -KEYWORDS="amd64 ~arm64 ~x86" +KEYWORDS="~amd64 ~arm64 ~x86" IUSE="doc fpm grpc nhrp ospfapi pam rpki snmp test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="!test? ( test )" @@ -53,7 +53,6 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch - "${FILESDIR}"/${PN}-8.4.1-logrotate.patch "${FILESDIR}"/${PN}-9.1-mimic-gnu-basename-api-for-non-glibc.patch "${FILESDIR}"/${PN}-tests-abs_srcdir.patch "${FILESDIR}"/${PN}-tests-grpc.patch @@ -134,14 +133,14 @@ src_install() { # Install logrotate configuration insinto /etc/logrotate.d - newins redhat/frr.logrotate frr + newins "${FILESDIR}/logrotate-v1" frr # Install PAM configuration file use pam && newpamd "${FILESDIR}"/frr.pam frr # Install init scripts systemd_dounit tools/frr.service - newinitd "${FILESDIR}"/frr-openrc-v2 frr + newinitd "${FILESDIR}"/frr-openrc-v4 frr # Conflict files, installed by net-libs/libsmi, bug #758383 # Files from frr seems to be newer. diff --git a/net-misc/frr/frr-10.5.0.ebuild b/net-misc/frr/frr-10.3.4.ebuild index 48f6f4215229..0d81c3cf7a01 100644 --- a/net-misc/frr/frr-10.5.0.ebuild +++ b/net-misc/frr/frr-10.3.4.ebuild @@ -55,7 +55,6 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch - "${FILESDIR}"/${PN}-8.4.1-logrotate.patch "${FILESDIR}"/${PN}-9.1-mimic-gnu-basename-api-for-non-glibc.patch "${FILESDIR}"/${PN}-tests-abs_srcdir.patch "${FILESDIR}"/${PN}-tests-grpc.patch @@ -136,14 +135,14 @@ my_src_install() { # Install logrotate configuration insinto /etc/logrotate.d - newins "${S}"/redhat/frr.logrotate frr + newins "${FILESDIR}/logrotate-v1" frr # Install PAM configuration file use pam && newpamd "${FILESDIR}"/frr.pam frr # Install init scripts systemd_dounit tools/frr.service - newinitd "${FILESDIR}"/frr-openrc-v2 frr + newinitd "${FILESDIR}/frr-openrc-v4" frr # Conflict files, installed by net-libs/libsmi, bug #758383 # Files from frr seems to be newer. diff --git a/net-misc/frr/frr-10.6.0-r1.ebuild b/net-misc/frr/frr-10.4.4.ebuild index b066d0005c6d..b066d0005c6d 100644 --- a/net-misc/frr/frr-10.6.0-r1.ebuild +++ b/net-misc/frr/frr-10.4.4.ebuild diff --git a/net-misc/frr/frr-10.4.1.ebuild b/net-misc/frr/frr-10.5.4.ebuild index 48f6f4215229..b066d0005c6d 100644 --- a/net-misc/frr/frr-10.4.1.ebuild +++ b/net-misc/frr/frr-10.5.4.ebuild @@ -55,7 +55,6 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch - "${FILESDIR}"/${PN}-8.4.1-logrotate.patch "${FILESDIR}"/${PN}-9.1-mimic-gnu-basename-api-for-non-glibc.patch "${FILESDIR}"/${PN}-tests-abs_srcdir.patch "${FILESDIR}"/${PN}-tests-grpc.patch @@ -136,14 +135,14 @@ my_src_install() { # Install logrotate configuration insinto /etc/logrotate.d - newins "${S}"/redhat/frr.logrotate frr + newins "${FILESDIR}/logrotate-v1" frr # Install PAM configuration file use pam && newpamd "${FILESDIR}"/frr.pam frr # Install init scripts systemd_dounit tools/frr.service - newinitd "${FILESDIR}"/frr-openrc-v2 frr + newinitd "${FILESDIR}"/frr-openrc-v4 frr # Conflict files, installed by net-libs/libsmi, bug #758383 # Files from frr seems to be newer. diff --git a/net-misc/frr/frr-10.6.1.ebuild b/net-misc/frr/frr-10.6.1.ebuild new file mode 100644 index 000000000000..b066d0005c6d --- /dev/null +++ b/net-misc/frr/frr-10.6.1.ebuild @@ -0,0 +1,153 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) +inherit out-of-source autotools pam python-single-r1 systemd + +DESCRIPTION="The FRRouting Protocol Suite" +HOMEPAGE="https://frrouting.org/" +SRC_URI="https://github.com/FRRouting/frr/archive/${P}.tar.gz" +# FRR tarballs have weird format. +S="${WORKDIR}/frr-${P}" + +LICENSE="GPL-2+" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="doc fpm grpc nhrp ospfapi pam rpki snmp test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + acct-user/frr + dev-libs/json-c:0= + dev-libs/protobuf-c:0= + >=net-libs/libyang-2.1.128 + sys-libs/libcap + sys-libs/readline:0= + virtual/libcrypt:= + grpc? ( net-libs/grpc:= ) + nhrp? ( net-dns/c-ares:0= ) + pam? ( sys-libs/pam ) + rpki? ( >=net-libs/rtrlib-0.8.0[ssh] ) + snmp? ( net-analyzer/net-snmp:= ) +" +BDEPEND=" + sys-devel/flex + app-alternatives/yacc + dev-libs/elfutils + doc? ( dev-python/sphinx ) + grpc? ( sys-apps/which ) +" +DEPEND=" + ${COMMON_DEPEND} + elibc_musl? ( sys-libs/queue-standalone ) + test? ( + $(python_gen_cond_dep 'dev-python/pytest[${PYTHON_USEDEP}]') + dev-util/cunit + ) +" +RDEPEND=" + ${COMMON_DEPEND} +" + +PATCHES=( + "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch + "${FILESDIR}"/${PN}-9.1-mimic-gnu-basename-api-for-non-glibc.patch + "${FILESDIR}"/${PN}-tests-abs_srcdir.patch + "${FILESDIR}"/${PN}-tests-grpc.patch +) + +QA_CONFIG_IMPL_DECL_SKIP=( + mallinfo # No functional impact. + mallinfo2 +) + +src_prepare() { + default + + python_fix_shebang tools + eautoreconf +} + +my_src_configure() { + local myconf=( + ac_cv_prog_VALGRIND_CHECK=no + LEX=flex + --with-pkg-extra-version="-gentoo" + --enable-configfile-mask=0640 + --enable-logfile-mask=0640 + --libdir="${EPREFIX}"/usr/lib/frr + --sbindir="${EPREFIX}"/usr/lib/frr + --libexecdir="${EPREFIX}"/usr/lib/frr + --sysconfdir="${EPREFIX}"/etc/frr + --localstatedir="${EPREFIX}"/run/frr + --with-moduledir="${EPREFIX}"/usr/lib/frr/modules + --enable-user=frr + --enable-group=frr + --enable-vty-group=frr + --enable-multipath=64 + $(use_enable doc) + $(use_enable fpm) + $(use_enable grpc) + $(use_enable kernel_linux realms) + $(use_enable nhrp nhrpd) + $(usex ospfapi '--enable-ospfclient' '' '' '') + $(use_enable rpki) + $(use_enable snmp) + ) + + econf "${myconf[@]}" +} + +my_src_compile() { + emake GRPC_CFLAGS=-std=gnu++23 GRPC_CXXFLAGS=-std=gnu++23 + + use doc && emake html +} + +my_src_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + emake GRPC_CFLAGS=-std=gnu++23 GRPC_CXXFLAGS=-std=gnu++23 check +} + +my_src_install() { + default + find "${ED}" -name '*.la' -delete || die + + # Install user documentation if asked + use doc && dodoc -r doc/user/_build/html + + # Create configuration directory with correct permissions + # Create logs directory with the correct permissions + diropts -ofrr -gfrr -m0775 + keepdir /var/log/frr /etc/frr + + # Install the default configuration files + insinto /etc/frr + doins "${S}"/tools/etc/frr/{vtysh.conf,frr.conf,daemons} + + # Fix permissions/owners. + fowners frr:frr /etc/frr/{vtysh.conf,frr.conf,daemons} + fperms 640 /etc/frr/{vtysh.conf,frr.conf,daemons} + + # Install logrotate configuration + insinto /etc/logrotate.d + newins "${FILESDIR}/logrotate-v1" frr + + # Install PAM configuration file + use pam && newpamd "${FILESDIR}"/frr.pam frr + + # Install init scripts + systemd_dounit tools/frr.service + newinitd "${FILESDIR}"/frr-openrc-v4 frr + + # Conflict files, installed by net-libs/libsmi, bug #758383 + # Files from frr seems to be newer. + rm "${ED}"/usr/share/yang/ietf-interfaces.yang || die + rm "${ED}"/usr/share/yang/ietf-netconf.yang || die + rm "${ED}"/usr/share/yang/ietf-netconf-with-defaults.yang || die + rm "${ED}"/usr/share/yang/ietf-netconf-acm.yang || die +} diff --git a/net-wireless/gr-scopy/gr-scopy-0.0_p20220602-r1.ebuild b/net-wireless/gr-scopy/gr-scopy-0.0_p20220602-r1.ebuild index 46edf21bbb97..04016c03e839 100644 --- a/net-wireless/gr-scopy/gr-scopy-0.0_p20220602-r1.ebuild +++ b/net-wireless/gr-scopy/gr-scopy-0.0_p20220602-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 @@ -32,5 +32,5 @@ DEPEND="${RDEPEND}" src_install() { cmake_src_install python_optimize - mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${P}" + mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" } diff --git a/net-wireless/gr-scopy/gr-scopy-9999.ebuild b/net-wireless/gr-scopy/gr-scopy-9999.ebuild index 46edf21bbb97..04016c03e839 100644 --- a/net-wireless/gr-scopy/gr-scopy-9999.ebuild +++ b/net-wireless/gr-scopy/gr-scopy-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 @@ -32,5 +32,5 @@ DEPEND="${RDEPEND}" src_install() { cmake_src_install python_optimize - mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${P}" + mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" } diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest index c99c309a2c94..abe2952a2e1d 100644 --- a/net-wireless/unifi/Manifest +++ b/net-wireless/unifi/Manifest @@ -1 +1,2 @@ DIST unifi-10.1.89.zip 144339191 BLAKE2B c1b3d3f6d977b0673a7c82940f75d66e9cfa963ad84fcf8b0958963ca294cc4026354533d7224083fd4fdb27af66b0625613fa4bc23bec1724ae90c9a91d6dc2 SHA512 c7f9c25a83a8fede71493054279eacde35b16f89c0364e7a15d86e6d1911def3c152a871a4bf01dd7d1b37d0f2fffaa4f7deab526a0e878de6a87b010c8592f6 +DIST unifi-10.3.58.zip 148580647 BLAKE2B d14b1587f5ddff0d669ec1c78c191e66cb52fc21ca49c6be94fc4cf307f525988b6ba8a31ee877add60ca249b880309fd220f3e4263feb16847dbf5a0ecb12b6 SHA512 447e60c5449d792b70911e7ddd72d42cd9de8f15d1f27378555c5f3bd9f6d60db1d1dc19e4b106d5c6bd042237f3211611daecca78111328b0bfb5b9eea7d7b2 diff --git a/net-wireless/unifi/unifi-10.3.58.ebuild b/net-wireless/unifi/unifi-10.3.58.ebuild new file mode 100644 index 000000000000..6dd4f3560fc5 --- /dev/null +++ b/net-wireless/unifi/unifi-10.3.58.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Set this var for any releases except stable +# RC_SUFFIX="-" + +inherit java-pkg-2 readme.gentoo-r1 systemd + +DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs" +HOMEPAGE="https://www.ubnt.com" +SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip" +S="${WORKDIR}/UniFi" + +LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 MIT ubiquiti" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="-* ~amd64 ~arm64" +IUSE="systemd system-mongodb" +RESTRICT="bindist mirror" + +RDEPEND=" + acct-group/unifi + acct-user/unifi + dev-db/mongodb + virtual/jre:25 +" + +BDEPEND="app-arch/unzip" + +DOCS=( "readme.txt" ) + +QA_PREBUILT=" + usr/lib/unifi/lib/native/Linux/aarch64/*.so + usr/lib/unifi/lib/native/Linux/x86_64/*.so +" + +src_prepare() { + if [[ ${CHOST} != aarch64* ]]; then + rm -r lib/native/Linux/aarch64 || die + fi + if [[ ${CHOST} != x86_64* ]]; then + rm -r lib/native/Linux/x86_64 || die + fi + + if [[ ${CHOST} == aarch64* ]]; then + if ! use systemd; then + rm lib/native/Linux/aarch64/libubnt_sdnotify_jni.so || die + fi + fi + if [[ ${CHOST} == x86_64* ]]; then + if ! use systemd; then + rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die + fi + fi + + default +} + +src_compile() { + :; +} + +src_install() { + insinto /usr/lib/unifi + doins -r dl lib webapps + ! use system-mongodb && doins -r bin + + diropts -o unifi -g unifi + keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi + + for symlink in conf data run tmp work; do + dosym ../../../var/lib/unifi/${symlink} /usr/lib/unifi/${symlink} + done + dosym ../../../var/log/unifi /usr/lib/unifi/logs + + java-pkg_regjar "${D}"/usr/lib/unifi/lib/*.jar + java-pkg_dolauncher \ + unifi \ + --java_args '-Dorg.xerial.snappy.tempdir=/usr/lib/unifi/tmp \ + -Djava.library.path= \ + --add-opens java.base/java.lang=ALL-UNNAMED \ + --add-opens java.base/java.time=ALL-UNNAMED \ + --add-opens java.base/sun.security.util=ALL-UNNAMED \ + --add-opens java.base/java.io=ALL-UNNAMED \ + --add-opens java.rmi/sun.rmi.transport=ALL-UNNAMED' \ + --jar ace.jar \ + --pwd '/usr/lib/unifi' + + if use system-mongodb; then + systemd_newunit "${FILESDIR}"/unifi-mongodb.service unifi.service + newinitd "${FILESDIR}"/unifi-mongodb.initd unifi + else + systemd_newunit "${FILESDIR}"/unifi.service-r2 unifi.service + newinitd "${FILESDIR}"/unifi.initd-r2 unifi + fi + + newconfd "${FILESDIR}"/unifi.confd unifi + + echo 'CONFIG_PROTECT="/var/lib/unifi"' > "${T}"/99unifi || die + doenvd "${T}"/99unifi + + einstalldocs + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/profiles/package.mask/00-gentoo b/profiles/package.mask/00-gentoo index f930133b61be..327767a1890a 100644 --- a/profiles/package.mask/00-gentoo +++ b/profiles/package.mask/00-gentoo @@ -36,6 +36,10 @@ #--- END OF EXAMPLES --- +# Ulrich Müller <ulm@gentoo.org> (2026-04-30) +# Upstream package is broken with Qt 6.10.3. Bug #973380. +=net-im/zoom-7.0.0.1666-r1 + # Andreas Sturmlechner <asturm@gentoo.org> (2026-04-21) # PyQt5 has no more revdeps (that aren't also masked). # Removal on 2026-05-21. Bug #950282 diff --git a/sci-mathematics/rkward/Manifest b/sci-mathematics/rkward/Manifest index 2ef6988dd26d..112c1543f507 100644 --- a/sci-mathematics/rkward/Manifest +++ b/sci-mathematics/rkward/Manifest @@ -1 +1,2 @@ DIST rkward-0.8.2.tar.gz 7109936 BLAKE2B 85087a71cf97b8533a75f61786f6598d8bbc2de7c0ab44d0fc2deee5be8f19d1f7444d3e6374ab6ecb6d78214d1711b0fe91f78a58ef3ef133d8de5601afc6ad SHA512 2e247f8f3f91e62feb576f6d47ec2244671ad4e1a1776e29a818e560b626cf51045f7a1d463e3d8c36e915506afd702b351825324433cb39f35b6b55df8e2d8c +DIST rkward-0.8.3.tar.gz 8031772 BLAKE2B ff359ad574ad43d402659887709a598529936ce4d1f8b8bc89a0e069b5e0eafe49db7ae0854a9708da3c698dd741a4585b33b0b64bc80d376534c88cc7cd4025 SHA512 0cd4e05714d17f731785a78a9fea952f3a737a1385e3fb83775f623e9e467e5a2c9d2b79dfeedb4c0c26f3b265ae28e6b45ddc2fcd9a7938c297a640336cbfe7 diff --git a/sci-mathematics/rkward/metadata.xml b/sci-mathematics/rkward/metadata.xml index 6eb348bb40e9..2504eb599cd2 100644 --- a/sci-mathematics/rkward/metadata.xml +++ b/sci-mathematics/rkward/metadata.xml @@ -10,7 +10,7 @@ <name>Gentoo Mathematics Project</name> </maintainer> <upstream> - <bugs-to>https://bugs.kde.org/</bugs-to> + <bugs-to>https://bugs.kde.org/enter_bug.cgi?product=rkward</bugs-to> </upstream> <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/sci-mathematics/rkward/rkward-0.8.3.ebuild b/sci-mathematics/rkward/rkward-0.8.3.ebuild new file mode 100644 index 000000000000..35fe65e661bf --- /dev/null +++ b/sci-mathematics/rkward/rkward-0.8.3.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_HANDBOOK="forceoptional" +KFMIN=6.9.0 +QTMIN=6.6.2 +inherit ecm kde.org optfeature xdg + +DESCRIPTION="IDE for the R-project" +HOMEPAGE="https://rkward.kde.org/" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2+ LGPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + dev-lang/R + dev-libs/kdsingleapplication[qt6(+)] + >=dev-qt/qtbase-${QTMIN}:6[gui,network,widgets,xml] + >=dev-qt/qtdeclarative-${QTMIN}:6 + >=dev-qt/qtwebengine-${QTMIN}:6[widgets] + >=kde-frameworks/breeze-icons-${KFMIN}:6 + >=kde-frameworks/karchive-${KFMIN}:6 + >=kde-frameworks/kcompletion-${KFMIN}:6 + >=kde-frameworks/kconfig-${KFMIN}:6 + >=kde-frameworks/kconfigwidgets-${KFMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/kcrash-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kio-${KFMIN}:6 + >=kde-frameworks/kjobwidgets-${KFMIN}:6 + >=kde-frameworks/knotifications-${KFMIN}:6 + >=kde-frameworks/kparts-${KFMIN}:6 + >=kde-frameworks/kservice-${KFMIN}:6 + >=kde-frameworks/ktexteditor-${KFMIN}:6 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 + >=kde-frameworks/kwindowsystem-${KFMIN}:6 + >=kde-frameworks/kxmlgui-${KFMIN}:6 +" +RDEPEND="${DEPEND} + !${CATEGORY}/${PN}:5 +" +BDEPEND="sys-devel/gettext" + +src_configure() { + local mycmakeargs=( + # using QWebView currently still requires QWebEngine runtime dep on Linux + -DFORCE_WITH_QWEBENGINE=ON + ) + + ecm_src_configure +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + optfeature "kate plugins support" "kde-apps/kate-addons:6" + optfeature "prendering (or previewing) R markdown (.Rmd) files" "app-text/pandoc" + optfeature "managing citations while writing articles" "app-text/kbibtex" + fi + xdg_pkg_postinst +} diff --git a/sci-misc/h5utils/h5utils-1.13.1.ebuild b/sci-misc/h5utils/h5utils-1.13.1-r1.ebuild index 7d33e735b714..f074e58a7af0 100644 --- a/sci-misc/h5utils/h5utils-1.13.1.ebuild +++ b/sci-misc/h5utils/h5utils-1.13.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=7 @@ -21,6 +21,9 @@ DEPEND=" hdf? ( sci-libs/hdf:0= virtual/jpeg:0 + ) + octave? ( + sci-mathematics/octave )" RDEPEND="${DEPEND}" diff --git a/sys-apps/apparmor/Manifest b/sys-apps/apparmor/Manifest index 421dfea086d0..414ba61edc1a 100644 --- a/sys-apps/apparmor/Manifest +++ b/sys-apps/apparmor/Manifest @@ -1,2 +1,2 @@ -DIST apparmor-v4.1.6.tar.gz 7156732 BLAKE2B eda3aa596ba8a75030d989f10730c0621d4c7a92df3e88ea6790d0f22b306e5d8925051ffd9e835e1cecbc45343a83821bc5b4c7bc726dcf5d8829b41d6699f4 SHA512 7b843290b1a9c500f4896b16d1532d4b242cf035f817bf08204ee4b787e25c89d366a7bd752e98921d3884666ad8a017c5aeb82d7739232058a1fce9f0fdc7b7 DIST apparmor-v4.1.7.tar.gz 7156550 BLAKE2B fe1eb412fe851d6b546488320c2ca2131e5d15d7f2be030608f95e2f9f8a6f747495b0dfc1452664ade892dcbf3fd64132d662091792a22898c03d8bed89bad4 SHA512 8b70812601f15c29d5f6590d4b2dc5b49cb3502de406d141cab1492fe4eb014ed7e5c9c2aa8b23cb46ebaea6d186d60adbba057c4258d8881fbfbb48a85933c5 +DIST apparmor-v5.0.0.tar.gz 7597033 BLAKE2B 026972bd4935c658e3d2f6ae66520e4957819e2b2c297068cc00648c8462eb11ba16fdbd8fd7b5c923bfd6b22c90cfb908937d55d42266d12b5535c0e6cfcd7d SHA512 4f0c0144608bac580f5bc594b1ba2ee1794113fc07604ca36171e581eb296489881b9f6408cac9e2dbe4408b8b9e8e006f6f7bd98ea390dc20e940f3c101bb5e diff --git a/sys-apps/apparmor/apparmor-4.1.6.ebuild b/sys-apps/apparmor/apparmor-5.0.0.ebuild index 18c2b9eb351e..56ca9da244cd 100644 --- a/sys-apps/apparmor/apparmor-4.1.6.ebuild +++ b/sys-apps/apparmor/apparmor-5.0.0.ebuild @@ -28,17 +28,9 @@ BDEPEND=" S=${WORKDIR}/apparmor-v${PV}/parser -PATCHES=( - "${FILESDIR}/${PN}-2.11.1-dynamic-link.patch" -) - src_prepare() { default - # remove warning about missing file that controls features - # we don't currently support - sed -e "/installation problem/ctrue" -i rc.apparmor.functions || die - # bug 634782 sed -e "s/cpp/$(tc-getCPP) -/" \ -i ../common/list_capabilities.sh \ diff --git a/sys-apps/hexyl/hexyl-0.17.0.ebuild b/sys-apps/hexyl/hexyl-0.17.0.ebuild index 0225cbb7eace..ac667b6697fb 100644 --- a/sys-apps/hexyl/hexyl-0.17.0.ebuild +++ b/sys-apps/hexyl/hexyl-0.17.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2017-2026 Gentoo Authors +# Copyright 2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -75,12 +75,12 @@ CRATES=" yansi@1.0.1 " -inherit cargo shell-completion +inherit cargo DESCRIPTION="A command-line hex viewer" HOMEPAGE="https://github.com/sharkdp/hexyl" SRC_URI=" - https://github.com/sharkdp/hexyl/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz ${CARGO_CRATE_URIS} " @@ -89,28 +89,10 @@ LICENSE="|| ( Apache-2.0 MIT )" LICENSE+=" Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB" SLOT="0" KEYWORDS="~amd64" -QA_FLAGS_IGNORED="usr/bin/hexyl" -RESTRICT="mirror" - -BDEPEND=" - virtual/pandoc -" - -src_compile() { - cargo_src_compile - pandoc -s -f markdown -t man -o "doc/${PN}.1" "doc/${PN}.1.md" -} +DOCS=( README.md CHANGELOG.md ) src_install() { cargo_src_install einstalldocs - doman "doc/${PN}.1" - - "target/release/${PN}" --completion bash > "${PN}" - dobashcomp "${PN}" - "target/release/${PN}" --completion zsh > "_${PN}" - dozshcomp "_${PN}" - "target/release/${PN}" --completion fish > "${PN}.fish" - dofishcomp "${PN}.fish" } diff --git a/sys-apps/hexyl/metadata.xml b/sys-apps/hexyl/metadata.xml index 1bd26735cdca..24ccbb8a7ce2 100644 --- a/sys-apps/hexyl/metadata.xml +++ b/sys-apps/hexyl/metadata.xml @@ -2,9 +2,9 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>Wuzy01@qq.com</email> - <name>Wu, Zhenyu</name> + <email>thomas@binaryden.de</email> + <name>Thomas Kemmer</name> </maintainer> - <origin>gentoo-guru-overlay</origin> + <origin>binaryden-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/sys-apps/systemd-utils/Manifest b/sys-apps/systemd-utils/Manifest index cc8e745fb1a0..3f5b2a9ce8dc 100644 --- a/sys-apps/systemd-utils/Manifest +++ b/sys-apps/systemd-utils/Manifest @@ -1,6 +1,5 @@ DIST systemd-259.3.tar.gz 17285135 BLAKE2B 81a66ec1aadeef14ca8fd53b23a8ebeb9fa23aed4298419fb5cb612c7a8f1b4c33f391a643e4d313dbef0385c339726c8f327306785852c8427416009c944f8d SHA512 ea7314fcde3c0e541c9399f2d165f114bd7bf37cec294680964352da374435ddd3949432f939f35ecb49f0ce6a3b7aaaddf2b65cc8107abc65e2ec3806c99dac DIST systemd-259.4.tar.gz 17336661 BLAKE2B 5e90410698e21e8fc8f5f22e3e26858f51d2cdfc362870f09ecccf8ed882602cdcef2614843738b14601349b05cfd3a8358a1771fc1fcd8e75d831940a8683c8 SHA512 bf572f92b0b01ecaf08f36ea5e13a2c05a79e6c0c2d9ef191855d1b83ae791a2977841ca85541ace1d30945d5f879d703d390767f708294986b29aeda1449b1f DIST systemd-260.1.tar.gz 17581096 BLAKE2B 072424e7288f8796be1e6952fadc5452c2ab54633b356796a29872609a03b4cc2edbc0cac0df7542bc969b06d265d2cbf52f9174742c5a570a5a3d7a7664cfa8 SHA512 9f975dce6861853a817a7ceab18a24449a85d1bda6939b3a5173430c02a4d8a9a2b34ebb8cce1c51db9b0ff9078fcc65da7b0f44e3bdcbbe013b9e04bb6f0ff9 -DIST systemd-260.tar.gz 17577889 BLAKE2B 75db560c9d4d8f9ba24f46f70e38a9adc4f8be6ce08a04c900b1d3557739288faf85372b5b1943c59d9be13cdb8dc0fefe09aecb9310211ec479253c7e1aa12b SHA512 2b81a327319c6b06c04742aa8ee5f36ebc7b78aa6db2a82f2a7376fda8bf2079bfc418db290b0522e1d01a3449b3a4e847ebe22d260cc83aeb86a7a4de714d41 DIST systemd-musl-patches-255.14.tar.gz 31519 BLAKE2B 1ada38b3536370f3f20f94abb122b6dc72e2dac6d34baad49ae0c154810197dab6d225457f81c2b78c58cf7fe14070da9ca1902bec6d8f892d55394af67155b5 SHA512 ff9cb11f687e7895b93b55933c330f69067546d48cc0f23a029990e095245c78e046023636f82d11fec1b03a5349d4d747c9625fd34ef7f9445a54a44b25cccb DIST systemd-stable-255.18.tar.gz 15258834 BLAKE2B 03b97b0bb6f5cd8f93bf72c40cf52426c07ab5fa74bd19caf771d54e823fa321de633ef3cc6e482210250c1408e092a6dae6710e992ac2a4b3c5e9670d803adc SHA512 4550fa313a45b277dc32df74a13cfd06486ced724f40c1eebc61a9ba76f79b58dd4372da851710cb5d8bb13e98a5cfcb377fe22171ef5bee0209f4bf067c87ad diff --git a/sys-apps/systemd-utils/files/systemd-260-kernel-install.patch b/sys-apps/systemd-utils/files/systemd-260-kernel-install.patch deleted file mode 100644 index 7c4123737370..000000000000 --- a/sys-apps/systemd-utils/files/systemd-260-kernel-install.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://bugs.gentoo.org/971388 -https://github.com/systemd/systemd/pull/41225 - -From 54db03334813a16721fa96c59b884f1591c758b5 Mon Sep 17 00:00:00 2001 -From: Robin Ebert <ebertrobin2002@gmail.com> -Date: Fri, 20 Mar 2026 13:32:04 +0100 -Subject: [PATCH] kernel-install: fix assert in context_copy - -(cherry picked from commit 55e7dc5ce4999ba9f01499dccdeba0235a86aaa4) ---- - src/kernel-install/kernel-install.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/kernel-install/kernel-install.c b/src/kernel-install/kernel-install.c -index a38dcaab8b556..618fa746c9bed 100644 ---- a/src/kernel-install/kernel-install.c -+++ b/src/kernel-install/kernel-install.c -@@ -152,10 +152,10 @@ static int context_copy(const Context *source, Context *ret) { - - assert(source); - assert(ret); -- assert(source->rfd >= 0 || source->rfd == AT_FDCWD); -+ assert(source->rfd >= 0 || source->rfd == AT_FDCWD || source->rfd == XAT_FDROOT); - - _cleanup_(context_done) Context copy = (Context) { -- .rfd = AT_FDCWD, -+ .rfd = source->rfd, - .action = source->action, - .machine_id = source->machine_id, - .machine_id_is_random = source->machine_id_is_random, diff --git a/sys-apps/systemd-utils/systemd-utils-259.4.ebuild b/sys-apps/systemd-utils/systemd-utils-259.4.ebuild index f16a393f0f79..3da89f5feb38 100644 --- a/sys-apps/systemd-utils/systemd-utils-259.4.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-259.4.ebuild @@ -406,9 +406,7 @@ pkg_postinst() { add_service systemd-tmpfiles-setup boot fi if use udev; then - ebegin "Updating hwdb" - systemd-hwdb --root="${ROOT}" update - eend $? + udev_hwdb_update udev_reload fi } diff --git a/sys-apps/systemd-utils/systemd-utils-260-r1.ebuild b/sys-apps/systemd-utils/systemd-utils-260-r1.ebuild deleted file mode 100644 index c92f4313bbe9..000000000000 --- a/sys-apps/systemd-utils/systemd-utils-260-r1.ebuild +++ /dev/null @@ -1,397 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..14} ) -QA_PKGCONFIG_VERSION=$(ver_cut 1) - -# Avoid QA warnings about these eclasses -TMPFILES_OPTIONAL=1 -UDEV_OPTIONAL=1 - -inherit linux-info meson-multilib -inherit python-single-r1 secureboot shell-completion udev - -DESCRIPTION="Utilities split out from systemd for OpenRC users" -HOMEPAGE="https://systemd.io/" - -MY_P="systemd-${PV}" -SRC_URI="https://github.com/systemd/systemd/archive/refs/tags/v${PV}.tar.gz -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="+acl boot +kmod kernel-install selinux split-usr sysusers +tmpfiles test +udev ukify" -REQUIRED_USE=" - || ( kernel-install tmpfiles sysusers udev ) - boot? ( kernel-install ) - ukify? ( boot ) - ${PYTHON_REQUIRED_USE} -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND=" - selinux? ( sys-libs/libselinux:0= ) - tmpfiles? ( - acl? ( sys-apps/acl ) - ) - udev? ( - >=sys-apps/util-linux-2.37 - acl? ( sys-apps/acl ) - kmod? ( >=sys-apps/kmod-15 ) - ) -" -DEPEND="${COMMON_DEPEND} - >=sys-kernel/linux-headers-3.11 -" - -PEFILE_DEPEND='dev-python/pefile[${PYTHON_USEDEP}]' - -RDEPEND="${COMMON_DEPEND} - boot? ( !<sys-boot/systemd-boot-250 ) - ukify? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep "${PEFILE_DEPEND}") - ) - tmpfiles? ( !<sys-apps/systemd-tmpfiles-250 ) - udev? ( - acct-group/audio - acct-group/cdrom - acct-group/dialout - acct-group/disk - acct-group/floppy - acct-group/input - acct-group/kmem - acct-group/kvm - acct-group/lp - acct-group/render - acct-group/sgx - acct-group/tape - acct-group/tty - acct-group/usb - acct-group/video - !sys-apps/gentoo-systemd-integration - !<sys-fs/udev-250 - !sys-fs/eudev - ) - !sys-apps/systemd -" -PDEPEND=" - udev? ( >=sys-fs/udev-init-scripts-34 ) -" -BDEPEND=" - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt - dev-util/gperf - dev-util/patchelf - >=sys-apps/coreutils-8.16 - sys-devel/gettext - virtual/pkgconfig - $(python_gen_cond_dep " - dev-python/jinja2[\${PYTHON_USEDEP}] - boot? ( - >=dev-python/pyelftools-0.30[\${PYTHON_USEDEP}] - test? ( ${PEFILE_DEPEND} ) - ) - ") -" - -QA_EXECSTACK="usr/lib/systemd/boot/efi/*" -QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*" - -CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER ~!SYSFS_DEPRECATED - ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET ~UNIX" - -PATCHES=( - "${FILESDIR}/systemd-260-mips.patch" - "${FILESDIR}/systemd-260-kernel-install.patch" -) - -pkg_setup() { - if [[ ${MERGE_TYPE} != buildonly ]] && use udev; then - linux-info_pkg_setup - fi - use boot && secureboot_pkg_setup -} - -src_configure() { - python_setup - meson-multilib_src_configure -} - -multilib_src_configure() { - local emesonargs=( - --auto-features=disabled - --localstatedir="${EPREFIX}/var" - -Ddocdir="share/doc/${PF}" - - # default is developer, bug 918671 - -Dmode=release - -Dlibc=$(usex elibc_musl musl glibc) - - $(meson_native_use_feature boot bootloader) - $(meson_native_use_bool kernel-install) - $(meson_native_enabled man) - $(meson_native_use_feature selinux) - $(meson_use split-usr split-bin) - $(meson_native_use_bool sysusers) - $(meson_native_use_bool tmpfiles) - $(meson_native_use_feature udev blkid) - $(meson_native_use_feature udev libmount) - $(meson_use udev hwdb) - $(meson_native_use_feature ukify) - - -Dadm-group=false - -Danalyze=false - -Dbacklight=false - -Dbinfmt=false - -Dcreate-log-dirs=false - -Dcoredump=false - -Ddns-over-tls=false - -Denvironment-d=false - -Dhibernate=false - -Dhostnamed=false - -Didn=false - -Dima=false - -Dinitrd=false - -Dipe=false - -Dfirstboot=false - -Dldconfig=false - -Dlocaled=false - -Dlogind=false - -Dmachined=false - -Dmountfsd=false - -Dnetworkd=false - -Dnsresourced=false - -Dnss-myhostname=false - -Dnss-systemd=false - -Doomd=false - -Dportabled=false - -Dpstore=false - -Dquotacheck=false - -Drandomseed=false - -Dresolve=false - -Drfkill=false - -Dsmack=false - -Dstoragetm=false - -Dsysext=false - -Dtimedated=false - -Dtimesyncd=false - -Dtpm=false - -Durlify=false - -Duserdb=false - -Dutmp=false - -Dvconsole=false - -Dwheel-group=false - -Dxdg-autostart=false - - -Dbashcompletiondir=no - -Ddbus-interfaces-dir=no - -Drpmmacrosdir=no - -Dshellprofiledir=no - -Dsshconfdir=no - -Dsshdconfdir=no - -Dsshdprivsepdir=no - -Dzshcompletiondir=no - ) - - # workaround for bug 969103 - if [[ ${CHOST} == riscv32* ]] ; then - emesonargs+=( -Dtests=true ) - else - emesonargs+=( $(meson_use test tests) ) - fi - - if use tmpfiles || use udev; then - emesonargs+=( $(meson_native_use_feature acl) ) - fi - - if use udev; then - emesonargs+=( $(meson_native_use_feature kmod) ) - fi - - meson_src_configure -} - -multilib_src_compile() { - if multilib_is_native_abi; then - meson_src_compile - elif use udev; then - meson_src_compile libudev src/libudev/libudev.pc - fi -} - -multilib_src_test() { - local args=() - use udev && args+=( --suite libudev ) - if multilib_is_native_abi; then - use boot && args+=( --suite boot ) - use kernel-install && args+=( --suite kernel-install ) - use sysusers && args+=( --suite sysusers ) - use tmpfiles && args+=( --suite tmpfiles ) - use udev && args+=( --suite udev ) - fi - if [[ ${#args[@]} -gt 0 ]]; then - meson_src_test "${args[@]}" - fi -} - -installx() { - local dir f - for f in "$@"; do - dir="${f%/*}" - dir="/${dir#/}" - dodir "${dir}" - mv -v "${ed}"/${f#/} "${ED}${dir}/" || die - done -} - -multilib_src_install() { - local d="${WORKDIR}/install" - local ed="${d}${EPREFIX}" - - if use udev; then - meson_install --no-rebuild --tags libudev - insinto "/usr/$(get_libdir)/pkgconfig" - doins src/libudev/libudev.pc - fi - - multilib_is_native_abi || return - - meson_install --no-rebuild --destdir "${d}" - - installx "usr/$(get_libdir)/systemd/libsystemd-shared-${PV%%.*}.so" - installx usr/share/locale - installx usr/lib/sysctl.d - - if use boot; then - installx usr/bin/bootctl - installx usr/share/man/man1/bootctl.1 - installx usr/lib/systemd/boot - fi - - if use kernel-install; then - installx usr/bin/kernel-install - installx usr/share/man/man8/kernel-install.8 - installx usr/lib/kernel - fi - - if use sysusers; then - installx usr/bin/systemd-sysusers - installx usr/share/man/{man5/sysusers.d.5,man8/systemd-sysusers.8} - fi - - if use tmpfiles; then - installx usr/bin/systemd-tmpfiles - installx usr/lib/tmpfiles.d/{etc,home,static-nodes-permissions,var}.conf - installx usr/share/man/{man5/tmpfiles.d.5,man8/systemd-tmpfiles.8} - fi - - if use udev; then - installx etc/udev - installx usr/bin/systemd-hwdb - installx usr/bin/udevadm - if use split-usr; then - # elogind installs udev rules that hard-code /bin/udevadm - dosym ../usr/bin/udevadm /bin/udevadm - fi - installx usr/lib/systemd/systemd-sysctl - installx usr/lib/systemd/systemd-udevd - installx usr/lib/systemd/network/99-default.link - installx usr/lib/udev - installx usr/share/pkgconfig/udev.pc - installx usr/share/man/man5/{iocost.conf.5,systemd.link.5,udev.conf.5} - installx usr/share/man/man7/{hwdb.7,udev.7} - installx usr/share/man/man8/{systemd-hwdb.8,udevadm.8} - mv -v "${ed}"/usr/share/man/man8/systemd-udevd.service.8 \ - "${ED}"/usr/share/man/man8/systemd-udevd.8 || die - installx usr/share/man/man3/libudev.3 "usr/share/man/man3/udev_*" - fi - - if use ukify; then - installx usr/bin/ukify usr/lib/systemd/ukify - installx usr/share/man/man1/ukify.1 - fi -} - -multilib_src_install_all() { - einstalldocs - - if use boot; then - dobashcomp shell-completion/bash/bootctl - dozshcomp shell-completion/zsh/_bootctl - fi - - if use kernel-install; then - dobashcomp shell-completion/bash/kernel-install - dozshcomp shell-completion/zsh/_kernel-install - - # Dummy config, remove to make room for sys-kernel/installkernel - rm "${ED}/usr/lib/kernel/install.conf" || die - fi - - if use tmpfiles; then - #dobashcomp shell-completion/zsh/systemd-tmpfiles - dozshcomp shell-completion/zsh/_systemd-tmpfiles - insinto /usr/lib/tmpfiles.d - doins "${FILESDIR}"/{legacy,tmp}.conf - doinitd "${FILESDIR}"/systemd-tmpfiles-setup - doinitd "${FILESDIR}"/systemd-tmpfiles-setup-dev - exeinto /etc/cron.daily - doexe "${FILESDIR}"/systemd-tmpfiles-clean - fi - - if use udev; then - doheader src/libudev/libudev.h - dobashcomp shell-completion/bash/udevadm - dozshcomp shell-completion/zsh/_udevadm - # Avoid udev_dorules to avoid picking up stale udevdir from pkg-config - insinto /usr/lib/udev/rules.d - doins "${FILESDIR}"/40-gentoo.rules - fi - - use ukify && python_fix_shebang "${ED}" - use boot && secureboot_auto_sign -} - -add_service() { - local initd=$1 - local runlevel=$2 - - ebegin "Adding '${initd}' service to the '${runlevel}' runlevel" - mkdir -p "${EROOT}/etc/runlevels/${runlevel}" && - ln -snf "${EPREFIX}/etc/init.d/${initd}" "${EROOT}/etc/runlevels/${runlevel}/${initd}" - eend $? -} - -pkg_preinst() { - # Migrate /lib/{systemd,udev} to /usr/lib - if use split-usr; then - local d - for d in systemd udev; do - dosym ../usr/lib/${d} /lib/${d} - if [[ -e ${EROOT}/lib/${d} && ! -L ${EROOT}/lib/${d} ]]; then - einfo "Copying files from '${EROOT}/lib/${d}' to '${EROOT}/usr/lib/${d}'" - cp -rpPT "${EROOT}/lib/${d}" "${EROOT}/usr/lib/${d}" || die - einfo "Removing '${EROOT}/lib/${d}'" - rm -r "${EROOT}/lib/${d}" || die - fi - done - fi -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - add_service systemd-tmpfiles-setup-dev sysinit - add_service systemd-tmpfiles-setup boot - fi - if use udev; then - ebegin "Updating hwdb" - systemd-hwdb --root="${ROOT}" update - eend $? - udev_reload - fi -} diff --git a/sys-apps/systemd-utils/systemd-utils-260.1-r1.ebuild b/sys-apps/systemd-utils/systemd-utils-260.1-r1.ebuild index abe0e9b1b44e..0573a5dc65bb 100644 --- a/sys-apps/systemd-utils/systemd-utils-260.1-r1.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-260.1-r1.ebuild @@ -413,9 +413,7 @@ pkg_postinst() { add_service systemd-tmpfiles-setup boot fi if use udev; then - ebegin "Updating hwdb" - systemd-hwdb --root="${ROOT}" update - eend $? + udev_hwdb_update udev_reload fi } diff --git a/sys-apps/systemd-utils/systemd-utils-260.1.ebuild b/sys-apps/systemd-utils/systemd-utils-260.1.ebuild deleted file mode 100644 index 7637b1fa7d24..000000000000 --- a/sys-apps/systemd-utils/systemd-utils-260.1.ebuild +++ /dev/null @@ -1,395 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..14} ) -QA_PKGCONFIG_VERSION=$(ver_cut 1) - -# Avoid QA warnings about these eclasses -TMPFILES_OPTIONAL=1 -UDEV_OPTIONAL=1 - -inherit linux-info meson-multilib -inherit python-single-r1 secureboot shell-completion udev - -DESCRIPTION="Utilities split out from systemd for OpenRC users" -HOMEPAGE="https://systemd.io/" - -MY_P="systemd-${PV}" -SRC_URI="https://github.com/systemd/systemd/archive/refs/tags/v${PV}.tar.gz -> ${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="+acl boot +kmod kernel-install selinux split-usr sysusers +tmpfiles test +udev ukify" -REQUIRED_USE=" - || ( kernel-install tmpfiles sysusers udev ) - boot? ( kernel-install ) - ukify? ( boot ) - ${PYTHON_REQUIRED_USE} -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND=" - selinux? ( sys-libs/libselinux:0= ) - tmpfiles? ( - acl? ( sys-apps/acl ) - ) - udev? ( - >=sys-apps/util-linux-2.37 - acl? ( sys-apps/acl ) - kmod? ( >=sys-apps/kmod-15 ) - ) -" -DEPEND="${COMMON_DEPEND} - >=sys-kernel/linux-headers-3.11 -" - -PEFILE_DEPEND='dev-python/pefile[${PYTHON_USEDEP}]' - -RDEPEND="${COMMON_DEPEND} - boot? ( !<sys-boot/systemd-boot-250 ) - ukify? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep "${PEFILE_DEPEND}") - ) - tmpfiles? ( !<sys-apps/systemd-tmpfiles-250 ) - udev? ( - acct-group/audio - acct-group/cdrom - acct-group/dialout - acct-group/disk - acct-group/floppy - acct-group/input - acct-group/kmem - acct-group/kvm - acct-group/lp - acct-group/render - acct-group/sgx - acct-group/tape - acct-group/tty - acct-group/usb - acct-group/video - !sys-apps/gentoo-systemd-integration - !<sys-fs/udev-250 - !sys-fs/eudev - ) - !sys-apps/systemd -" -PDEPEND=" - udev? ( >=sys-fs/udev-init-scripts-34 ) -" -BDEPEND=" - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt - dev-util/gperf - dev-util/patchelf - >=sys-apps/coreutils-8.16 - sys-devel/gettext - virtual/pkgconfig - $(python_gen_cond_dep " - dev-python/jinja2[\${PYTHON_USEDEP}] - boot? ( - >=dev-python/pyelftools-0.30[\${PYTHON_USEDEP}] - test? ( ${PEFILE_DEPEND} ) - ) - ") -" - -QA_EXECSTACK="usr/lib/systemd/boot/efi/*" -QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*" - -CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER ~!SYSFS_DEPRECATED - ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET ~UNIX" - -PATCHES=( -) - -pkg_setup() { - if [[ ${MERGE_TYPE} != buildonly ]] && use udev; then - linux-info_pkg_setup - fi - use boot && secureboot_pkg_setup -} - -src_configure() { - python_setup - meson-multilib_src_configure -} - -multilib_src_configure() { - local emesonargs=( - --auto-features=disabled - --localstatedir="${EPREFIX}/var" - -Ddocdir="share/doc/${PF}" - - # default is developer, bug 918671 - -Dmode=release - -Dlibc=$(usex elibc_musl musl glibc) - - $(meson_native_use_feature boot bootloader) - $(meson_native_use_bool kernel-install) - $(meson_native_enabled man) - $(meson_native_use_feature selinux) - $(meson_use split-usr split-bin) - $(meson_native_use_bool sysusers) - $(meson_native_use_bool tmpfiles) - $(meson_native_use_feature udev blkid) - $(meson_native_use_feature udev libmount) - $(meson_use udev hwdb) - $(meson_native_use_feature ukify) - - -Dadm-group=false - -Danalyze=false - -Dbacklight=false - -Dbinfmt=false - -Dcreate-log-dirs=false - -Dcoredump=false - -Ddns-over-tls=false - -Denvironment-d=false - -Dhibernate=false - -Dhostnamed=false - -Didn=false - -Dima=false - -Dinitrd=false - -Dipe=false - -Dfirstboot=false - -Dldconfig=false - -Dlocaled=false - -Dlogind=false - -Dmachined=false - -Dmountfsd=false - -Dnetworkd=false - -Dnsresourced=false - -Dnss-myhostname=false - -Dnss-systemd=false - -Doomd=false - -Dportabled=false - -Dpstore=false - -Dquotacheck=false - -Drandomseed=false - -Dresolve=false - -Drfkill=false - -Dsmack=false - -Dstoragetm=false - -Dsysext=false - -Dtimedated=false - -Dtimesyncd=false - -Dtpm=false - -Durlify=false - -Duserdb=false - -Dutmp=false - -Dvconsole=false - -Dwheel-group=false - -Dxdg-autostart=false - - -Dbashcompletiondir=no - -Ddbus-interfaces-dir=no - -Drpmmacrosdir=no - -Dshellprofiledir=no - -Dsshconfdir=no - -Dsshdconfdir=no - -Dsshdprivsepdir=no - -Dzshcompletiondir=no - ) - - # workaround for bug 969103 - if [[ ${CHOST} == riscv32* ]] ; then - emesonargs+=( -Dtests=true ) - else - emesonargs+=( $(meson_use test tests) ) - fi - - if use tmpfiles || use udev; then - emesonargs+=( $(meson_native_use_feature acl) ) - fi - - if use udev; then - emesonargs+=( $(meson_native_use_feature kmod) ) - fi - - meson_src_configure -} - -multilib_src_compile() { - if multilib_is_native_abi; then - meson_src_compile - elif use udev; then - meson_src_compile libudev src/libudev/libudev.pc - fi -} - -multilib_src_test() { - local args=() - use udev && args+=( --suite libudev ) - if multilib_is_native_abi; then - use boot && args+=( --suite boot ) - use kernel-install && args+=( --suite kernel-install ) - use sysusers && args+=( --suite sysusers ) - use tmpfiles && args+=( --suite tmpfiles ) - use udev && args+=( --suite udev ) - fi - if [[ ${#args[@]} -gt 0 ]]; then - meson_src_test "${args[@]}" - fi -} - -installx() { - local dir f - for f in "$@"; do - dir="${f%/*}" - dir="/${dir#/}" - dodir "${dir}" - mv -v "${ed}"/${f#/} "${ED}${dir}/" || die - done -} - -multilib_src_install() { - local d="${WORKDIR}/install" - local ed="${d}${EPREFIX}" - - if use udev; then - meson_install --no-rebuild --tags libudev - insinto "/usr/$(get_libdir)/pkgconfig" - doins src/libudev/libudev.pc - fi - - multilib_is_native_abi || return - - meson_install --no-rebuild --destdir "${d}" - - installx "usr/$(get_libdir)/systemd/libsystemd-shared-${PV%%.*}.so" - installx usr/share/locale - installx usr/lib/sysctl.d - - if use boot; then - installx usr/bin/bootctl - installx usr/share/man/man1/bootctl.1 - installx usr/lib/systemd/boot - fi - - if use kernel-install; then - installx usr/bin/kernel-install - installx usr/share/man/man8/kernel-install.8 - installx usr/lib/kernel - fi - - if use sysusers; then - installx usr/bin/systemd-sysusers - installx usr/share/man/{man5/sysusers.d.5,man8/systemd-sysusers.8} - fi - - if use tmpfiles; then - installx usr/bin/systemd-tmpfiles - installx usr/lib/tmpfiles.d/{etc,home,static-nodes-permissions,var}.conf - installx usr/share/man/{man5/tmpfiles.d.5,man8/systemd-tmpfiles.8} - fi - - if use udev; then - installx etc/udev - installx usr/bin/systemd-hwdb - installx usr/bin/udevadm - if use split-usr; then - # elogind installs udev rules that hard-code /bin/udevadm - dosym ../usr/bin/udevadm /bin/udevadm - fi - installx usr/lib/systemd/systemd-sysctl - installx usr/lib/systemd/systemd-udevd - installx usr/lib/systemd/network/99-default.link - installx usr/lib/udev - installx usr/share/pkgconfig/udev.pc - installx usr/share/man/man5/{iocost.conf.5,systemd.link.5,udev.conf.5} - installx usr/share/man/man7/{hwdb.7,udev.7} - installx usr/share/man/man8/{systemd-hwdb.8,udevadm.8} - mv -v "${ed}"/usr/share/man/man8/systemd-udevd.service.8 \ - "${ED}"/usr/share/man/man8/systemd-udevd.8 || die - installx usr/share/man/man3/libudev.3 "usr/share/man/man3/udev_*" - fi - - if use ukify; then - installx usr/bin/ukify usr/lib/systemd/ukify - installx usr/share/man/man1/ukify.1 - fi -} - -multilib_src_install_all() { - einstalldocs - - if use boot; then - dobashcomp shell-completion/bash/bootctl - dozshcomp shell-completion/zsh/_bootctl - fi - - if use kernel-install; then - dobashcomp shell-completion/bash/kernel-install - dozshcomp shell-completion/zsh/_kernel-install - - # Dummy config, remove to make room for sys-kernel/installkernel - rm "${ED}/usr/lib/kernel/install.conf" || die - fi - - if use tmpfiles; then - #dobashcomp shell-completion/zsh/systemd-tmpfiles - dozshcomp shell-completion/zsh/_systemd-tmpfiles - insinto /usr/lib/tmpfiles.d - doins "${FILESDIR}"/{legacy,tmp}.conf - doinitd "${FILESDIR}"/systemd-tmpfiles-setup - doinitd "${FILESDIR}"/systemd-tmpfiles-setup-dev - exeinto /etc/cron.daily - doexe "${FILESDIR}"/systemd-tmpfiles-clean - fi - - if use udev; then - doheader src/libudev/libudev.h - dobashcomp shell-completion/bash/udevadm - dozshcomp shell-completion/zsh/_udevadm - # Avoid udev_dorules to avoid picking up stale udevdir from pkg-config - insinto /usr/lib/udev/rules.d - doins "${FILESDIR}"/40-gentoo.rules - fi - - use ukify && python_fix_shebang "${ED}" - use boot && secureboot_auto_sign -} - -add_service() { - local initd=$1 - local runlevel=$2 - - ebegin "Adding '${initd}' service to the '${runlevel}' runlevel" - mkdir -p "${EROOT}/etc/runlevels/${runlevel}" && - ln -snf "${EPREFIX}/etc/init.d/${initd}" "${EROOT}/etc/runlevels/${runlevel}/${initd}" - eend $? -} - -pkg_preinst() { - # Migrate /lib/{systemd,udev} to /usr/lib - if use split-usr; then - local d - for d in systemd udev; do - dosym ../usr/lib/${d} /lib/${d} - if [[ -e ${EROOT}/lib/${d} && ! -L ${EROOT}/lib/${d} ]]; then - einfo "Copying files from '${EROOT}/lib/${d}' to '${EROOT}/usr/lib/${d}'" - cp -rpPT "${EROOT}/lib/${d}" "${EROOT}/usr/lib/${d}" || die - einfo "Removing '${EROOT}/lib/${d}'" - rm -r "${EROOT}/lib/${d}" || die - fi - done - fi -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - add_service systemd-tmpfiles-setup-dev sysinit - add_service systemd-tmpfiles-setup boot - fi - if use udev; then - ebegin "Updating hwdb" - systemd-hwdb --root="${ROOT}" update - eend $? - udev_reload - fi -} diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest index 05ddb20f036f..061d92169a23 100644 --- a/sys-apps/systemd/Manifest +++ b/sys-apps/systemd/Manifest @@ -1,5 +1,2 @@ -DIST systemd-258.3.tar.gz 17034328 BLAKE2B 668f5829d78412b256f49c3f46dffad5cf70fa335de3e5ca822bdc13e4f67874ac28005b616e7fdc0f3235f760c68809ae3ac97e1f53d3ca43fb7e0934ec0de9 SHA512 9f4261e1703efd1f38c90e4166e6d85fa9379c99ac7f3c66caa62955c3cbe8a43ab259c261ab20bce0dd84dd682258192ace66b4dee0390bf3740c32f4569fed -DIST systemd-259.3.tar.gz 17285135 BLAKE2B 81a66ec1aadeef14ca8fd53b23a8ebeb9fa23aed4298419fb5cb612c7a8f1b4c33f391a643e4d313dbef0385c339726c8f327306785852c8427416009c944f8d SHA512 ea7314fcde3c0e541c9399f2d165f114bd7bf37cec294680964352da374435ddd3949432f939f35ecb49f0ce6a3b7aaaddf2b65cc8107abc65e2ec3806c99dac DIST systemd-259.4.tar.gz 17336661 BLAKE2B 5e90410698e21e8fc8f5f22e3e26858f51d2cdfc362870f09ecccf8ed882602cdcef2614843738b14601349b05cfd3a8358a1771fc1fcd8e75d831940a8683c8 SHA512 bf572f92b0b01ecaf08f36ea5e13a2c05a79e6c0c2d9ef191855d1b83ae791a2977841ca85541ace1d30945d5f879d703d390767f708294986b29aeda1449b1f DIST systemd-260.1.tar.gz 17581096 BLAKE2B 072424e7288f8796be1e6952fadc5452c2ab54633b356796a29872609a03b4cc2edbc0cac0df7542bc969b06d265d2cbf52f9174742c5a570a5a3d7a7664cfa8 SHA512 9f975dce6861853a817a7ceab18a24449a85d1bda6939b3a5173430c02a4d8a9a2b34ebb8cce1c51db9b0ff9078fcc65da7b0f44e3bdcbbe013b9e04bb6f0ff9 -DIST systemd-260.tar.gz 17577889 BLAKE2B 75db560c9d4d8f9ba24f46f70e38a9adc4f8be6ce08a04c900b1d3557739288faf85372b5b1943c59d9be13cdb8dc0fefe09aecb9310211ec479253c7e1aa12b SHA512 2b81a327319c6b06c04742aa8ee5f36ebc7b78aa6db2a82f2a7376fda8bf2079bfc418db290b0522e1d01a3449b3a4e847ebe22d260cc83aeb86a7a4de714d41 diff --git a/sys-apps/systemd/files/gentoo-journald-audit-r3.patch b/sys-apps/systemd/files/gentoo-journald-audit-r3.patch deleted file mode 100644 index 291559ff2290..000000000000 --- a/sys-apps/systemd/files/gentoo-journald-audit-r3.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 0f16422e52ef793407d1cbef0c38eff29d6e251c Mon Sep 17 00:00:00 2001 -From: Mike Gilbert <floppym@gentoo.org> -Date: Wed, 17 Sep 2025 15:40:57 -0400 -Subject: [PATCH] journald: do not change the kernel audit setting by default - -Bug: https://bugs.gentoo.org/736910 ---- - man/journald.conf.xml | 2 +- - src/journal/journald-config.c | 2 +- - src/journal/journald.conf | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/man/journald.conf.xml b/man/journald.conf.xml -index 1d615b110d..4676d674a2 100644 ---- a/man/journald.conf.xml -+++ b/man/journald.conf.xml -@@ -483,7 +483,7 @@ - turn it off. When <literal>keep</literal> it will neither enable nor disable it, leaving the previous - state unchanged. This means if another tool turns on auditing even if - <command>systemd-journald</command> left it off, it will still collect the generated messages. -- Defaults to yes in the default journal namespace, and <literal>keep</literal> otherwise.</para> -+ Defaults to <literal>keep</literal>.</para> - - <!-- Explicit assignment of an empty string is equivalent to 'keep', for backward compatibility. --> - -diff --git a/src/journal/journald-config.c b/src/journal/journald-config.c -index 8cffec880b..ea3bb34a76 100644 ---- a/src/journal/journald-config.c -+++ b/src/journal/journald-config.c -@@ -123,7 +123,7 @@ void manager_merge_configs(Manager *m) { - MERGE_NON_NEGATIVE(read_kmsg, !m->namespace); - /* By default, kernel auditing is enabled by the main namespace instance, and not controlled by - * non-default namespace instances. */ -- MERGE_NON_NEGATIVE(set_audit, m->namespace ? AUDIT_KEEP : AUDIT_YES); -+ MERGE_NON_NEGATIVE(set_audit, AUDIT_KEEP); - MERGE_NON_ZERO(sync_interval_usec, DEFAULT_SYNC_INTERVAL_USEC); - - /* TODO: also merge them when comdline or credentials support to configure them. */ -diff --git a/src/journal/journald.conf b/src/journal/journald.conf -index 9a12ca7657..3be3ed7327 100644 ---- a/src/journal/journald.conf -+++ b/src/journal/journald.conf -@@ -47,4 +47,4 @@ - #MaxLevelSocket=debug - #LineMax=48K - #ReadKMsg=yes --#Audit=yes -+#Audit=keep --- -2.51.0 - diff --git a/sys-apps/systemd/files/systemd-258-shared-add-missing-alloc-util.patch b/sys-apps/systemd/files/systemd-258-shared-add-missing-alloc-util.patch deleted file mode 100644 index f384b3fece57..000000000000 --- a/sys-apps/systemd/files/systemd-258-shared-add-missing-alloc-util.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://bugs.gentoo.org/963481 -https://github.com/systemd/systemd/pull/39149 - -From 3df39cedda01dec35e49f1ab5632cf9f325e5320 Mon Sep 17 00:00:00 2001 -From: Xarblu <xarblu@protonmail.com> -Date: Fri, 26 Sep 2025 21:40:50 +0200 -Subject: [PATCH] shared: add missing alloc-util.h include - -Needed for _cleanup_free_ ---- - src/shared/password-quality-util-passwdqc.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/shared/password-quality-util-passwdqc.c b/src/shared/password-quality-util-passwdqc.c -index d74e0fb7f2370..844068a4d64a3 100644 ---- a/src/shared/password-quality-util-passwdqc.c -+++ b/src/shared/password-quality-util-passwdqc.c -@@ -1,5 +1,6 @@ - /* SPDX-License-Identifier: LGPL-2.1-or-later */ - -+#include "alloc-util.h" - #include "dlfcn-util.h" - #include "errno-util.h" - #include "log.h" diff --git a/sys-apps/systemd/files/systemd-258.3-kernel-install-test.patch b/sys-apps/systemd/files/systemd-258.3-kernel-install-test.patch deleted file mode 100644 index b67c9a87f8da..000000000000 --- a/sys-apps/systemd/files/systemd-258.3-kernel-install-test.patch +++ /dev/null @@ -1,16 +0,0 @@ -Revert for 258.3 of https://github.com/systemd/systemd/pull/39945 as that -commit got backported. It fails because master has the kernel install moved -to /var/tmp and this test change assumed that. - ---- a/src/kernel-install/test-kernel-install.sh -+++ b/src/kernel-install/test-kernel-install.sh -@@ -318,7 +318,7 @@ diff -u <(echo "$output") - >&2 <<EOF - "KERNEL_INSTALL_LAYOUT=other", - "KERNEL_INSTALL_INITRD_GENERATOR=none", - "KERNEL_INSTALL_UKI_GENERATOR=", -- "KERNEL_INSTALL_STAGING_AREA=${TMPDIR:-/tmp}/kernel-install.staging.XXXXXX" -+ "KERNEL_INSTALL_STAGING_AREA=/tmp/kernel-install.staging.XXXXXX" - ] - } - EOF - diff --git a/sys-apps/systemd/files/systemd-259-test-echo.patch b/sys-apps/systemd/files/systemd-259-test-echo.patch deleted file mode 100644 index af592fc79119..000000000000 --- a/sys-apps/systemd/files/systemd-259-test-echo.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://github.com/systemd/systemd/pull/40607 - -From 1766be649f2c153dee6fe2c79c5aac3a21c73a7b Mon Sep 17 00:00:00 2001 -From: Mike Gilbert <floppym@gentoo.org> -Date: Sun, 8 Feb 2026 19:12:30 -0500 -Subject: [PATCH] meson: use printf instead of echo - -The echo builtin provided by some shells (mksh) will interpret \x2d as -an escape sequence. This causes meson to fail: - -``` -test/fuzz/meson.build:93:52: ERROR: File fuzz-unit-file/dm-back-slash.swap does not exist. -``` - -Bug: https://bugs.gentoo.org/969789 ---- - test/fuzz/meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/test/fuzz/meson.build b/test/fuzz/meson.build -index d4cfc0a5b4816..6f9f43a4105f9 100644 ---- a/test/fuzz/meson.build -+++ b/test/fuzz/meson.build -@@ -42,7 +42,7 @@ if git.found() and fs.is_dir(meson.project_source_root() / '.git') - 'ls-files', ':/@0@/*/*'.format(fuzz_testsdir), - check: true) - else -- out = run_command(sh, '-c', 'cd "@0@"; echo @1@/*/*'.format(meson.project_source_root(), fuzz_testsdir), check: true) -+ out = run_command(sh, '-c', 'cd "@0@"; printf "%s " @1@/*/*'.format(meson.project_source_root(), fuzz_testsdir), check: true) - endif - - # Add crafted fuzz inputs we have in the repo diff --git a/sys-apps/systemd/files/systemd-260-kernel-install.patch b/sys-apps/systemd/files/systemd-260-kernel-install.patch deleted file mode 100644 index 7c4123737370..000000000000 --- a/sys-apps/systemd/files/systemd-260-kernel-install.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://bugs.gentoo.org/971388 -https://github.com/systemd/systemd/pull/41225 - -From 54db03334813a16721fa96c59b884f1591c758b5 Mon Sep 17 00:00:00 2001 -From: Robin Ebert <ebertrobin2002@gmail.com> -Date: Fri, 20 Mar 2026 13:32:04 +0100 -Subject: [PATCH] kernel-install: fix assert in context_copy - -(cherry picked from commit 55e7dc5ce4999ba9f01499dccdeba0235a86aaa4) ---- - src/kernel-install/kernel-install.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/kernel-install/kernel-install.c b/src/kernel-install/kernel-install.c -index a38dcaab8b556..618fa746c9bed 100644 ---- a/src/kernel-install/kernel-install.c -+++ b/src/kernel-install/kernel-install.c -@@ -152,10 +152,10 @@ static int context_copy(const Context *source, Context *ret) { - - assert(source); - assert(ret); -- assert(source->rfd >= 0 || source->rfd == AT_FDCWD); -+ assert(source->rfd >= 0 || source->rfd == AT_FDCWD || source->rfd == XAT_FDROOT); - - _cleanup_(context_done) Context copy = (Context) { -- .rfd = AT_FDCWD, -+ .rfd = source->rfd, - .action = source->action, - .machine_id = source->machine_id, - .machine_id_is_random = source->machine_id_is_random, diff --git a/sys-apps/systemd/metadata.xml b/sys-apps/systemd/metadata.xml index a30a8ef26cf6..efaebf72151c 100644 --- a/sys-apps/systemd/metadata.xml +++ b/sys-apps/systemd/metadata.xml @@ -22,7 +22,6 @@ <flag name="homed">Enable portable home directories</flag> <flag name="http">Enable embedded HTTP server in journald</flag> <flag name="importd">Enable import daemon</flag> - <flag name="iptables">Use libiptc from <pkg>net-firewall/iptables</pkg> for NAT support in systemd-networkd; this is used only if the running kernel does not support nftables</flag> <flag name="kernel-install">Enable kernel-install</flag> <flag name="kmod">Enable kernel module loading via <pkg>sys-apps/kmod</pkg></flag> <flag name="lz4">Enable lz4 compression for the journal</flag> diff --git a/sys-apps/systemd/systemd-258.3.ebuild b/sys-apps/systemd/systemd-258.3.ebuild deleted file mode 100644 index b1a31d9dce15..000000000000 --- a/sys-apps/systemd/systemd-258.3.ebuild +++ /dev/null @@ -1,579 +0,0 @@ -# Copyright 2011-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..14} ) - -# Avoid QA warnings -TMPFILES_OPTIONAL=1 -UDEV_OPTIONAL=1 - -QA_PKGCONFIG_VERSION=$(ver_cut 1) - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/systemd/systemd.git" - inherit git-r3 -else - MY_PV=${PV/_/-} - MY_P=${PN}-${MY_PV} - S=${WORKDIR}/${MY_P} - SRC_URI="https://github.com/systemd/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - - if [[ ${PV} != *rc* ]] ; then - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" - fi -fi - -inherit bash-completion-r1 linux-info meson-multilib optfeature pam python-single-r1 -inherit secureboot systemd toolchain-funcs udev - -DESCRIPTION="System and service manager for Linux" -HOMEPAGE="https://systemd.io/" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0/2" -IUSE=" - acl apparmor audit boot bpf cgroup-hybrid cryptsetup curl +dns-over-tls elfutils - fido2 +gcrypt gnutls homed http idn importd iptables +kernel-install +kmod - +lz4 lzma +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode - +resolvconf +seccomp selinux split-usr sysv-utils test tpm ukify vanilla xkb +zstd -" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - dns-over-tls? ( openssl ) - fido2? ( cryptsetup openssl ) - homed? ( cryptsetup pam openssl ) - importd? ( curl lzma openssl ) - ?? ( passwdqc pwquality ) - passwdqc? ( homed ) - pwquality? ( homed ) - boot? ( kernel-install ) - ukify? ( boot ) -" -RESTRICT="!test? ( test )" - -MINKV="4.15" - -COMMON_DEPEND=" - >=sys-apps/util-linux-2.32:0=[${MULTILIB_USEDEP}] - sys-libs/libcap:0=[${MULTILIB_USEDEP}] - virtual/libcrypt:=[${MULTILIB_USEDEP}] - acl? ( sys-apps/acl:0= ) - apparmor? ( >=sys-libs/libapparmor-2.13:0= ) - audit? ( >=sys-process/audit-2:0= ) - bpf? ( >=dev-libs/libbpf-1.4.0:0= ) - cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) - curl? ( >=net-misc/curl-7.32.0:0= ) - elfutils? ( >=dev-libs/elfutils-0.158:0= ) - fido2? ( - dev-libs/libfido2:0= - ) - gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] ) - gnutls? ( >=net-libs/gnutls-3.6.0:0= ) - http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) - idn? ( net-dns/libidn2:= ) - importd? ( - app-arch/bzip2:0= - virtual/zlib:= - ) - kmod? ( >=sys-apps/kmod-15:0= ) - lz4? ( >=app-arch/lz4-0_p131:0=[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] ) - iptables? ( net-firewall/iptables:0= ) - openssl? ( >=dev-libs/openssl-1.1.0:0= ) - pam? ( sys-libs/pam:=[${MULTILIB_USEDEP}] ) - passwdqc? ( sys-auth/passwdqc:0= ) - pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) - pcre? ( dev-libs/libpcre2 ) - pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) - qrcode? ( >=media-gfx/qrencode-3:0= ) - seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) - selinux? ( >=sys-libs/libselinux-2.1.9:0= ) - tpm? ( app-crypt/tpm2-tss:0= ) - xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) - zstd? ( >=app-arch/zstd-1.4.0:0=[${MULTILIB_USEDEP}] ) -" - -# Newer linux-headers needed by ia64, bug #480218 -DEPEND="${COMMON_DEPEND} - >=sys-kernel/linux-headers-${MINKV} -" - -PEFILE_DEPEND='dev-python/pefile[${PYTHON_USEDEP}]' - -# baselayout-2.2 has /run -RDEPEND="${COMMON_DEPEND} - >=acct-group/adm-0-r1 - >=acct-group/wheel-0-r1 - >=acct-group/kmem-0-r1 - >=acct-group/tty-0-r1 - >=acct-group/utmp-0-r1 - >=acct-group/audio-0-r1 - >=acct-group/cdrom-0-r1 - acct-group/clock - >=acct-group/dialout-0-r1 - >=acct-group/disk-0-r1 - >=acct-group/input-0-r1 - >=acct-group/kvm-0-r1 - >=acct-group/lp-0-r1 - >=acct-group/render-0-r1 - acct-group/sgx - >=acct-group/tape-0-r1 - acct-group/users - >=acct-group/video-0-r1 - >=acct-group/systemd-journal-0-r1 - >=acct-user/root-0-r1 - acct-user/nobody - >=acct-user/systemd-journal-remote-0-r1 - >=acct-user/systemd-coredump-0-r1 - >=acct-user/systemd-network-0-r1 - acct-user/systemd-oom - >=acct-user/systemd-resolve-0-r1 - >=acct-user/systemd-timesync-0-r1 - >=sys-apps/baselayout-2.2 - ukify? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep "${PEFILE_DEPEND}") - ) - selinux? ( - sec-policy/selinux-base-policy[systemd] - sec-policy/selinux-ntp - ) - sysv-utils? ( - !sys-apps/openrc[sysv-utils(-)] - !sys-apps/sysvinit - ) - !sysv-utils? ( sys-apps/sysvinit ) - resolvconf? ( !net-dns/openresolv ) - !sys-apps/hwids[udev] - !sys-auth/nss-myhostname - !sys-fs/eudev - !sys-fs/udev -" - -# sys-apps/dbus: the daemon only (+ build-time lib dep for tests) -PDEPEND=">=sys-apps/dbus-1.9.8[systemd] - >=sys-fs/udev-init-scripts-34 - policykit? ( sys-auth/polkit ) - !vanilla? ( sys-apps/gentoo-systemd-integration )" - -BDEPEND=" - app-arch/xz-utils:0 - dev-util/gperf - >=dev-build/meson-0.46 - >=sys-apps/coreutils-8.16 - sys-devel/gettext - virtual/pkgconfig - bpf? ( - >=dev-util/bpftool-7.0.0 - sys-devel/bpf-toolchain - ) - test? ( - app-text/tree - dev-lang/perl - sys-apps/dbus - ) - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt:0 - ${PYTHON_DEPS} - $(python_gen_cond_dep " - dev-python/jinja2[\${PYTHON_USEDEP}] - dev-python/lxml[\${PYTHON_USEDEP}] - boot? ( - >=dev-python/pyelftools-0.30[\${PYTHON_USEDEP}] - test? ( ${PEFILE_DEPEND} ) - ) - ") -" - -QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*" -QA_EXECSTACK="usr/lib/systemd/boot/efi/*" - -check_cgroup_layout() { - # https://bugs.gentoo.org/935261 - [[ ${MERGE_TYPE} != buildonly ]] || return - [[ -z ${ROOT} ]] || return - [[ -e /sys/fs/cgroup/unified ]] || return - grep -q 'SYSTEMD_CGROUP_ENABLE_LEGACY_FORCE=1' /proc/cmdline && return - - eerror "This system appears to be booted with the 'hybrid' cgroup layout." - eerror "This layout obsolete and is disabled in systemd." - - if grep -qF 'systemd.unified_cgroup_hierarchy'; then - eerror "Remove the systemd.unified_cgroup_hierarchy option" - eerror "from the kernel command line and reboot." - die "hybrid cgroup layout detected" - fi -} - -pkg_pretend() { - if use split-usr; then - eerror "Please complete the migration to merged-usr." - eerror "https://wiki.gentoo.org/wiki/Merge-usr" - die "systemd no longer supports split-usr" - fi - - check_cgroup_layout - - if use cgroup-hybrid; then - eerror "Disable the 'cgroup-hybrid' USE flag." - eerror "Rebuild any initramfs images after rebuilding systemd." - die "cgroup-hybrid is no longer supported" - fi - - if [[ ${MERGE_TYPE} != buildonly ]]; then - local CONFIG_CHECK="~BLK_DEV_BSG ~CGROUPS - ~CGROUP_BPF ~DEVTMPFS ~EPOLL ~FANOTIFY ~FHANDLE - ~INOTIFY_USER ~IPV6 ~NET ~NET_NS ~PROC_FS ~SIGNALFD ~SYSFS - ~TIMERFD ~TMPFS_XATTR ~UNIX ~USER_NS - ~CRYPTO_HMAC ~CRYPTO_SHA256 ~CRYPTO_USER_API_HASH - ~!GRKERNSEC_PROC ~!IDE ~!SYSFS_DEPRECATED - ~!SYSFS_DEPRECATED_V2" - - use acl && CONFIG_CHECK+=" ~TMPFS_POSIX_ACL" - use bpf && CONFIG_CHECK+=" ~BPF ~BPF_SYSCALL ~BPF_LSM ~DEBUG_INFO_BTF" - use seccomp && CONFIG_CHECK+=" ~SECCOMP ~SECCOMP_FILTER" - - if kernel_is -ge 5 10 20; then - CONFIG_CHECK+=" ~KCMP" - else - CONFIG_CHECK+=" ~CHECKPOINT_RESTORE" - fi - - if kernel_is -ge 4 18; then - CONFIG_CHECK+=" ~AUTOFS_FS" - else - CONFIG_CHECK+=" ~AUTOFS4_FS" - fi - - if linux_config_exists; then - local uevent_helper_path=$(linux_chkconfig_string UEVENT_HELPER_PATH) - if [[ -n ${uevent_helper_path} ]] && [[ ${uevent_helper_path} != '""' ]]; then - ewarn "It's recommended to set an empty value to the following kernel config option:" - ewarn "CONFIG_UEVENT_HELPER_PATH=${uevent_helper_path}" - fi - if linux_chkconfig_present X86; then - CONFIG_CHECK+=" ~DMIID" - fi - fi - - if kernel_is -lt ${MINKV//./ }; then - ewarn "Kernel version at least ${MINKV} required" - fi - - check_extra_config - fi -} - -pkg_setup() { - use boot && secureboot_pkg_setup -} - -src_unpack() { - default - [[ ${PV} != 9999 ]] || git-r3_src_unpack -} - -src_prepare() { - local PATCHES=( - "${FILESDIR}/systemd-258-shared-add-missing-alloc-util.patch" - "${FILESDIR}/systemd-258.3-kernel-install-test.patch" - "${FILESDIR}/systemd-259-test-echo.patch" - ) - - if ! use vanilla; then - PATCHES+=( - "${FILESDIR}/gentoo-journald-audit-r3.patch" - ) - fi - - default -} - -src_configure() { - # Prevent conflicts with i686 cross toolchain, bug 559726 - tc-export AR CC NM OBJCOPY RANLIB - - python_setup - - multilib-minimal_src_configure -} - -multilib_src_configure() { - local myconf=( - --localstatedir="${EPREFIX}/var" - -Ddocdir="share/doc/${PF}" - # default is developer, bug 918671 - -Dmode=release - -Dsupport-url="https://gentoo.org/support/" - -Dpamlibdir="$(getpam_mod_dir)" - # avoid bash-completion dep - -Dbashcompletiondir="$(get_bashcompdir)" - -Dsplit-bin=false - # Disable compatibility with sysvinit - -Dsysvinit-path= - -Dsysvrcnd-path= - # no deps - -Dima=true - # Match /etc/shells, bug 919749 - -Ddebug-shell="${EPREFIX}/bin/sh" - -Ddefault-user-shell="${EPREFIX}/bin/bash" - # Optional components/dependencies - $(meson_native_use_feature acl) - $(meson_native_use_feature apparmor) - $(meson_native_use_feature audit) - $(meson_native_use_feature boot bootloader) - $(meson_native_use_feature bpf bpf-framework) - -Dbpf-compiler=gcc - $(meson_native_use_feature cryptsetup libcryptsetup) - $(meson_native_use_feature curl libcurl) - $(meson_native_use_bool dns-over-tls dns-over-tls) - $(meson_native_use_feature elfutils) - $(meson_native_use_feature fido2 libfido2) - $(meson_feature gcrypt) - $(meson_native_use_feature gnutls) - $(meson_native_use_feature homed) - $(meson_native_use_feature http microhttpd) - $(meson_native_use_bool idn) - $(meson_native_use_feature importd) - $(meson_native_use_feature importd bzip2) - $(meson_native_use_feature importd zlib) - $(meson_native_use_bool kernel-install) - $(meson_native_use_feature kmod) - $(meson_feature lz4) - $(meson_feature lzma xz) - $(meson_use test tests) - $(meson_feature zstd) - $(meson_native_use_feature iptables libiptc) - $(meson_native_use_feature openssl) - $(meson_feature pam) - $(meson_native_use_feature passwdqc) - $(meson_native_use_feature pkcs11 p11kit) - $(meson_native_use_feature pcre pcre2) - $(meson_native_use_feature policykit polkit) - $(meson_native_use_feature pwquality) - $(meson_native_use_feature qrcode qrencode) - $(meson_native_use_feature seccomp) - $(meson_native_use_feature selinux) - $(meson_native_use_feature tpm tpm2) - $(meson_native_use_feature test dbus) - $(meson_native_use_feature ukify) - $(meson_native_use_feature xkb xkbcommon) - -Dntp-servers="0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" - # Breaks screen, tmux, etc. - -Ddefault-kill-user-processes=false - -Dcreate-log-dirs=false - - # multilib options - $(meson_native_true backlight) - $(meson_native_true binfmt) - $(meson_native_true coredump) - $(meson_native_true environment-d) - $(meson_native_true firstboot) - $(meson_native_true hibernate) - $(meson_native_true hostnamed) - $(meson_native_true ldconfig) - $(meson_native_true localed) - $(meson_native_enabled man) - $(meson_native_true networkd) - $(meson_native_true quotacheck) - $(meson_native_true randomseed) - $(meson_native_true rfkill) - $(meson_native_true sysusers) - $(meson_native_true timedated) - $(meson_native_true timesyncd) - $(meson_native_true tmpfiles) - $(meson_native_true vconsole) - ) - - case $(tc-arch) in - amd64|arm|arm64|loong|ppc|ppc64|riscv|s390|x86) - # src/vmspawn/vmspawn-util.h: QEMU_MACHINE_TYPE - myconf+=( $(meson_native_enabled vmspawn) ) ;; - *) - myconf+=( -Dvmspawn=disabled ) ;; - esac - - meson_src_configure "${myconf[@]}" -} - -multilib_src_test() { - ( - unset DBUS_SESSION_BUS_ADDRESS XDG_RUNTIME_DIR - export COLUMNS=80 - addpredict /dev - addpredict /proc - addpredict /run - addpredict /sys/fs/cgroup - meson_src_test --timeout-multiplier=10 - ) || die -} - -multilib_src_install_all() { - einstalldocs - dodoc "${FILESDIR}"/nsswitch.conf - - insinto /usr/lib/tmpfiles.d - doins "${FILESDIR}"/legacy.conf - - if ! use resolvconf; then - rm -f "${ED}"/usr/bin/resolvconf || die - fi - - if ! use sysv-utils; then - rm "${ED}"/usr/bin/{halt,init,poweroff,reboot,shutdown} || die - rm "${ED}"/usr/share/man/man1/init.1 || die - rm "${ED}"/usr/share/man/man8/{halt,poweroff,reboot,shutdown}.8 || die - fi - - # https://bugs.gentoo.org/761763 - rm -r "${ED}"/usr/lib/sysusers.d || die - - # Preserve empty dirs in /etc & /var, bug #437008 - keepdir /etc/{binfmt.d,modules-load.d,tmpfiles.d} - keepdir /etc/kernel/install.d - keepdir /etc/systemd/{network,system,user} - keepdir /etc/udev/rules.d - - keepdir /etc/udev/hwdb.d - - keepdir /usr/lib/systemd/{system-sleep,system-shutdown} - keepdir /usr/lib/{binfmt.d,modules-load.d} - keepdir /usr/lib/systemd/user-generators - keepdir /var/lib/systemd - keepdir /var/log/journal - - if use pam; then - if use selinux; then - newpamd "${FILESDIR}"/systemd-user-selinux.pam systemd-user - else - newpamd "${FILESDIR}"/systemd-user.pam systemd-user - fi - fi - - if use kernel-install; then - # Dummy config, remove to make room for sys-kernel/installkernel - rm "${ED}/usr/lib/kernel/install.conf" || die - fi - - use ukify && python_fix_shebang "${ED}" - use boot && secureboot_auto_sign -} - -migrate_locale() { - local envd_locale_def="${EROOT}/etc/env.d/02locale" - local envd_locale=( "${EROOT}"/etc/env.d/??locale ) - local locale_conf="${EROOT}/etc/locale.conf" - - if [[ ! -L ${locale_conf} && ! -e ${locale_conf} ]]; then - # If locale.conf does not exist... - if [[ -e ${envd_locale} ]]; then - # ...either copy env.d/??locale if there's one - ebegin "Moving ${envd_locale} to ${locale_conf}" - mv "${envd_locale}" "${locale_conf}" - eend ${?} || FAIL=1 - else - # ...or create a dummy default - ebegin "Creating ${locale_conf}" - cat > "${locale_conf}" <<-EOF - # This file has been created by the sys-apps/systemd ebuild. - # See locale.conf(5) and localectl(1). - - # LANG=${LANG} - EOF - eend ${?} || FAIL=1 - fi - fi - - if [[ ! -L ${envd_locale} ]]; then - # now, if env.d/??locale is not a symlink (to locale.conf)... - if [[ -e ${envd_locale} ]]; then - # ...warn the user that he has duplicate locale settings - ewarn - ewarn "To ensure consistent behavior, you should replace ${envd_locale}" - ewarn "with a symlink to ${locale_conf}. Please migrate your settings" - ewarn "and create the symlink with the following command:" - ewarn "ln -s -n -f ../locale.conf ${envd_locale}" - ewarn - else - # ...or just create the symlink if there's nothing here - ebegin "Creating ${envd_locale_def} -> ../locale.conf symlink" - ln -n -s ../locale.conf "${envd_locale_def}" - eend ${?} || FAIL=1 - fi - fi -} - -pkg_preinst() { - if [[ -e ${EROOT}/etc/sysctl.conf ]]; then - # Symlink /etc/sysctl.conf for easy migration. - dosym ../../../etc/sysctl.conf /usr/lib/sysctl.d/99-sysctl.conf - fi - - if ! use boot && has_version "sys-apps/systemd[gnuefi(-)]"; then - ewarn "The 'gnuefi' USE flag has been renamed to 'boot'." - ewarn "Make sure to enable the 'boot' USE flag if you use systemd-boot." - fi -} - -pkg_postinst() { - systemd_update_catalog - - # Keep this here in case the database format changes so it gets updated - # when required. - systemd-hwdb --root="${ROOT}" update - - udev_reload || FAIL=1 - - # Bug 465468, make sure locales are respected, and ensure consistency - # between OpenRC & systemd - migrate_locale - - if [[ -z ${REPLACING_VERSIONS} ]]; then - if type systemctl &>/dev/null; then - systemctl --root="${ROOT:-/}" enable getty@.service remote-fs.target || FAIL=1 - fi - elog "To enable a useful set of services, run the following:" - elog " systemctl preset-all --preset-mode=enable-only" - fi - - if [[ -L ${EROOT}/var/lib/systemd/timesync ]]; then - rm "${EROOT}/var/lib/systemd/timesync" - fi - - if [[ -z ${ROOT} && -d /run/systemd/system ]]; then - ebegin "Reexecuting system manager (systemd)" - systemctl daemon-reexec - eend $? || FAIL=1 - - # https://lists.freedesktop.org/archives/systemd-devel/2024-June/050466.html - ebegin "Signaling user managers to reexec" - systemctl kill --kill-whom='main' --signal='SIGRTMIN+25' 'user@*.service' - eend $? - fi - - if [[ ${FAIL} ]]; then - eerror "One of the postinst commands failed. Please check the postinst output" - eerror "for errors. You may need to clean up your system and/or try installing" - eerror "systemd again." - eerror - fi - - if use boot; then - optfeature "installing kernels in systemd-boot's native layout and update loader entries" \ - "sys-kernel/installkernel[systemd-boot]" - fi - if use ukify; then - optfeature "generating unified kernel image on each kernel installation" \ - "sys-kernel/installkernel[ukify]" - fi -} - -pkg_prerm() { - # If removing systemd completely, remove the catalog database. - if [[ ! ${REPLACED_BY_VERSION} ]]; then - rm -f -v "${EROOT}"/var/lib/systemd/catalog/database - fi -} diff --git a/sys-apps/systemd/systemd-259.3-r2.ebuild b/sys-apps/systemd/systemd-259.3-r2.ebuild deleted file mode 100644 index 85baee572009..000000000000 --- a/sys-apps/systemd/systemd-259.3-r2.ebuild +++ /dev/null @@ -1,585 +0,0 @@ -# Copyright 2011-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..14} ) - -# Avoid QA warnings -TMPFILES_OPTIONAL=1 -UDEV_OPTIONAL=1 - -QA_PKGCONFIG_VERSION=$(ver_cut 1) - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/systemd/systemd.git" - inherit git-r3 -else - MY_PV=${PV/_/-} - MY_P=${PN}-${MY_PV} - S=${WORKDIR}/${MY_P} - SRC_URI="https://github.com/systemd/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - - if [[ ${PV} != *rc* ]] ; then - KEYWORDS="amd64 arm arm64 ppc ppc64 ~s390 x86" - fi -fi - -inherit branding linux-info meson-multilib optfeature pam python-single-r1 -inherit secureboot shell-completion systemd toolchain-funcs udev - -DESCRIPTION="System and service manager for Linux" -HOMEPAGE="https://systemd.io/" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0/2" -IUSE=" - acl apparmor audit boot bpf cgroup-hybrid cryptsetup curl +dns-over-tls elfutils - fido2 +gcrypt gnutls homed http idn importd +kernel-install +kmod - +lz4 lzma +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode - +resolvconf +seccomp selinux split-usr sysv-utils test tpm ukify vanilla xkb +zstd -" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - dns-over-tls? ( openssl ) - fido2? ( cryptsetup openssl ) - homed? ( cryptsetup pam openssl ) - importd? ( curl lzma openssl ) - ?? ( passwdqc pwquality ) - passwdqc? ( homed ) - pwquality? ( homed ) - boot? ( kernel-install ) - ukify? ( boot ) -" -RESTRICT="!test? ( test )" - -MINKV="4.15" - -COMMON_DEPEND=" - >=sys-apps/util-linux-2.32:0=[${MULTILIB_USEDEP}] - sys-libs/libcap:0=[${MULTILIB_USEDEP}] - virtual/libcrypt:=[${MULTILIB_USEDEP}] - acl? ( sys-apps/acl:0= ) - apparmor? ( >=sys-libs/libapparmor-2.13:0= ) - audit? ( >=sys-process/audit-2:0= ) - bpf? ( >=dev-libs/libbpf-1.4.0:0= ) - cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) - curl? ( >=net-misc/curl-7.32.0:0= ) - elfutils? ( >=dev-libs/elfutils-0.158:0= ) - fido2? ( - dev-libs/libfido2:0= - ) - gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] ) - gnutls? ( >=net-libs/gnutls-3.6.0:0= ) - http? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) - idn? ( net-dns/libidn2:= ) - importd? ( - app-arch/bzip2:0= - virtual/zlib:= - ) - kmod? ( >=sys-apps/kmod-15:0= ) - lz4? ( >=app-arch/lz4-0_p131:0=[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] ) - openssl? ( >=dev-libs/openssl-1.1.0:0= ) - pam? ( sys-libs/pam:=[${MULTILIB_USEDEP}] ) - passwdqc? ( sys-auth/passwdqc:0= ) - pkcs11? ( >=app-crypt/p11-kit-0.23.3:0= ) - pcre? ( dev-libs/libpcre2 ) - pwquality? ( >=dev-libs/libpwquality-1.4.1:0= ) - qrcode? ( >=media-gfx/qrencode-3:0= ) - seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) - selinux? ( >=sys-libs/libselinux-2.1.9:0= ) - tpm? ( app-crypt/tpm2-tss:0= ) - xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) - zstd? ( >=app-arch/zstd-1.4.0:0=[${MULTILIB_USEDEP}] ) -" - -# Newer linux-headers needed by ia64, bug #480218 -DEPEND="${COMMON_DEPEND} - >=sys-kernel/linux-headers-${MINKV} -" - -PEFILE_DEPEND='dev-python/pefile[${PYTHON_USEDEP}]' - -# baselayout-2.2 has /run -RDEPEND="${COMMON_DEPEND} - >=acct-group/adm-0-r1 - >=acct-group/wheel-0-r1 - >=acct-group/kmem-0-r1 - >=acct-group/tty-0-r1 - >=acct-group/utmp-0-r1 - >=acct-group/audio-0-r1 - >=acct-group/cdrom-0-r1 - acct-group/clock - >=acct-group/dialout-0-r1 - >=acct-group/disk-0-r1 - >=acct-group/input-0-r1 - >=acct-group/kvm-0-r1 - >=acct-group/lp-0-r1 - >=acct-group/render-0-r1 - acct-group/sgx - >=acct-group/tape-0-r1 - acct-group/users - >=acct-group/video-0-r1 - >=acct-group/systemd-journal-0-r1 - >=acct-user/root-0-r1 - acct-user/nobody - >=acct-user/systemd-journal-remote-0-r1 - >=acct-user/systemd-coredump-0-r1 - >=acct-user/systemd-network-0-r1 - acct-user/systemd-oom - >=acct-user/systemd-resolve-0-r1 - >=acct-user/systemd-timesync-0-r1 - >=sys-apps/baselayout-2.2 - elibc_musl? ( >=sys-libs/musl-1.2.5-r8 ) - ukify? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep "${PEFILE_DEPEND}") - ) - selinux? ( - sec-policy/selinux-base-policy[systemd] - sec-policy/selinux-ntp - ) - sysv-utils? ( - !sys-apps/openrc[sysv-utils(-)] - !sys-apps/sysvinit - ) - !sysv-utils? ( sys-apps/sysvinit ) - resolvconf? ( !net-dns/openresolv ) - !sys-auth/nss-myhostname - !sys-fs/eudev - !sys-fs/udev -" - -# sys-apps/dbus: the daemon only (+ build-time lib dep for tests) -PDEPEND=" - >=sys-apps/dbus-1.9.8[systemd] - >=sys-fs/udev-init-scripts-34 - policykit? ( sys-auth/polkit ) - !sysv-utils? ( sys-apps/systemd-initctl ) - !vanilla? ( sys-apps/gentoo-systemd-integration ) -" - -BDEPEND=" - app-arch/xz-utils:0 - dev-util/gperf - >=dev-build/meson-0.46 - >=sys-apps/coreutils-8.16 - sys-devel/gettext - virtual/pkgconfig - bpf? ( - >=dev-util/bpftool-7.0.0 - sys-devel/bpf-toolchain - ) - test? ( - app-text/tree - dev-lang/perl - sys-apps/dbus - ) - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt:0 - ${PYTHON_DEPS} - $(python_gen_cond_dep " - dev-python/jinja2[\${PYTHON_USEDEP}] - dev-python/lxml[\${PYTHON_USEDEP}] - boot? ( - >=dev-python/pyelftools-0.30[\${PYTHON_USEDEP}] - test? ( ${PEFILE_DEPEND} ) - ) - ") -" - -QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*" -QA_EXECSTACK="usr/lib/systemd/boot/efi/*" - -check_cgroup_layout() { - # https://bugs.gentoo.org/935261 - [[ ${MERGE_TYPE} != buildonly ]] || return - [[ -z ${ROOT} ]] || return - [[ -e /sys/fs/cgroup/unified ]] || return - grep -q 'SYSTEMD_CGROUP_ENABLE_LEGACY_FORCE=1' /proc/cmdline && return - - eerror "This system appears to be booted with the 'hybrid' cgroup layout." - eerror "This layout obsolete and is disabled in systemd." - - if grep -qF 'systemd.unified_cgroup_hierarchy'; then - eerror "Remove the systemd.unified_cgroup_hierarchy option" - eerror "from the kernel command line and reboot." - die "hybrid cgroup layout detected" - fi -} - -pkg_pretend() { - if use split-usr; then - eerror "Please complete the migration to merged-usr." - eerror "https://wiki.gentoo.org/wiki/Merge-usr" - die "systemd no longer supports split-usr" - fi - - check_cgroup_layout - - if use cgroup-hybrid; then - eerror "Disable the 'cgroup-hybrid' USE flag." - eerror "Rebuild any initramfs images after rebuilding systemd." - die "cgroup-hybrid is no longer supported" - fi - - if [[ ${MERGE_TYPE} != buildonly ]]; then - local CONFIG_CHECK="~BLK_DEV_BSG ~CGROUPS - ~CGROUP_BPF ~DEVTMPFS ~EPOLL ~FANOTIFY ~FHANDLE - ~INOTIFY_USER ~IPV6 ~NET ~NET_NS ~PROC_FS ~SIGNALFD ~SYSFS - ~TIMERFD ~TMPFS_XATTR ~UNIX ~USER_NS - ~CRYPTO_HMAC ~CRYPTO_SHA256 ~CRYPTO_USER_API_HASH - ~!GRKERNSEC_PROC ~!IDE ~!SYSFS_DEPRECATED - ~!SYSFS_DEPRECATED_V2" - - use acl && CONFIG_CHECK+=" ~TMPFS_POSIX_ACL" - use bpf && CONFIG_CHECK+=" ~BPF ~BPF_SYSCALL ~BPF_LSM ~DEBUG_INFO_BTF" - use seccomp && CONFIG_CHECK+=" ~SECCOMP ~SECCOMP_FILTER" - - if kernel_is -ge 5 10 20; then - CONFIG_CHECK+=" ~KCMP" - else - CONFIG_CHECK+=" ~CHECKPOINT_RESTORE" - fi - - if kernel_is -ge 4 18; then - CONFIG_CHECK+=" ~AUTOFS_FS" - else - CONFIG_CHECK+=" ~AUTOFS4_FS" - fi - - if linux_config_exists; then - local uevent_helper_path=$(linux_chkconfig_string UEVENT_HELPER_PATH) - if [[ -n ${uevent_helper_path} ]] && [[ ${uevent_helper_path} != '""' ]]; then - ewarn "It's recommended to set an empty value to the following kernel config option:" - ewarn "CONFIG_UEVENT_HELPER_PATH=${uevent_helper_path}" - fi - if linux_chkconfig_present X86; then - CONFIG_CHECK+=" ~DMIID" - fi - fi - - if kernel_is -lt ${MINKV//./ }; then - ewarn "Kernel version at least ${MINKV} required" - fi - - check_extra_config - fi -} - -pkg_setup() { - use boot && secureboot_pkg_setup -} - -src_unpack() { - default - [[ ${PV} != 9999 ]] || git-r3_src_unpack -} - -src_prepare() { - local PATCHES=( - ) - - if ! use vanilla; then - PATCHES+=( - "${FILESDIR}/gentoo-journald-audit-r4.patch" - ) - fi - - default -} - -src_configure() { - # Prevent conflicts with i686 cross toolchain, bug 559726 - tc-export AR CC NM OBJCOPY RANLIB - - python_setup - - multilib-minimal_src_configure -} - -multilib_src_configure() { - local myconf=( - --localstatedir="${EPREFIX}/var" - -Ddocdir="share/doc/${PF}" - # default is developer, bug 918671 - -Dmode=release - -Dsupport-url="${BRANDING_OS_SUPPORT_URL}" - -Dpamlibdir="$(getpam_mod_dir)" - -Dlibc=$(usex elibc_musl musl glibc) - # avoid bash-completion dep - -Dbashcompletiondir="$(get_bashcompdir)" - -Dzshcompletiondir="$(get_zshcompdir)" - -Dsplit-bin=false - # Disable compatibility with sysvinit - -Dsysvinit-path= - -Dsysvrcnd-path= - # no deps - -Dima=true - # Match /etc/shells, bug 919749 - -Ddebug-shell="${EPREFIX}/bin/sh" - -Ddefault-user-shell="${EPREFIX}/bin/bash" - # Optional components/dependencies - $(meson_native_use_feature acl) - $(meson_native_use_feature apparmor) - $(meson_native_use_feature audit) - $(meson_native_use_feature boot bootloader) - $(meson_native_use_feature bpf bpf-framework) - -Dbpf-compiler=gcc - $(meson_native_use_feature cryptsetup libcryptsetup) - $(meson_native_use_feature curl libcurl) - $(meson_native_use_bool dns-over-tls dns-over-tls) - $(meson_native_use_feature elfutils) - $(meson_native_use_feature fido2 libfido2) - $(meson_feature gcrypt) - $(meson_native_use_feature gnutls) - $(meson_native_use_feature homed) - $(meson_native_use_feature http microhttpd) - $(meson_native_use_bool idn) - $(meson_native_use_feature importd) - $(meson_native_use_feature importd bzip2) - $(meson_native_use_feature importd zlib) - $(meson_native_use_bool kernel-install) - $(meson_native_use_feature kmod) - $(meson_feature lz4) - $(meson_feature lzma xz) - $(meson_feature zstd) - $(meson_native_use_feature openssl) - $(meson_feature pam) - $(meson_native_use_feature passwdqc) - $(meson_native_use_feature pkcs11 p11kit) - $(meson_native_use_feature pcre pcre2) - $(meson_native_use_feature policykit polkit) - $(meson_native_use_feature pwquality) - $(meson_native_use_feature qrcode qrencode) - $(meson_native_use_feature seccomp) - $(meson_native_use_feature selinux) - $(meson_native_use_feature tpm tpm2) - $(meson_native_use_feature test dbus) - $(meson_native_use_feature ukify) - $(meson_native_use_feature xkb xkbcommon) - -Dntp-servers="0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" - # Breaks screen, tmux, etc. - -Ddefault-kill-user-processes=false - -Dcreate-log-dirs=false - - # multilib options - $(meson_native_true backlight) - $(meson_native_true binfmt) - $(meson_native_true coredump) - $(meson_native_true environment-d) - $(meson_native_true firstboot) - $(meson_native_true hibernate) - $(meson_native_true hostnamed) - $(meson_native_true ldconfig) - $(meson_native_true localed) - $(meson_native_enabled man) - $(meson_native_true networkd) - $(meson_native_true quotacheck) - $(meson_native_true randomseed) - $(meson_native_true rfkill) - $(meson_native_true sysusers) - $(meson_native_true timedated) - $(meson_native_true timesyncd) - $(meson_native_true tmpfiles) - $(meson_native_true vconsole) - ) - - # workaround for bug 969103 - if [[ ${CHOST} == riscv32* ]] ; then - myconf+=( -Dtests=true ) - else - myconf+=( $(meson_use test tests) ) - fi - - case $(tc-arch) in - amd64|arm|arm64|loong|ppc|ppc64|riscv|s390|x86) - # src/vmspawn/vmspawn-util.h: QEMU_MACHINE_TYPE - myconf+=( $(meson_native_enabled vmspawn) ) ;; - *) - myconf+=( -Dvmspawn=disabled ) ;; - esac - - meson_src_configure "${myconf[@]}" -} - -multilib_src_test() { - ( - unset DBUS_SESSION_BUS_ADDRESS XDG_RUNTIME_DIR - export COLUMNS=80 - addpredict /dev - addpredict /proc - addpredict /run - addpredict /sys/fs/cgroup - meson_src_test --timeout-multiplier=10 - ) || die -} - -multilib_src_install_all() { - einstalldocs - dodoc "${FILESDIR}"/nsswitch.conf - - insinto /usr/lib/tmpfiles.d - doins "${FILESDIR}"/legacy.conf - - if ! use resolvconf; then - rm -f "${ED}"/usr/bin/resolvconf || die - fi - - if ! use sysv-utils; then - rm "${ED}"/usr/bin/{halt,init,poweroff,reboot,shutdown} || die - rm "${ED}"/usr/share/man/man1/init.1 || die - rm "${ED}"/usr/share/man/man8/{halt,poweroff,reboot,shutdown}.8 || die - fi - - # https://bugs.gentoo.org/761763 - rm -r "${ED}"/usr/lib/sysusers.d || die - - # Preserve empty dirs in /etc & /var, bug #437008 - keepdir /etc/{binfmt.d,modules-load.d,tmpfiles.d} - keepdir /etc/kernel/install.d - keepdir /etc/systemd/{network,system,user} - keepdir /etc/udev/rules.d - - keepdir /etc/udev/hwdb.d - - keepdir /usr/lib/systemd/{system-sleep,system-shutdown} - keepdir /usr/lib/{binfmt.d,modules-load.d} - keepdir /usr/lib/systemd/user-generators - keepdir /var/lib/systemd - keepdir /var/log/journal - - if use pam; then - if use selinux; then - newpamd "${FILESDIR}"/systemd-user-selinux.pam systemd-user - else - newpamd "${FILESDIR}"/systemd-user.pam systemd-user - fi - fi - - if use kernel-install; then - # Dummy config, remove to make room for sys-kernel/installkernel - rm "${ED}/usr/lib/kernel/install.conf" || die - fi - - use ukify && python_fix_shebang "${ED}" - use boot && secureboot_auto_sign -} - -migrate_locale() { - local envd_locale_def="${EROOT}/etc/env.d/02locale" - local envd_locale=( "${EROOT}"/etc/env.d/??locale ) - local locale_conf="${EROOT}/etc/locale.conf" - - if [[ ! -L ${locale_conf} && ! -e ${locale_conf} ]]; then - # If locale.conf does not exist... - if [[ -e ${envd_locale} ]]; then - # ...either copy env.d/??locale if there's one - ebegin "Moving ${envd_locale} to ${locale_conf}" - mv "${envd_locale}" "${locale_conf}" - eend ${?} || FAIL=1 - else - # ...or create a dummy default - ebegin "Creating ${locale_conf}" - cat > "${locale_conf}" <<-EOF - # This file has been created by the sys-apps/systemd ebuild. - # See locale.conf(5) and localectl(1). - - # LANG=${LANG} - EOF - eend ${?} || FAIL=1 - fi - fi - - if [[ ! -L ${envd_locale} ]]; then - # now, if env.d/??locale is not a symlink (to locale.conf)... - if [[ -e ${envd_locale} ]]; then - # ...warn the user that he has duplicate locale settings - ewarn - ewarn "To ensure consistent behavior, you should replace ${envd_locale}" - ewarn "with a symlink to ${locale_conf}. Please migrate your settings" - ewarn "and create the symlink with the following command:" - ewarn "ln -s -n -f ../locale.conf ${envd_locale}" - ewarn - else - # ...or just create the symlink if there's nothing here - ebegin "Creating ${envd_locale_def} -> ../locale.conf symlink" - ln -n -s ../locale.conf "${envd_locale_def}" - eend ${?} || FAIL=1 - fi - fi -} - -pkg_preinst() { - if [[ -e ${EROOT}/etc/sysctl.conf ]]; then - # Symlink /etc/sysctl.conf for easy migration. - dosym ../../../etc/sysctl.conf /usr/lib/sysctl.d/99-sysctl.conf - fi - - if ! use boot && has_version "sys-apps/systemd[gnuefi(-)]"; then - ewarn "The 'gnuefi' USE flag has been renamed to 'boot'." - ewarn "Make sure to enable the 'boot' USE flag if you use systemd-boot." - fi -} - -pkg_postinst() { - systemd_update_catalog - - # Keep this here in case the database format changes so it gets updated - # when required. - systemd-hwdb --root="${ROOT}" update - - udev_reload || FAIL=1 - - # Bug 465468, make sure locales are respected, and ensure consistency - # between OpenRC & systemd - migrate_locale - - if [[ -z ${REPLACING_VERSIONS} ]]; then - if type systemctl &>/dev/null; then - systemctl --root="${ROOT:-/}" enable getty@.service remote-fs.target || FAIL=1 - fi - elog "To enable a useful set of services, run the following:" - elog " systemctl preset-all --preset-mode=enable-only" - fi - - if [[ -L ${EROOT}/var/lib/systemd/timesync ]]; then - rm "${EROOT}/var/lib/systemd/timesync" - fi - - if [[ -z ${ROOT} && -d /run/systemd/system ]]; then - ebegin "Reexecuting system manager (systemd)" - systemctl daemon-reexec - eend $? || FAIL=1 - - # https://lists.freedesktop.org/archives/systemd-devel/2024-June/050466.html - ebegin "Signaling user managers to reexec" - systemctl kill --kill-whom='main' --signal='SIGRTMIN+25' 'user@*.service' - eend $? - fi - - if [[ ${FAIL} ]]; then - eerror "One of the postinst commands failed. Please check the postinst output" - eerror "for errors. You may need to clean up your system and/or try installing" - eerror "systemd again." - eerror - fi - - if use boot; then - optfeature "installing kernels in systemd-boot's native layout and update loader entries" \ - "sys-kernel/installkernel[systemd-boot]" - fi - if use ukify; then - optfeature "generating unified kernel image on each kernel installation" \ - "sys-kernel/installkernel[ukify]" - fi -} - -pkg_prerm() { - # If removing systemd completely, remove the catalog database. - if [[ ! ${REPLACED_BY_VERSION} ]]; then - rm -f -v "${EROOT}"/var/lib/systemd/catalog/database - fi -} diff --git a/sys-apps/systemd/systemd-259.4-r1.ebuild b/sys-apps/systemd/systemd-259.4-r1.ebuild index ffe9b530888c..174fd972e7a1 100644 --- a/sys-apps/systemd/systemd-259.4-r1.ebuild +++ b/sys-apps/systemd/systemd-259.4-r1.ebuild @@ -544,8 +544,7 @@ pkg_postinst() { # Keep this here in case the database format changes so it gets updated # when required. - systemd-hwdb --root="${ROOT}" update - + udev_hwdb_update || FAIL=1 udev_reload || FAIL=1 # Bug 465468, make sure locales are respected, and ensure consistency diff --git a/sys-apps/systemd/systemd-260-r2.ebuild b/sys-apps/systemd/systemd-260-r2.ebuild deleted file mode 100644 index 322efa2f4f04..000000000000 --- a/sys-apps/systemd/systemd-260-r2.ebuild +++ /dev/null @@ -1,594 +0,0 @@ -# Copyright 2011-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..14} ) - -# Avoid QA warnings -TMPFILES_OPTIONAL=1 -UDEV_OPTIONAL=1 - -QA_PKGCONFIG_VERSION=$(ver_cut 1) - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/systemd/systemd.git" - inherit git-r3 -else - MY_PV=${PV/_/-} - MY_P=${PN}-${MY_PV} - S=${WORKDIR}/${MY_P} - SRC_URI="https://github.com/systemd/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - - if [[ ${PV} != *rc* ]] ; then - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - fi -fi - -inherit branding linux-info meson-multilib optfeature pam python-single-r1 -inherit secureboot shell-completion systemd toolchain-funcs udev - -DESCRIPTION="System and service manager for Linux" -HOMEPAGE="https://systemd.io/" - -LICENSE="GPL-2 LGPL-2.1 MIT public-domain" -SLOT="0/2" -IUSE=" - acl apparmor audit boot bpf cryptsetup curl +dns-over-tls elfutils - fido2 +gcrypt gnutls homed idn importd +kernel-install +kmod +lz4 lzma - +openssl pam passwdqc pcre pkcs11 policykit pwquality qrcode remote - +resolvconf +seccomp selinux sysv-utils test tpm ukify vanilla xkb +zstd -" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - boot? ( kernel-install ) - dns-over-tls? ( openssl ) - fido2? ( cryptsetup openssl ) - homed? ( cryptsetup pam openssl ) - importd? ( curl lzma openssl ) - ?? ( passwdqc pwquality ) - passwdqc? ( homed ) - pwquality? ( homed ) - remote? ( curl ) - ukify? ( boot ) -" -RESTRICT="!test? ( test )" - -MINKV="5.10" - -COMMON_DEPEND=" - >=sys-apps/util-linux-2.37 - acl? ( sys-apps/acl ) - apparmor? ( >=sys-libs/libapparmor-2.13 ) - audit? ( >=sys-process/audit-2 ) - bpf? ( >=dev-libs/libbpf-1.4.0 ) - cryptsetup? ( >=sys-fs/cryptsetup-2.4.0:= ) - curl? ( >=net-misc/curl-7.32.0:0= ) - elfutils? ( >=dev-libs/elfutils-0.177 ) - elibc_glibc? ( - >=sys-libs/glibc-2.34 - >=sys-libs/libxcrypt-4.4.0 - ) - elibc_musl? ( - >=sys-libs/musl-1.2.5-r8 - virtual/libcrypt - ) - fido2? ( - dev-libs/libfido2 - ) - gcrypt? ( >=dev-libs/libgcrypt-1.4.5 ) - gnutls? ( >=net-libs/gnutls-3.6.0:0= ) - remote? ( >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] ) - idn? ( net-dns/libidn2 ) - importd? ( - app-arch/bzip2:0= - virtual/zlib:= - ) - kmod? ( >=sys-apps/kmod-15:0= ) - lz4? ( >=app-arch/lz4-0_p131:0= ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1:0= ) - openssl? ( >=dev-libs/openssl-3.0.0:0= ) - pam? ( sys-libs/pam:=[${MULTILIB_USEDEP}] ) - passwdqc? ( sys-auth/passwdqc ) - pkcs11? ( >=app-crypt/p11-kit-0.23.3 ) - pcre? ( dev-libs/libpcre2 ) - pwquality? ( >=dev-libs/libpwquality-1.4.1 ) - qrcode? ( >=media-gfx/qrencode-3:0= ) - seccomp? ( >=sys-libs/libseccomp-2.4.0 ) - selinux? ( >=sys-libs/libselinux-2.1.9 ) - tpm? ( app-crypt/tpm2-tss ) - xkb? ( >=x11-libs/libxkbcommon-0.4.1 ) - zstd? ( >=app-arch/zstd-1.4.0:0= ) -" - -# Newer linux-headers needed by ia64, bug #480218 -DEPEND="${COMMON_DEPEND} - >=sys-kernel/linux-headers-${MINKV} -" - -PEFILE_DEPEND='dev-python/pefile[${PYTHON_USEDEP}]' - -# baselayout-2.2 has /run -RDEPEND="${COMMON_DEPEND} - >=acct-group/adm-0-r1 - >=acct-group/wheel-0-r1 - >=acct-group/kmem-0-r1 - >=acct-group/tty-0-r1 - >=acct-group/utmp-0-r1 - >=acct-group/audio-0-r1 - >=acct-group/cdrom-0-r1 - acct-group/clock - >=acct-group/dialout-0-r1 - >=acct-group/disk-0-r1 - >=acct-group/input-0-r1 - >=acct-group/kvm-0-r1 - >=acct-group/lp-0-r1 - >=acct-group/render-0-r1 - acct-group/sgx - >=acct-group/tape-0-r1 - acct-group/users - >=acct-group/video-0-r1 - >=acct-group/systemd-journal-0-r1 - >=acct-user/root-0-r1 - acct-user/nobody - >=acct-user/systemd-journal-remote-0-r1 - >=acct-user/systemd-coredump-0-r1 - >=acct-user/systemd-network-0-r1 - acct-user/systemd-oom - >=acct-user/systemd-resolve-0-r1 - >=acct-user/systemd-timesync-0-r1 - >=sys-apps/baselayout-2.2 - ukify? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep "${PEFILE_DEPEND}") - ) - selinux? ( - sec-policy/selinux-base-policy[systemd] - sec-policy/selinux-ntp - ) - sysv-utils? ( - !sys-apps/openrc[sysv-utils(-)] - !sys-apps/sysvinit - ) - !sysv-utils? ( sys-apps/sysvinit ) - resolvconf? ( !net-dns/openresolv ) - !sys-auth/nss-myhostname - !sys-fs/eudev - !sys-fs/udev -" - -# sys-apps/dbus: the daemon only (+ build-time lib dep for tests) -PDEPEND=" - >=sys-apps/dbus-1.9.8[systemd] - >=sys-fs/udev-init-scripts-34 - policykit? ( sys-auth/polkit ) - !sysv-utils? ( sys-apps/systemd-initctl ) - !vanilla? ( sys-apps/gentoo-systemd-integration ) -" - -BDEPEND=" - app-arch/xz-utils:0 - dev-util/gperf - >=dev-build/meson-0.46 - >=sys-apps/coreutils-8.16 - sys-devel/gettext - virtual/pkgconfig - bpf? ( - >=dev-util/bpftool-7.0.0 - sys-devel/bpf-toolchain - ) - test? ( - app-text/tree - dev-lang/perl - >=dev-libs/glib-2.22.0:2 - sys-apps/dbus - ) - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xml-dtd:4.5 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt:0 - ${PYTHON_DEPS} - $(python_gen_cond_dep " - dev-python/jinja2[\${PYTHON_USEDEP}] - dev-python/lxml[\${PYTHON_USEDEP}] - boot? ( - >=dev-python/pyelftools-0.30[\${PYTHON_USEDEP}] - test? ( ${PEFILE_DEPEND} ) - ) - ") -" - -QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*" -QA_EXECSTACK="usr/lib/systemd/boot/efi/*" - -pkg_pretend() { - if [[ ${MERGE_TYPE} != buildonly ]]; then - local CONFIG_CHECK="~BLK_DEV_BSG ~CGROUPS - ~CGROUP_BPF ~DEVTMPFS ~EPOLL ~FANOTIFY ~FHANDLE - ~INOTIFY_USER ~IPV6 ~NET ~NET_NS ~PROC_FS ~SIGNALFD ~SYSFS - ~TIMERFD ~TMPFS_XATTR ~UNIX ~USER_NS - ~CRYPTO_HMAC ~CRYPTO_SHA256 ~CRYPTO_USER_API_HASH - ~!GRKERNSEC_PROC ~!IDE ~!SYSFS_DEPRECATED - ~!SYSFS_DEPRECATED_V2" - - use acl && CONFIG_CHECK+=" ~TMPFS_POSIX_ACL" - use bpf && CONFIG_CHECK+=" ~BPF ~BPF_SYSCALL ~BPF_LSM ~DEBUG_INFO_BTF" - use seccomp && CONFIG_CHECK+=" ~SECCOMP ~SECCOMP_FILTER" - - if kernel_is -ge 5 10 20; then - CONFIG_CHECK+=" ~KCMP" - else - CONFIG_CHECK+=" ~CHECKPOINT_RESTORE" - fi - - if kernel_is -ge 4 18; then - CONFIG_CHECK+=" ~AUTOFS_FS" - else - CONFIG_CHECK+=" ~AUTOFS4_FS" - fi - - if linux_config_exists; then - local uevent_helper_path=$(linux_chkconfig_string UEVENT_HELPER_PATH) - if [[ -n ${uevent_helper_path} ]] && [[ ${uevent_helper_path} != '""' ]]; then - ewarn "It's recommended to set an empty value to the following kernel config option:" - ewarn "CONFIG_UEVENT_HELPER_PATH=${uevent_helper_path}" - fi - if linux_chkconfig_present X86; then - CONFIG_CHECK+=" ~DMIID" - fi - fi - - if kernel_is -lt ${MINKV//./ }; then - ewarn "Kernel version at least ${MINKV} required" - fi - - check_extra_config - fi -} - -pkg_setup() { - use boot && secureboot_pkg_setup -} - -src_unpack() { - default - [[ ${PV} != 9999 ]] || git-r3_src_unpack -} - -src_prepare() { - local PATCHES=( - "${FILESDIR}/systemd-260-mips.patch" - "${FILESDIR}/systemd-260-kernel-install.patch" - ) - - if ! use vanilla; then - PATCHES+=( - "${FILESDIR}/gentoo-journald-audit-r4.patch" - ) - fi - - default -} - -src_configure() { - # Prevent conflicts with i686 cross toolchain, bug 559726 - tc-export AR CC NM OBJCOPY RANLIB - - python_setup - - multilib-minimal_src_configure -} - -multilib_src_configure() { - local myconf=( - --localstatedir="${EPREFIX}/var" - -Ddocdir="share/doc/${PF}" - -Dmode=release # default is developer, bug 918671 - -Dlibc=$(usex elibc_musl musl glibc) - -Dsupport-url="${BRANDING_OS_SUPPORT_URL}" - -Dpamlibdir="$(getpam_mod_dir)" - -Dbashcompletiondir="$(get_bashcompdir)" - -Dzshcompletiondir="$(get_zshcompdir)" - -Dsplit-bin=false - -Dima=true # no deps - -Ddebug-shell="${EPREFIX}/bin/sh" # Match /etc/shells, bug 919749 - -Ddefault-user-shell="${EPREFIX}/bin/bash" - -Dbpf-compiler=gcc - -Dntp-servers="0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" - # Breaks screen, tmux, etc. - -Ddefault-kill-user-processes=false - -Dcreate-log-dirs=false - -Dlibcrypt=enabled - -Dcompat-mutable-uid-boundaries=true - - # options affecting multilib - $(meson_use !elibc_musl nss-myhostname) - $(meson_feature !elibc_musl nss-mymachines) - $(meson_feature !elibc_musl nss-resolve) - $(meson_use !elibc_musl nss-systemd) - $(meson_feature pam) - ) - - # workaround for bug 969103 - if [[ ${CHOST} == riscv32* ]] ; then - myconf+=( -Dtests=true ) - else - myconf+=( $(meson_use test tests) ) - fi - - if multilib_is_native_abi; then - myconf+=( - --auto-features=enabled - -Dman=enabled - -Dxenctrl=disabled - - # Optional components/dependencies - $(meson_feature acl) - $(meson_feature apparmor) - $(meson_feature audit) - $(meson_feature boot bootloader) - $(meson_feature bpf bpf-framework) - $(meson_feature cryptsetup libcryptsetup) - $(meson_feature cryptsetup libcryptsetup-plugins) - $(meson_feature curl libcurl) - $(meson_use dns-over-tls dns-over-tls) - $(meson_feature elfutils) - $(meson_feature fido2 libfido2) - $(meson_feature gcrypt) - $(meson_feature gnutls) - $(meson_feature homed) - $(meson_use idn) - $(meson_feature importd) - $(meson_feature importd bzip2) - $(meson_feature importd sysupdate) - $(meson_feature importd zlib) - $(meson_use kernel-install) - $(meson_feature kmod) - $(meson_feature lz4) - $(meson_feature lzma xz) - $(meson_feature zstd) - $(meson_feature openssl) - $(meson_feature passwdqc) - $(meson_feature pkcs11 p11kit) - $(meson_feature pcre pcre2) - $(meson_feature policykit polkit) - $(meson_feature pwquality) - $(meson_feature qrcode qrencode) - $(meson_feature remote) - $(meson_feature remote microhttpd) - $(meson_feature seccomp) - $(meson_feature selinux) - $(meson_feature tpm tpm2) - $(meson_feature test dbus) - $(meson_feature test glib) - $(meson_feature ukify) - $(meson_feature xkb xkbcommon) - ) - - case $(tc-arch) in - amd64|arm|arm64|loong|ppc|ppc64|riscv|s390|x86) - # src/vmspawn/vmspawn-util.h: QEMU_MACHINE_TYPE - myconf+=( $(meson_native_enabled vmspawn) ) ;; - *) - myconf+=( -Dvmspawn=disabled ) ;; - esac - else - myconf+=( - --auto-features=disabled - ) - fi - - meson_src_configure "${myconf[@]}" -} - -multilib_src_compile() { - local args=() - if ! multilib_is_native_abi; then - args+=( - devel libsystemd libudev - $(usex elibc_musl '' nss) - $(usev pam) - ) - fi - meson_src_compile "${args[@]}" -} - -multilib_src_test() { - local args=( --timeout-multiplier=10 ) - if ! multilib_is_native_abi; then - args+=( - --suite libsystemd --suite libudev - $(usex elibc_musl '' '--suite nss') - $(usex pam '--suite pam' '') - ) - fi - ( - unset DBUS_SESSION_BUS_ADDRESS XDG_RUNTIME_DIR - export COLUMNS=80 - addpredict /dev - addpredict /proc - addpredict /run - addpredict /sys/fs/cgroup - meson_src_test "${args[@]}" - ) || die -} - -multilib_src_install() { - local args=() - if ! multilib_is_native_abi; then - local tags=devel,libsystemd,libudev - use !elibc_musl && tags+=,nss - use pam && tags+=,pam - args+=( --tags "${tags}" ) - fi - meson_src_install "${args[@]}" -} - -multilib_src_install_all() { - einstalldocs - dodoc "${FILESDIR}"/nsswitch.conf - - insinto /usr/lib/tmpfiles.d - doins "${FILESDIR}"/legacy.conf - - if ! use resolvconf; then - rm -f "${ED}"/usr/bin/resolvconf || die - fi - - if ! use sysv-utils; then - rm "${ED}"/usr/bin/{halt,init,poweroff,reboot,shutdown} || die - rm "${ED}"/usr/share/man/man1/init.1 || die - rm "${ED}"/usr/share/man/man8/{halt,poweroff,reboot,shutdown}.8 || die - fi - - # https://bugs.gentoo.org/761763 - rm -r "${ED}"/usr/lib/sysusers.d || die - - # Preserve empty dirs in /etc & /var, bug #437008 - keepdir /etc/{binfmt.d,modules-load.d,tmpfiles.d} - keepdir /etc/kernel/install.d - keepdir /etc/systemd/{network,system,user} - keepdir /etc/udev/rules.d - - keepdir /etc/udev/hwdb.d - - keepdir /usr/lib/systemd/{system-sleep,system-shutdown} - keepdir /usr/lib/{binfmt.d,modules-load.d} - keepdir /usr/lib/systemd/user-generators - keepdir /var/lib/systemd - keepdir /var/log/journal - - if use pam; then - if use selinux; then - newpamd "${FILESDIR}"/systemd-user-selinux.pam systemd-user - else - newpamd "${FILESDIR}"/systemd-user.pam systemd-user - fi - fi - - if use kernel-install; then - # Dummy config, remove to make room for sys-kernel/installkernel - rm "${ED}/usr/lib/kernel/install.conf" || die - fi - - use ukify && python_fix_shebang "${ED}" - use boot && secureboot_auto_sign -} - -migrate_locale() { - local envd_locale_def="${EROOT}/etc/env.d/02locale" - local envd_locale=( "${EROOT}"/etc/env.d/??locale ) - local locale_conf="${EROOT}/etc/locale.conf" - - if [[ ! -L ${locale_conf} && ! -e ${locale_conf} ]]; then - # If locale.conf does not exist... - if [[ -e ${envd_locale} ]]; then - # ...either copy env.d/??locale if there's one - ebegin "Moving ${envd_locale} to ${locale_conf}" - mv "${envd_locale}" "${locale_conf}" - eend ${?} || FAIL=1 - else - # ...or create a dummy default - ebegin "Creating ${locale_conf}" - cat > "${locale_conf}" <<-EOF - # This file has been created by the sys-apps/systemd ebuild. - # See locale.conf(5) and localectl(1). - - # LANG=${LANG} - EOF - eend ${?} || FAIL=1 - fi - fi - - if [[ ! -L ${envd_locale} ]]; then - # now, if env.d/??locale is not a symlink (to locale.conf)... - if [[ -e ${envd_locale} ]]; then - # ...warn the user that he has duplicate locale settings - ewarn - ewarn "To ensure consistent behavior, you should replace ${envd_locale}" - ewarn "with a symlink to ${locale_conf}. Please migrate your settings" - ewarn "and create the symlink with the following command:" - ewarn "ln -s -n -f ../locale.conf ${envd_locale}" - ewarn - else - # ...or just create the symlink if there's nothing here - ebegin "Creating ${envd_locale_def} -> ../locale.conf symlink" - ln -n -s ../locale.conf "${envd_locale_def}" - eend ${?} || FAIL=1 - fi - fi -} - -pkg_preinst() { - if [[ -e ${EROOT}/etc/sysctl.conf ]]; then - # Symlink /etc/sysctl.conf for easy migration. - dosym ../../../etc/sysctl.conf /usr/lib/sysctl.d/99-sysctl.conf - fi - - if ! use boot && has_version "sys-apps/systemd[gnuefi(-)]"; then - ewarn "The 'gnuefi' USE flag has been renamed to 'boot'." - ewarn "Make sure to enable the 'boot' USE flag if you use systemd-boot." - fi -} - -pkg_postinst() { - systemd_update_catalog - - # Keep this here in case the database format changes so it gets updated - # when required. - systemd-hwdb --root="${ROOT}" update - - udev_reload || FAIL=1 - - # Bug 465468, make sure locales are respected, and ensure consistency - # between OpenRC & systemd - migrate_locale - - # Bug 971385 - systemd_reenable getty@.service - - if [[ -z ${REPLACING_VERSIONS} ]]; then - if type systemctl &>/dev/null; then - systemctl --root="${ROOT:-/}" enable getty@.service remote-fs.target || FAIL=1 - fi - elog "To enable a useful set of services, run the following:" - elog " systemctl preset-all --preset-mode=enable-only" - fi - - if [[ -L ${EROOT}/var/lib/systemd/timesync ]]; then - rm "${EROOT}/var/lib/systemd/timesync" - fi - - if [[ -z ${ROOT} && -d /run/systemd/system ]]; then - ebegin "Reexecuting system manager (systemd)" - systemctl daemon-reexec - eend $? || FAIL=1 - - # https://lists.freedesktop.org/archives/systemd-devel/2024-June/050466.html - ebegin "Signaling user managers to reexec" - systemctl kill --kill-whom='main' --signal='SIGRTMIN+25' 'user@*.service' - eend $? - fi - - if [[ ${FAIL} ]]; then - eerror "One of the postinst commands failed. Please check the postinst output" - eerror "for errors. You may need to clean up your system and/or try installing" - eerror "systemd again." - eerror - fi - - if use boot; then - optfeature "installing kernels in systemd-boot's native layout and update loader entries" \ - "sys-kernel/installkernel[systemd-boot]" - fi - if use ukify; then - optfeature "generating unified kernel image on each kernel installation" \ - "sys-kernel/installkernel[ukify]" - fi -} - -pkg_prerm() { - # If removing systemd completely, remove the catalog database. - if [[ ! ${REPLACED_BY_VERSION} ]]; then - rm -f -v "${EROOT}"/var/lib/systemd/catalog/database - fi -} diff --git a/sys-apps/systemd/systemd-260.1.ebuild b/sys-apps/systemd/systemd-260.1.ebuild index ba84db6f05c0..08a0930142b4 100644 --- a/sys-apps/systemd/systemd-260.1.ebuild +++ b/sys-apps/systemd/systemd-260.1.ebuild @@ -548,8 +548,7 @@ pkg_postinst() { # Keep this here in case the database format changes so it gets updated # when required. - systemd-hwdb --root="${ROOT}" update - + udev_hwdb_update || FAIL=1 udev_reload || FAIL=1 # Bug 465468, make sure locales are respected, and ensure consistency diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index 41d15675111d..cdf1a41de7ba 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -547,8 +547,7 @@ pkg_postinst() { # Keep this here in case the database format changes so it gets updated # when required. - systemd-hwdb --root="${ROOT}" update - + udev_hwdb_update || FAIL=1 udev_reload || FAIL=1 # Bug 465468, make sure locales are respected, and ensure consistency diff --git a/sys-auth/AusweisApp/AusweisApp-2.5.1.ebuild b/sys-auth/AusweisApp/AusweisApp-2.5.1.ebuild new file mode 100644 index 000000000000..ed4be18d7760 --- /dev/null +++ b/sys-auth/AusweisApp/AusweisApp-2.5.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg-utils + +DESCRIPTION="Official authentication app for German ID cards and residence permits" +HOMEPAGE="https://www.ausweisapp.bund.de/" +SRC_URI="https://github.com/Governikus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="EUPL-1.2" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + dev-qt/qtshadertools:6 + dev-qt/qttools:6[linguist] + virtual/pkgconfig" + +RDEPEND=" + dev-libs/openssl:0= + dev-qt/qtbase:6[concurrent,network,widgets] + dev-qt/qtdeclarative:6[widgets] + dev-qt/qtscxml:6[qml] + dev-qt/qtsvg:6 + dev-qt/qtwebsockets:6[qml] + net-libs/http-parser:0= + sys-apps/pcsc-lite + virtual/udev" + +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=OFF + ) + cmake_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} diff --git a/sys-auth/AusweisApp/Manifest b/sys-auth/AusweisApp/Manifest index 484e2cd2f63f..66c128b3a3ea 100644 --- a/sys-auth/AusweisApp/Manifest +++ b/sys-auth/AusweisApp/Manifest @@ -1 +1,2 @@ DIST AusweisApp-2.4.1.tar.gz 6538580 BLAKE2B 39e6523c32db4b07d94637da838e67259e45b428940816b7e6d40badb3ebbefff4d84640433baa635db728c648c7f05f9c7769bd1cd1885d5c164a278ed8f3f6 SHA512 c59c575afc59007c5e63842cb4111bdb8135803b1f93005cc0e2016aabedf5d1877e84de62f83fdd88dd7469b88bd603e00e44dcd70633c7331349e45a55185b +DIST AusweisApp-2.5.1.tar.gz 6011351 BLAKE2B cc33906acc6b3a51b711711edf062194fc99d61877770f67ae4bb175b08077530e7f354947451455342d09e3b99290dfc7861dd363a91972b645c2e2038502e0 SHA512 9d94d9cbacd5ddc28b2a4df7a1b01d27c9e305d83e0dfaeff68a7adc48e700037de71b87407b8b1a0d3d84002a6944b68740bd1b0b82a661a182426e47941018 diff --git a/sys-auth/polkit/polkit-126-r2.ebuild b/sys-auth/polkit/polkit-126-r3.ebuild index c7f122d9a83a..76e720a72867 100644 --- a/sys-auth/polkit/polkit-126-r2.ebuild +++ b/sys-auth/polkit/polkit-126-r3.ebuild @@ -28,8 +28,9 @@ SLOT="0" if [[ ${PV} != 9999 ]] ; then KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" fi -IUSE="examples gtk +introspection kde pam nls selinux systemd test" +IUSE="elogind examples gtk +introspection kde pam nls selinux systemd test" RESTRICT="!test? ( test )" +REQUIRED_USE="?? ( elogind systemd )" BDEPEND=" acct-user/polkitd @@ -52,13 +53,13 @@ DEPEND=" >=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= + elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) - !systemd? ( sys-auth/elogind ) " RDEPEND=" ${DEPEND} @@ -104,6 +105,11 @@ src_prepare() { src_configure() { xdg_environment_reset + # Use ConsoleKit as a fallback with no build-time dependencies, bug 973339 + local session_tracking=ConsoleKit + use elogind && session_tracking=elogind + use systemd && session_tracking=logind + local emesonargs=( --localstatedir="${EPREFIX}"/var -Dauthfw="$(usex pam pam shadow)" @@ -113,7 +119,7 @@ src_configure() { -Dos_type=gentoo -Dpam_module_dir=$(getpam_mod_dir) -Dprivileged_group=0 - -Dsession_tracking="$(usex systemd logind elogind)" + -Dsession_tracking="${session_tracking}" -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)" -Dlibs-only=false $(meson_use introspection) diff --git a/sys-auth/polkit/polkit-9999.ebuild b/sys-auth/polkit/polkit-9999.ebuild index d63fa01c8275..b7497ef6f622 100644 --- a/sys-auth/polkit/polkit-9999.ebuild +++ b/sys-auth/polkit/polkit-9999.ebuild @@ -28,8 +28,9 @@ SLOT="0" if [[ ${PV} != 9999 ]] ; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" fi -IUSE="examples gtk +introspection kde pam nls selinux systemd test" +IUSE="elogind examples gtk +introspection kde pam nls selinux systemd test" RESTRICT="!test? ( test )" +REQUIRED_USE="?? ( elogind systemd )" BDEPEND=" acct-user/polkitd @@ -52,13 +53,13 @@ DEPEND=" >=dev-libs/glib-2.32:2 dev-libs/expat dev-lang/duktape:= + elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) !pam? ( virtual/libcrypt:= ) systemd? ( sys-apps/systemd:0=[policykit] ) - !systemd? ( sys-auth/elogind ) " RDEPEND=" ${DEPEND} @@ -99,6 +100,11 @@ src_prepare() { src_configure() { xdg_environment_reset + # Use ConsoleKit as a fallback with no build-time dependencies, bug 973339 + local session_tracking=ConsoleKit + use elogind && session_tracking=elogind + use systemd && session_tracking=logind + local emesonargs=( --localstatedir="${EPREFIX}"/var -Dauthfw="$(usex pam pam shadow)" @@ -108,7 +114,7 @@ src_configure() { -Dos_type=gentoo -Dpam_module_dir=$(getpam_mod_dir) -Dprivileged_group=0 - -Dsession_tracking="$(usex systemd logind elogind)" + -Dsession_tracking="${session_tracking}" -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)" -Dlibs-only=false $(meson_use introspection) diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest index 75820c88c16d..95a640d0910d 100644 --- a/sys-fs/cryptmount/Manifest +++ b/sys-fs/cryptmount/Manifest @@ -1 +1,2 @@ DIST cryptmount-6.3.0.tar.gz 373196 BLAKE2B b59127f9944f4bf267d4272bc026909b704f474b2fd2a20baf9125f9b32b33ecfd5523c6ef05098e6467e9b7e938daba55685dc47a3317a4913aef4c517f66f2 SHA512 15f19a1ff7409b35be2cde3d791c8d476c98ffcaf3dd9217076703b0e0baafe999a0608a88cc51039ba2e9c26cb297261128a5efeacd1a6397c5d3300886ac4d +DIST cryptmount-6.4.0.tar.gz 313332 BLAKE2B ce1c875600acc41fa636e56e040ca5e73361738435bc4b8f1b9871f6003b7f5c5fccbefab0929a8e5719803b44da2c59b4255c83b9b80c4b18acb2e49744de82 SHA512 b84cb0571533d230686626594b5c213dab5d009a29a643b74e6747368cf140dd39e1fbfffdb5ca757edc026a5e02a9aa6ff61a8fe9a3969a153448b73c3b929f diff --git a/sys-fs/cryptmount/cryptmount-6.4.0.ebuild b/sys-fs/cryptmount/cryptmount-6.4.0.ebuild new file mode 100644 index 000000000000..0f2d4309342f --- /dev/null +++ b/sys-fs/cryptmount/cryptmount-6.4.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools linux-info + +DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems" +HOMEPAGE="http://cryptmount.sourceforge.net/" +SRC_URI="https://github.com/rwpenney/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl systemd" +REQUIRED_USE=" + luks? ( gcrypt ) + openssl? ( gcrypt ) +" + +RDEPEND=" + sys-fs/lvm2 + virtual/libiconv + virtual/libintl + gcrypt? ( dev-libs/libgcrypt:0= ) + luks? ( sys-fs/cryptsetup ) + openssl? ( dev-libs/openssl:0= ) + systemd? ( sys-apps/systemd ) +" + +DEPEND=" + ${RDEPEND} + sys-kernel/linux-headers +" + +BDEPEND="nls? ( sys-devel/gettext )" + +CONFIG_CHECK="BLK_DEV_DM" +ERROR_BLK_DEV_DM=" + Please enable Device Mapper support in your kernel config + -> Device Drivers + -> Multiple devices driver support (RAID and LVM) + -> Multiple devices driver support (RAID and LVM) + <*>/<M> Device mapper support +" + +src_prepare() { + default + + # Fix doc directory + sed -e 's/doc\/cryptmount/doc\/${PF}/g' -i Makefile.am || die + + eautoreconf +} + +src_configure() { + local myeconf=( + --disable-rpath + $(use_enable argv0switch) + $(use_enable cswap) + $(use_enable fsck) + $(use_with gcrypt libgcrypt) + $(use_enable largefile) + $(use_enable mount delegation) + $(use_enable nls) + $(use_enable luks) + $(use_enable openssl openssl-compat) + $(use_with systemd) + ) + + econf "${myeconf[@]}" +} diff --git a/sys-fs/udiskie/Manifest b/sys-fs/udiskie/Manifest index 8d4090ea0dfb..ed79c6d2998a 100644 --- a/sys-fs/udiskie/Manifest +++ b/sys-fs/udiskie/Manifest @@ -2,3 +2,4 @@ DIST udiskie-2.5.7.tar.gz 103275 BLAKE2B d709afa031a42c367e31a7ad54d7f4d8ad769d6 DIST udiskie-2.5.8.tar.gz 103530 BLAKE2B b4925c99a89d40ebc4d2df3fd8421a08ec5a409e03221aec8de40155dd921a711f860fb870031850854e3236dfa2bbd3e035e0a2f04003cc1beb52f9c7c7cf1e SHA512 5930e433dcafee846c6f164ce16b8e49d8e12fad85c4351fcea582d9ebb1cbe381ab201f47371713f77c701b8e298b467f6b5904355d304d9fec5745189ca17b DIST udiskie-2.6.1.tar.gz 104799 BLAKE2B a7192d8a3281a2dbda30c595f880beeed9ec7b57278edd75d2ed421da23a200daa9e8193c4ebc4c7ab22dfcda658e2ab3be3383362077b12cd59d55f45d5721e SHA512 4b95af40a5a1d92c41afa0eabc0894e18ebc638bf227121fc7152297a2e02b096e1a6ae67de39bb94ccc4eca69cfbee77e325b169fca1d0a1711950fa7221acf DIST udiskie-2.6.2.tar.gz 110307 BLAKE2B 3b65e76c96683f44cba39b3ae0134e1b48681c2e3b601b9710eee53c20e2f5bda4594fa3369bd6f7a7305869848c2d16fb1f49d627b47bad5082a031fb62c0e6 SHA512 dc203553baf96f18980c9399a21527e2face1131d4e36d4da9d1323f2f0d458e997381a6042987356970bdbd68036a0832ffa28ed42bfecf5950fd8ea6a5f8a3 +DIST udiskie-2.6.2.tar.gz.provenance 9532 BLAKE2B 010bb74a969e83d482ce0423198447e88026ab39703be3e4bf92786efb74bb4d0032c1549ef22e32dc384753c1ea48995e9cee1810960b5de1393011dd571188 SHA512 cb0e65be7057131132c1aa065059a66a3b21cdb5b0d771360ac6057a409dcea5cb9733899eaa37823816c9b125a67e812872fefed33d021a7e0a8ad941f4218c diff --git a/sys-fs/udiskie/udiskie-2.5.7-r1.ebuild b/sys-fs/udiskie/udiskie-2.5.7-r1.ebuild index 4ceb9f74becf..09212d05ecee 100644 --- a/sys-fs/udiskie/udiskie-2.5.7-r1.ebuild +++ b/sys-fs/udiskie/udiskie-2.5.7-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,9 +20,13 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] )" DEPEND="app-text/asciidoc - test? ( dev-python/keyutils[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] )" + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +EPYTEST_IGNORE=( + # bug #972714 + test/test_cache.py +) +EPYTEST_PLUGINS=() distutils_enable_tests pytest src_prepare() { diff --git a/sys-fs/udiskie/udiskie-2.5.8-r1.ebuild b/sys-fs/udiskie/udiskie-2.5.8-r1.ebuild index e3e9c316169e..eca0fe2385ea 100644 --- a/sys-fs/udiskie/udiskie-2.5.8-r1.ebuild +++ b/sys-fs/udiskie/udiskie-2.5.8-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,9 +20,13 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] )" DEPEND="app-text/asciidoc - test? ( dev-python/keyutils[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] )" + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +EPYTEST_IGNORE=( + # bug #972714 + test/test_cache.py +) +EPYTEST_PLUGINS=() distutils_enable_tests pytest src_prepare() { diff --git a/sys-fs/udiskie/udiskie-2.5.8.ebuild b/sys-fs/udiskie/udiskie-2.5.8.ebuild index 0ecb70aeeb62..26e60b539114 100644 --- a/sys-fs/udiskie/udiskie-2.5.8.ebuild +++ b/sys-fs/udiskie/udiskie-2.5.8.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,9 +20,13 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] )" DEPEND="app-text/asciidoc - test? ( dev-python/keyutils[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] )" + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +EPYTEST_IGNORE=( + # bug #972714 + test/test_cache.py +) +EPYTEST_PLUGINS=() distutils_enable_tests pytest src_prepare() { diff --git a/sys-fs/udiskie/udiskie-2.6.1.ebuild b/sys-fs/udiskie/udiskie-2.6.1.ebuild index 5c49783d5ca0..eca0fe2385ea 100644 --- a/sys-fs/udiskie/udiskie-2.6.1.ebuild +++ b/sys-fs/udiskie/udiskie-2.6.1.ebuild @@ -20,9 +20,13 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] )" DEPEND="app-text/asciidoc - test? ( dev-python/keyutils[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] )" + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +EPYTEST_IGNORE=( + # bug #972714 + test/test_cache.py +) +EPYTEST_PLUGINS=() distutils_enable_tests pytest src_prepare() { diff --git a/sys-fs/udiskie/udiskie-2.6.2.ebuild b/sys-fs/udiskie/udiskie-2.6.2.ebuild index 5c49783d5ca0..61d29483c0fa 100644 --- a/sys-fs/udiskie/udiskie-2.6.2.ebuild +++ b/sys-fs/udiskie/udiskie-2.6.2.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 + +PYPI_VERIFY_REPO=https://github.com/coldfix/udiskie PYTHON_COMPAT=( python3_{10..14} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi xdg-utils @@ -20,9 +22,13 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}] sys-fs/udisks:2[daemon] libnotify? ( x11-libs/libnotify[introspection] )" DEPEND="app-text/asciidoc - test? ( dev-python/keyutils[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] )" + test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +EPYTEST_IGNORE=( + # bug #972714 + test/test_cache.py +) +EPYTEST_PLUGINS=() distutils_enable_tests pytest src_prepare() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.1.168.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.1.168.ebuild index 296b98b10684..d953286e2b84 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.1.168.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.1.168.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.12.84.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.12.84.ebuild index fee6a71ab987..be38291286a6 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.12.84.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.12.84.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="experimental" pkg_pretend() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.18.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.18.ebuild index 982ce329118c..e3d0752c3d2f 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.18.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.18.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.21.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.21.ebuild index 00acd3d2fd54..41df4ee57141 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.21.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.21.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.22.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.22.ebuild index 188a6470e4fc..91844a1bbe7d 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.22.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.22.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.23.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.23.ebuild index 6c720b44d296..002b99106165 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.23.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.23.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.24.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.24.ebuild index 3af266db9315..644f8ec9fbc0 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.24.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.24.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.25.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.25.ebuild index a976582c7e60..8fb42b7f99b5 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.18.25.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.25.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.19.11.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.19.11.ebuild index 4eb475de7c10..48df30e5d707 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.19.11.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.19.11.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.19.12.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.19.12.ebuild index 160feada2bc4..d6149b4a25b5 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.19.12.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.19.12.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.19.13.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.19.13.ebuild index 32667364cb62..640e40033240 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.19.13.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.19.13.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.19.14.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.19.14.ebuild index 49920b685b74..371bb66e7b45 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.19.14.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.19.14.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.6.136.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.6.136.ebuild index 5198f08387f0..902a0a318695 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.6.136.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.6.136.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-7.0.0.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-7.0.0.ebuild index 64369653c16d..664207d26a7e 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-7.0.0.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-7.0.0.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-7.0.1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-7.0.1.ebuild index 244448b5111d..a897e7a5a0e5 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-7.0.1.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-7.0.1.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/sys-kernel/gentoo-sources/gentoo-sources-7.0.2.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-7.0.2.ebuild index 6e58639383e7..43ff133b170f 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-7.0.2.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-7.0.2.ebuild @@ -13,7 +13,7 @@ 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" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="experimental" pkg_postinst() { diff --git a/www-client/ungoogled-chromium/ungoogled-chromium-148.0.7778.56_p1.ebuild b/www-client/ungoogled-chromium/ungoogled-chromium-148.0.7778.56_p1.ebuild index 88842fb6f80f..9105dfd4463c 100644 --- a/www-client/ungoogled-chromium/ungoogled-chromium-148.0.7778.56_p1.ebuild +++ b/www-client/ungoogled-chromium/ungoogled-chromium-148.0.7778.56_p1.ebuild @@ -231,6 +231,7 @@ COMMON_SNAPSHOT_DEPEND=" >=media-libs/freetype-2.11.0-r1:= system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] ) media-libs/libjpeg-turbo:= + media-libs/libpng:= system-zstd? ( >=app-arch/zstd-1.5.5:= ) >=media-libs/libwebp-0.4.0:= media-libs/mesa:=[gbm(+)] @@ -320,6 +321,7 @@ RDEPEND="${COMMON_DEPEND} !www-client/cromite:${SLOT}[-override-data-dir] ) " + DEPEND="${COMMON_DEPEND} !headless? ( gtk4? ( gui-libs/gtk:4[X?,wayland?] ) @@ -682,6 +684,7 @@ src_prepare() { rm "${WORKDIR}/chromium-patches-${PATCH_V}/common/cr131-unbundle-icu-target.patch" if use pgo; then + rm "${WORKDIR}/chromium-patches-${PATCH_V}/rust/cr146-fix-botched-bytemuck-roll.patch" sed -i '/SupportedLaneCount/d' third_party/rust/chromium_crates_io/vendor/bytemuck-v1/src/zeroable.rs || die sed -i '/SupportedLaneCount/d' third_party/rust/chromium_crates_io/vendor/bytemuck-v1/src/pod.rs || die fi diff --git a/x11-drivers/nvidia-drivers/Manifest b/x11-drivers/nvidia-drivers/Manifest index a2b4411de5a9..b776001e274a 100644 --- a/x11-drivers/nvidia-drivers/Manifest +++ b/x11-drivers/nvidia-drivers/Manifest @@ -1,5 +1,6 @@ DIST NVIDIA-Linux-aarch64-525.147.05.run 262738232 BLAKE2B 742feded05f659fa9965b2eebcc6a269b0355d08b6f2a686dad47c1acf2c20a359f9a9c33184ab2d51044b8823535bd7606180e31d348f362a016fad74cf476b SHA512 d1d9e49e16ee6cc69340a3458566f89fee7b63effdd8cae3e55e40cdfbd35d1e87b958769fd3b2ce5ab29596d88c3ac68189232d7a1dad8c16773faedcf5b568 DIST NVIDIA-Linux-aarch64-535.288.01.run 269886661 BLAKE2B 9f9e994fcefd81e75db9a9c280668ad55423085e34eb9083043bad3f1317379ba14ffc9442fe94ee26b600f1ecf2e19f83708dae1c599b6a9df69d94ac3e116f SHA512 e8df9e97500a87d68e8c8d1f9601a8b37f2dd93773928a96b605a515d37e9382782cbdc0900cd6151923ae385045c644af3e37cc006771830ac0b0a532afb09c +DIST NVIDIA-Linux-aarch64-535.309.01.run 270033799 BLAKE2B 3f5ce5f024d0bb35707034f41211d0c60a3711643dbae8d8f29830c9029c9c66a1e232651c9a5b9c1fb699078ab6aef0c3f2df476a14eee7cd1258e0c8141971 SHA512 ee2f59716d06652dc9083376d758a1f1ba60a11139534d67c39d8b6a4abd2290017d97cc2c8b1ed8bf5ef659e075ccd1a546125a3ce57b6ddd61ada5ba7e6cf2 DIST NVIDIA-Linux-aarch64-550.163.01.run 236409124 BLAKE2B 21c79346f6b739f44d7ed2d4955129613f51e1329ff15948ef50a9a06b82975ad890d6142e5dfb163e7b0da19bf5c26029cf507d120037f8a76abc177a286403 SHA512 0ef4ab4aae308ec0cfb5458cef34a1503ac1a85f0e1d0c9f061d8e28f939b15784e3862d96d83e93123d9eb56807a6804318ce230ee68917fb75e363011f8304 DIST NVIDIA-Linux-aarch64-555.58.02.run 236745104 BLAKE2B 342f5b99aeea0a569974b62322608138a845f197d7ab08fc2e37314187861814f3c1d8d017be07744816aa9d691e8161a60980e1d005701e3f67ab3a07fa03ae SHA512 9c4d78ec381bb6163c6591309a9a40f1dfdb5f3d6b983e1728c17383c5f0871bf3879b32f93c7892d33577a9dacf2dcb1d14639bcc4ca510104f33cb54e83df0 DIST NVIDIA-Linux-aarch64-560.35.03.run 251160249 BLAKE2B 3ad8c6757b980668f6483d8867f247857519636a3ea464107e90620557ecdbbfc3437cadb7916655b14e6a85e5929db1f03387494df7daa9169d8fe6b2de1849 SHA512 8df331104f3d63d4aaeeace412a986a93355be3ce69a968fbc12b7d0b21a34e71cdf37758c23a392c358a1c3ba1da21115002f55017c2a829c7bb4d41536e543 @@ -7,12 +8,14 @@ DIST NVIDIA-Linux-aarch64-565.77.run 253994527 BLAKE2B 3fb41a7958c58742817eaf3c7 DIST NVIDIA-Linux-aarch64-570.211.01.run 290912556 BLAKE2B 4335d6a6b7a55bc7d2717071c6be968b63c90932592534be8eff28290a8bf98614b37bb52b4ee0f9563a6f0fdacf6b0e8a04b8eedbe8081587962f3599209a88 SHA512 22816d8f798d6ce141ff2ce750b5df1ca4fef9b1ba79762157fd7f93c1ea905c74f421dc6ac2b7bf5b383192d2baa735d7a7d240523be815defb68be54c4a6be DIST NVIDIA-Linux-aarch64-575.64.05.run 304943447 BLAKE2B 277aed01ab2be1cbbfe7780c4cb9dcbfaebc69824ba4b5a620113829f713d5407829769c7fab224f183656408944d9d6c4dcf6400a333c1116a89d072eb79223 SHA512 0b9b9c6b3316723fba4549fcd346215e5315a7b4c80196f0cd9ada9ecd6a23e8fc1691ae8bda5b246a3c44519cc7f503116023ff5427718fbffb67fe49a12a75 DIST NVIDIA-Linux-aarch64-580.142.run 314153601 BLAKE2B 6eb7db2f8ad7eba611a0591dc2aeb914a071d1edb08a601963c911f7c1a9c737bab0938e2ef1000503b39acfef418e58b4d8b94e0d14eab31ca8d75769cf7a48 SHA512 b5ed762d1acc884093a3fc233ea48008138c70483b5b551c406a473f3920e73bbb79fc76fc5539e5fb2921aa2e2983214ddd013de30aa20e9e77af3e5163d071 +DIST NVIDIA-Linux-aarch64-580.159.03.run 314175977 BLAKE2B 20b0446d8870c2a667f25d9d68c906bbe159bd5f2095c975fba468e1407448052467c32a9b6eb96e9073d3f2121420be4e3ff1173d26816d862dd026249baf2e SHA512 0213dff7afc53733ef0ec9d8d24b20f8f577aa3225470fa2b86bf74939075683eefa9cd12aef94b8239ba8366aacdec605ee13b8259da9a1393761d853c3e453 DIST NVIDIA-Linux-aarch64-590.48.01.run 319634379 BLAKE2B ff1b0641f8d4dfc834d9627fa934c5491bddcb9e6f5396a07d6d7831c15e2ab396614ff1ab6b5af4a69b42b8c6a022215cc1e3531eca7ca177c9d940f52281ea SHA512 ec81da1a11dd9609427e40434cba69d7c0426e4d60cb5c078c66ec992b6dd44483df2c9dfe02deb4db3a815a4c801b3c42f6ac2b08f0506327f1cdfe5446211d -DIST NVIDIA-Linux-aarch64-595.45.04.run 316623169 BLAKE2B 0596a7896b895d9f96545e30231056885d8688ce0cf144d56c87a2cf91877d7e8573a821dd522968da09c4aad72565861a2f6c27065b9457a8d4df536b336327 SHA512 a75b927d660f22fd353a500ed4732fd7bdfe12b30d8c7aeb00d7a6d770d9df080d441aa070f302a5d0e386eeeae3fb82a7629108d31c8cc77a142e7de9d352dd DIST NVIDIA-Linux-aarch64-595.58.03.run 316653030 BLAKE2B 034ac2a385e5d82789a65155bdad701e554bbb05267ca5ea8445d9502dcfb57e0e019e954b8acd6bd5221ab33e81d8662884b93fd785aa2e76388c737b28b09b SHA512 4dd1544019df01bbb6e7640aeab32b32801e45f36604eee4143992c3b1710960927d55f05ee831058c4a8af861f698c450f7d2f93077fcb652b48f53743acd2b +DIST NVIDIA-Linux-aarch64-595.71.05.run 316744636 BLAKE2B 8a3c0179701342ef649cc9d247688cd6ae3a6be88920830ca8f81dd7b2e1862e497164698acf484bb145b04002e3903b1aa8116abd4530c7200f0d9ae525159c SHA512 a2d4ee2c260e34c16b7e04e9dbbe3a8ca486279e7743fb2b95ffa02cedb5e42ad7c5dc4c26fead86cd3a7d7ccf7467439d93691e0e0ce66e8425e622a07bf050 DIST NVIDIA-Linux-x86_64-495.46.run 280886811 BLAKE2B 156917245f37a5da9121cf570616d6367eec66998a50136f1db0c521fc725e68db27acd5741a9fc3e3d502a2c7e90ccde68a7e56346cb8f5fc65ea419c2f0576 SHA512 859548fa81478acb994b40434fc85824976b1f83bc15846290898854db84ea3c6550586a1d7e89ff3afa248310d2bcf4d2d52d5d8e91cf74e3f7e4108a7002ad DIST NVIDIA-Linux-x86_64-525.147.05.run 414135234 BLAKE2B 77a12905771772804a5e5cf36df3e5032fe0160ac7c8a1b4ea002f65dac3732d9c900c1787a3e26d08b951a8de4893467cc7a80d424e017990d12669354d4191 SHA512 0c7b31715fce6a7bd77a2d9f9a3dca54a929a7790d748051576f62cdaeaeb6a9d0f3fbb13f0b20a51966bdb9470acdbc9ee529a9e84f38a9c834a1bd28d81773 DIST NVIDIA-Linux-x86_64-535.288.01.run 341968325 BLAKE2B e37428855b41c295e5c6df66a029f4a1f6916af932a159587002c6b20b58c8280faee1a4fd6edf4791439df4da6bd21d18b3c9bdf300b3923f5dd30666f44d90 SHA512 8ccd90cc37cef6591412c9c0d3a48af9fe08bf5d715a2e8a9c0adab1fb8e72b716ec75c8b81bc0ac9d09d6f82fa8e01af144bfba5d58cfe7a524c47aa97ae6e1 +DIST NVIDIA-Linux-x86_64-535.309.01.run 341945818 BLAKE2B dc7bca19eee348648ed6ded096ed9eedc953d7e5be84bb812baf98230096c9f3a92421abb9adfcd0c257dc63a31d9f4fe4a02c7bdc4be65975229941fc39fa5a SHA512 16a505fb053d514b98bed816559279cbe2962eef8a3d64cce7aaf859b2d27602ac9018bb099a56ab4223532f70e00984e5468a4ba9c2914dc68dcbe0d8b2d64d DIST NVIDIA-Linux-x86_64-550.163.01.run 307143336 BLAKE2B 256106bcd3bace402289e60aca4cd3b447d0fd8ec3dabd50e2bb303c5e866f8da5c28f9b578d95775bf69158f100d68a91d20d9a91426285a8e799817f21db6b SHA512 676b1de35d21e80091528a49080c114e0870ea90b3f3721265ae8071abbc2183c851e6f11ba96a332c743fedfaf4ec9a014ad6ceed586fdbb03d94d33405e356 DIST NVIDIA-Linux-x86_64-555.58.02.run 304107617 BLAKE2B df9774e6b33e3600e7425734c91f49ba40956f28391df47d946f7612e28984812fbf0f4d95ffc06d1cb545dd9001b5b956c5816eda50de77063cbafe866835ae SHA512 7a8c84c15d87d2cf5f6261b12d3d683e0a7a1847d7c5461b3995f78b8dd862272fd11be07018593a8d5ef5d8274040f15b9e6fe92e9212dcd7a97be668852433 DIST NVIDIA-Linux-x86_64-560.35.03.run 322523941 BLAKE2B e84819e6c6b75dbe75212b695ee1e7793c16091b1861250b406cdf570a8cae2a8114627f64bdefc8538f12dd6da8d80d3d62d41deeb7211cfaf159f853feba08 SHA512 97137160b64928ff84fd6145a0ebc209c045d6a07ccc53ec6df6ba1fda2ad72038eda7ecdc0a0178a2628aa4e18819a9b3ff3b693b22bdc9de543be0a968f8aa @@ -20,11 +23,13 @@ DIST NVIDIA-Linux-x86_64-565.77.run 339246825 BLAKE2B 6c3c57048b6ac25f08a4d49312 DIST NVIDIA-Linux-x86_64-570.211.01.run 376192072 BLAKE2B 56a135681eba576377106b5ee4bad4e0ec7e41e512db8e32297fbafe03455ee4e9e0dafe782588dd3832fde74ecfd9ee5858ec662f3dc2ef3f1e1dab7a9c909d SHA512 3e751d90a8f126e369c5167e2d5ba8b218dd306ccf00907290ae70fb1c3f752f0ad0b973ce356a1a24cd0f19c31a07169cfd5705613a6bbb5918881635650839 DIST NVIDIA-Linux-x86_64-575.64.05.run 386961985 BLAKE2B d8b5e5cdff3d2166c4fdf8328ae22bc4419509144ad0427b17636696e7398240a3601ded850893412198fc0d4ba76e72a64ed31d6ceaf58149d83a741ad62a05 SHA512 1f5ea98478c913b044cccb25934e12d58561643b83074e5967d84126baac9a5ddc092a6ea017956957abae174520718d747415d09c6fb2da110de51629df98a2 DIST NVIDIA-Linux-x86_64-580.142.run 398046590 BLAKE2B 35334970e7d233113a989436f71eb1ce6f374f8071e4c1933779d23c3d54511b49b9a5709989863d50095cc858aae839e47d9020b6d010b7eab201eed1362b20 SHA512 1091bb1ee4e603b48b6122d226c7406b5aed001d631dca7562723b641a2915bf41cc2578c21e89e6dcc41c571bc65fc9df206acba72ff26ea83ba500de422ec3 +DIST NVIDIA-Linux-x86_64-580.159.03.run 398016015 BLAKE2B 6ac3bb48c17bdd9a143fd3483913784d14cc7fb7120b20c0d74de7aebb9569c945d693af4e7c2e2f50fca97e67c26ac91e4943d21ff636a30e372888cff02d94 SHA512 658c7bee6289f9e3d4d04fabc9fee5692ec2a61242d05dddbad61d5d667fbc47ea2cb57802079b6f139c240d9119da4b462548a79a03483dfac53de797ffb5cf DIST NVIDIA-Linux-x86_64-590.48.01.run 416273526 BLAKE2B 57bc232f3d5cc52b3ba7c097e5c04b0e128947b34f75c8c7a75135ebbdda565dd9ae829f3707cfef35a9b8b554f2b46a50756f6b256a0f0280c22cf9ecefb2e1 SHA512 31fd82af707dbe9a6d3848766925386f5e91c5fae0a605819450eb8e5a5a52eaab3ae5cff50b4dd36bc5c32fe1aabc29a6a79438d6614988c7b08f509ef0da6d -DIST NVIDIA-Linux-x86_64-595.45.04.run 423188245 BLAKE2B 262bad2e9caf54c54968a5bdd3385d4ce725a4fe97537d92be20cf20c692c2d6fbaf875e8af5d62685158db6cafc22c656f33b08bfd0353cc137822211e90c2c SHA512 36907e0329564787e42eb598eff48e04c4058856bc95115cd5448eb4dfd351ac3d0df95b0fe5d2ef68e7ce9e848689955f40b3a9302d5231366efa89cfb21f7d DIST NVIDIA-Linux-x86_64-595.58.03.run 422873955 BLAKE2B c18ed35362d1206d15f7bc822680e541f80009481738e68c6d2bcb798feb3439a489b62fac0a9264fbd2a8c86ad827fb190003e02d5245bd9b3136fdfec43a05 SHA512 d38e184805230ab1dc7065c49814d92c7033cf0e078e2cec919baef05d8ea297d061fb45a8fec608e7b2823f756568df3cbe1b08d75e8581c55a380413018499 +DIST NVIDIA-Linux-x86_64-595.71.05.run 423133031 BLAKE2B 770af0e6228c300de069b2e87467d030d199dcd9f9c6e32c583291eaac7196974f72f1e25902b8e38056897cff99f845adf73e3eab6dedfce8339b21b76b1042 SHA512 75d22994ba963223300d3c57fdc05803ddf7d8630fb5aee3ba92017d6f614e4a7019dc09f0f02b02ec28d6d5607e284d4e6de2cd506eeda604f75a2d4177028a DIST NVIDIA-kernel-module-source-525.147.05.tar.xz 10140684 BLAKE2B a8ce7c1d1047be9154fd67366c5bfa13a19f03c883f24ee35043d17d517e83303420449750f9e7adc7142f61564dd5d8e5a19884dbe540514979df6381ff7f1f SHA512 58920b26081a68e05178176edb0ce8ac4a5d365492adf51d6ffe57102385ff08abc5e14741e0500419e62a752441c97051d60939245eea64b039cc7efca15b7d DIST NVIDIA-kernel-module-source-535.288.01.tar.xz 12538144 BLAKE2B 597c58a62591e82b77fb29527d240bd2043b37439a1e7089ce5ab7ecb514ca3cae5be415aa4324f1156c08ddc1138c02e58337df5f38eaf7f19294773e4bcebc SHA512 b70d95af6737c36f8573d877a3473d38ecf3d7a4a35b899c38c1682888b455dcc60f6738ccee60a584477856b79dd25e6a10ffd1a4503c1d78a88902ba8329b4 +DIST NVIDIA-kernel-module-source-535.309.01.tar.xz 12537052 BLAKE2B 2bff6a129c7c407de95d140fefefd50c266c7c8dcf938a71690545cff65b3502872645e79d47f9091deac54b7e140bd93a321b18af0b9cb24ca958f033461c53 SHA512 5bd08038823f3f9c39307b441cadc6231d71195adf1835f33e5af794df24be8abed83d3b246edbf5cbaae2379b52ecdd5c975c722001e19fc96054528bada773 DIST NVIDIA-kernel-module-source-550.163.01.tar.xz 13552400 BLAKE2B e1fd753127d10097c5f1d3c90d95c7eb0934c0d5e1df0a371aed2a0d7669960b67c46eed20eec3c42ca41c0f34bf6d7d3d2a77a94308c9f86d4f5d831da19363 SHA512 c9f4ce2890db3fdc66dd080da4d6802a8bc3b18feba96be5d33641b02cca637b1bcd2a3748f36f93a32f26ba57eb352156314f139688b0d3a102efdfde6c32ba DIST NVIDIA-kernel-module-source-555.58.02.tar.xz 13676856 BLAKE2B f3bdda7afe0726c65947fb86898bfe56dbd5378112db6b292649690ef9fbc822745291c2050ce8d16c312950f0486cb54597c41ca14e1dce151b9eaa55bc5745 SHA512 28b7dd07f31a39eb3aeb1ef51872f5f7d2e9e4ffa4573244f979992014e5e04454227ee5c556d41663e0e2175e7f5cac4cdd740f441a96e3dda49303c2dc8df5 DIST NVIDIA-kernel-module-source-560.35.03.tar.xz 15023144 BLAKE2B d56ea634dd76c3031372e4be283f0348d95e87d088025aaf59ed342a550144f3a8cda22b4c56db4cc2a4c2eb5ef2563251b1aeba75c2a35bad7a4a24c2f5e4d9 SHA512 eec3263d09cc809afc4c2c9eed6e0ec1bd2fed71d43f96d2f56c5b507aead96d93c6de93d37b649fc97f1d849aed64942afeae6e0c2be399d39b1ee416c6b863 @@ -32,12 +37,14 @@ DIST NVIDIA-kernel-module-source-565.77.tar.xz 15374480 BLAKE2B 0ca329dd09db37e2 DIST NVIDIA-kernel-module-source-570.211.01.tar.xz 17951900 BLAKE2B d40d2c1b4a92dfe8da95e1000413dfb484c9c96ad232dd5db14246378f6df8e73f04706592a536025c3d5512d5e663e7841de8bda782e3611b4b594b9b107ad4 SHA512 c988270d3aaa707310c3924de83eb5f5bdc4d022d1666eb3f41ed46eff35e98a765d4d6d34c22c02ac507016bed3c34af1da2e1befc285ec9158031a4a1447e4 DIST NVIDIA-kernel-module-source-575.64.05.tar.xz 18198316 BLAKE2B 622781dfa93ab11993a4cabf14e2104ae7fffa0a16ca504a1257ab9eedd832128dfe73a0b9567a4401bbcf83416305794861cd18c393797ab8d43af0c26cbcc7 SHA512 4cbe2e2d78eab84a8a0153f68ab6b1fefa75225c145b3bd9db4fab9d0cb212a4202a89d0e6d0f2d0dedb5663389f7c9ed6cadb6a656eb32dbde0cf0f806652e2 DIST NVIDIA-kernel-module-source-580.142.tar.xz 22252916 BLAKE2B d062d17d4f06d8299dfdf1aa10da9c90945a41602d439751f8b2366bece701828d2bee4d544aea2266b6ba149532bb718b2b7e3602ad603c501222730fa19058 SHA512 fd1276f64114dcd2fea13800d01e810adc0b4ff3d17e46a5b32e6778907426b35c71dddf48343c8141be97a035d7b277a2d1f72a2c9f249c2ad0aae30d541850 +DIST NVIDIA-kernel-module-source-580.159.03.tar.xz 22253960 BLAKE2B 31245291564c734c5facc49e866b345f92d4fc08baabda4a9d49ea2073e62fbcbae9f4a39dfb430533ed0bef2acbf36d4546d9cce3a3da582b2cfbaed0ddfbce SHA512 8deb20e9d5b65cc9d701cacf1470187dd72765a291ff6c7ed3b6c6dda32287271befbb88d0bb6cab736958eca96b4e093182848274ca2cfd901ae65bcac06abf DIST NVIDIA-kernel-module-source-590.48.01.tar.xz 22530000 BLAKE2B eae57ceccc78f0730fc4962b20f08f270bd21960e84ad5985433590e5229403a74bfc2518540f9e2ef07d319d9cb2288edfbe0d5f7a27cc7e0903aa61fed388c SHA512 6fe32d5d1a84df0baeaaecd4a847ba73a89bcd1b51d5f9c7525efd2af891f6d5512c1ac97c8b766ba1d1103312c53e5406653589e22684df9260fd75977591a6 -DIST NVIDIA-kernel-module-source-595.45.04.tar.xz 23778508 BLAKE2B 604dbf06c03ac2002efbebb0581711f2a4e698353bde84a3fc78b5fbb5b0b1bd358a6c0bd418ca91b0d7e7d4d44f23ec7e47844b357675584b31e47c8b96b05c SHA512 c1179c9ea356d41b29ca9cc9f9771294575667dd72ba5dba208679a2197119ddd82f8345797661ef064b07dbfcbe123e964d52cd3516e3b9555833c3b964635d DIST NVIDIA-kernel-module-source-595.58.03.tar.xz 23764772 BLAKE2B b58125ff5d71fb45fc30b8128d492c5a91c4df293157a42848f7ba38e91eb284d491fdc6801e514c243330b19b7ece116733d3caa2c1129725c420d4267f3df7 SHA512 def5aeba1c35cc4bef4f92b707cca73ae822d0d23aec55eb05d04f3591970d2c673a50bacd4e6b7ebd64f9326d24121bebe00d525f743e40d3a4244ebd17de85 +DIST NVIDIA-kernel-module-source-595.71.05.tar.xz 23778996 BLAKE2B 45361ac9830c16c748688545501124647859c247c5cf7dc6ab4508fe614425715c7299cf88728a3da4111c7fbf6f9eab8a1c77b039ebd868dc7a6367b5e97ff8 SHA512 dc417fd79ac6fa388e8c66ecb55e8207ddf19f4f98b5a04a574aad9a100753e9930e29cae08c4d36721cf56863b107ace4695207c6c91f4a831ebc3f0108e1cf DIST nvidia-installer-495.46.tar.bz2 147041 BLAKE2B d54331a315afb1588507ed03058394a347be996c80d1531251d53d20a8c212e4ea53d67315649aa8991d6883914296e80cc47ece5fe1093e48ed0e119f2a6704 SHA512 1885289cc1cdc1e292658ec0e48a3dfede7ce7cd5a018a54e13e27a08ec9e3c8da1750dd7a4cd79379943e2bba86ffb5d864fd9eca9c2839ba83be2ea621e0ac DIST nvidia-installer-525.147.05.tar.bz2 147986 BLAKE2B 982e1a95bc255b960913cba1e78675845db472534af6cae054c74ebf82b1e4407211166249b164299f0f81ec643b7c1190e5960ac3c7844322ca42c23dc0a90a SHA512 171f9c235b2bf41dc40a875576e8cad0f4c78ba574e72db3f1ff3644701f327916121ae493cea1aed93f4826d96ef1833e98502d2d4272f4f536bab03f20e5cb DIST nvidia-installer-535.288.01.tar.bz2 148906 BLAKE2B c559bfaeddd1af6c72647fb2e5c46638817339bd59ced80bcc6acfa14304f5ab07123aa0e43d18feff5d2582f08ceb0f84d2b97eef783bcd833c12f751e4c945 SHA512 b5d92a68b39a11709dae83ded0d9b860f9ff4cef514a1eb957305daf80d4354a272a88e4a58db61547b0073e57c2913f2dc038c2d51b2eb649fc9ae25eb42954 +DIST nvidia-installer-535.309.01.tar.bz2 149086 BLAKE2B 14ed4eed4d3f998bf3c93d7cdcca8748bad9fa4751b81d193ce00dbd9694b9ae38fa865a2e82c5ec78ba58f10a73c0d5120b5aa2069cd418b9d423c3da592aab SHA512 e4a362fc0980e34c984be811570fac7b2b0ace3a7105643f8b3d15122cbc6fb9988d017e22a72659dba40588638b60eaf243bd228a386e8d2d12db0f50f42f0a DIST nvidia-installer-550.163.01.tar.bz2 155861 BLAKE2B 662064b3ceb4aadebde419057d85c6b4e28b91944bd5bab241bcba9b3c9a105e507afc7651b17fff01e1cccb78d66fdc6789597ce059f882a6f322b08f28e832 SHA512 f8df7a0eccdecb7d4d4f47d96050cdbefff91289b29550b061358614845648451d4b161d9bdbfbf5a9a87ce650d272cb3b795e6d2ed4d0274844a56db097bd15 DIST nvidia-installer-555.58.02.tar.bz2 158422 BLAKE2B 0f8da2790dcc398859ce7b2e4278b490542b5672e8005fe98b7ba095c8ff62fe3639907755630658f7241097e18f3e92196b1fba0e430da6bf697e8bbe9dc520 SHA512 ef1ce8ef4997858a053c4b6939496510605b0a5d2f1c93ab80f2002fabeae2333da2e877aeb665936ce618fdfed4a6b9a888f6426fd1fda289e6793febbedb37 DIST nvidia-installer-560.35.03.tar.bz2 168904 BLAKE2B 81a1e4070cc36688c8a2e768c304cad4d680f56757addf137c0544aed93345a4587a65e8df5212f1853e1d4f5a882c457866818157f303148603d50a7152f21d SHA512 685cec94e01a0a0282bd013896a1a05d1a061226863431d39bafd31d78a3224879eceed24da5da65f2a6757faef40b999aad624cdbc86de53674d7595b4c763a @@ -45,12 +52,14 @@ DIST nvidia-installer-565.77.tar.bz2 168880 BLAKE2B 646183592cf837d9d1521cd9e539 DIST nvidia-installer-570.211.01.tar.bz2 169330 BLAKE2B 100cdb3e0cccb19e3bbf69d4289d079a64cbca95fc20f4d48179190b5e61cfdcbfeb5b95c381c70824c185975356a70af4c89efb53ca0cbc5c61fc95d974ca77 SHA512 90efcd442feacd7f9d9bf25fddb77c521b2e7c79063703c320ce2bbd50a5cce950b0937ec926e89081634c6606c18861efda0e6288e24fab5ee31cd5d52d211f DIST nvidia-installer-575.64.05.tar.bz2 169369 BLAKE2B ccff48e41296d6682c72f3d25eb7d7816dc83b4c6f279a4f5213db141353772d78d8ff3e23f2fb21ff8ce81a326443d12c3f05792fe1971b1fb54da764140065 SHA512 5033e40762b499e9b04a080942656a0c9b49e8f56c4a8236da38a587f8e13b3935f75e8c8dbdffbd0ef895c537a69f51ce6df7e6beca7be583aab09ed62faf09 DIST nvidia-installer-580.142.tar.bz2 169744 BLAKE2B ff718da9c9e04dc216a5fc7f17440215ce2e130bcd3d3a5caff283d0b8f922f2905baa7fdc419a44068f88cbd68a7db1d1a3b1d14ec3e1e72cbfd77c8c6941d7 SHA512 6587195ad86ca966107fc8c00e5c5c980e7612be128c9083fbd6ae2038139913e0fa240771c8ada5ddcb68ffc6ef654acca938a458738f093f4c289ee537d1f5 +DIST nvidia-installer-580.159.03.tar.bz2 169966 BLAKE2B 9f723b18796de0c34eef130e5bd854f55d310351fc13891041d01a55a0b79d2a69e4b36be9dc9d8216442819399b93ab7f4f2581a66ded2de2994b1a4e132018 SHA512 3da64f9039466b95910bc165473d5f6e39bd48ac5c8aef6ab3b196f6054cc177e2182aebc532a285f076b2d277982346cedcd952c3a5487a617bc85db2b351f5 DIST nvidia-installer-590.48.01.tar.bz2 170826 BLAKE2B 450bd298e6c574ae6dc085714c130984058f6e606c3de628c5adeefddbfde3bf2e025b1e422948311e9e028cfbc6e8d4c68a22a10d30a9a28466f3105aa7c13c SHA512 4c776ad602594a5d2ced2570fd26b51e5fdf5b7613c43263a7f647a5d3d550c6c35960a6cd8884766a71f0b34c397e7d8bd0507b84043cbbc1c04a82ec067932 -DIST nvidia-installer-595.45.04.tar.bz2 171588 BLAKE2B ec9ac1711672be755e03aabbb83fc35d108dd524304798f7c893f57d93ef47337f61103a7a853262776d5577b679660f5129e1784eec7b9283aee4ced47015f4 SHA512 13769efd203b29dfb36f2e1a77b96dd868322d0674fc9b2e6fc7e147e043cd8280fc4ff41cc1e5356a0078dd5c88dedce657bcb00ac0642ba24172e104500df9 DIST nvidia-installer-595.58.03.tar.bz2 171440 BLAKE2B 77290b15d5aae05c228926ce21359f9166de2e1aef5c14c13893c4a4bba122e57b3eb8ac6b512dbbd8c58e096c026c8c3c3b81aaf809f9463a227fd811b2e708 SHA512 c5b27d33601622cf6d929b3483e5f915b458f20b34880c2c96926815c617efca49c6d2feba93959add95f2ed547608d1afd0f6ba797c4f2689b9dd2fe57bda33 +DIST nvidia-installer-595.71.05.tar.bz2 172399 BLAKE2B fda7ec136805aa7e481162af171206c3e6dd8c641fc60910f1336895b87ec1e4ab7469456d3fe96ec18f763df3ab158e7c707edb89833a628fe24e69ad97080a SHA512 08ebd56a639cad608db8a82cccfc386cad4f2dadb7a01a7318f5cd70b0428e0d62fc51cf6c8fef16d567c226f5cc83c8905fb3bc36404abbc5a6bf36c0b26403 DIST nvidia-modprobe-495.46.tar.bz2 38386 BLAKE2B e278659a1d6581ca7f9bf04aab43241cd14d45ce5001ecf567dd7b7b2134f10820d208c91a4b1803b3b871e36a48ec6ee53c93501b6655a99a185a4a336f19c7 SHA512 d01097088b0372ee3151413b0cf5685514e1e76e75f4b4a66bb9600da61ccb1686bd09c6daf5afd3b7cd2a6c09648041366f57a78990650f84bb57c105c8321a DIST nvidia-modprobe-525.147.05.tar.bz2 40439 BLAKE2B 3029d39cce928b3f6a6baeb57391ddd412a35e36d880b3036dedf083b6df979ec531360421bdd347aa223821006ae3610b115277804c22614a221258944ea37f SHA512 25939b278bd2354ff787f1d10771d19baa6c691c5243bc647a556e40c4f38c16f6a248b2ce0b4a328d80b768147a188cb2d8b54e39fbfa4cf436d1f3b1b6440f DIST nvidia-modprobe-535.288.01.tar.bz2 40729 BLAKE2B 60a8a22bcbaefb4d7ab1bbddba814939078b88a0ffb3f3fafece04910b476370f5e1f38878b1c0f109abe4449193dcbfcd308efadd03d28786b78dd2eaeac75b SHA512 0acb8e676fbc230978b97302df98450ee11fc7d59927c46643a8f92d5aec99a5d1d1bca861203a013cfbc61cadf89ed74e2fa999932264b833e3b5a53d42836e +DIST nvidia-modprobe-535.309.01.tar.bz2 40756 BLAKE2B 4c8d41c3f8d811155aad952e7120bed92e44d50e6af3551396f4be73f733f64b72d76d670676adc957efcf4c0e05df6473ca50a7cd378e56a0da52f8dfb2246e SHA512 b39f282034320836cc4424901d0230b5bdeb72050f18e0d024715a89b0085fe5a420ca82425ded4218a25ee3f7e8f6fa1abb37ac37843eb1b9e35aa8a2657a66 DIST nvidia-modprobe-550.163.01.tar.bz2 41448 BLAKE2B 23e567d612e669ec6ae9f389651c9e1cebe7ba59ee95bb5961e5071952697860df77f02026040e29135338eb7cf96bba0015b3d94548297235fb5214f35bec48 SHA512 0f5b59468a6e5e95dcdef1d938ea78f4ce09a0c9784e3c70d83f1c3b1bd52e8055b6b332147316445c3be714abab3629320d6117878d50aa7a2d7d2d9b9b6485 DIST nvidia-modprobe-555.58.02.tar.bz2 41721 BLAKE2B 01e83365c1fa1d5ce172f31d180e0735e5d74a49e59c7fdec78ad26f1f70efa981f2a2429e1c815582d3200defe09389d9b84a2a8e4c2f46e1d4528779eb4305 SHA512 5fabde2e8bf534cf6ec8dafe7318c76ef560f336bdb3343d71b784713076a05d063c2e65eb8f965b0776cb02e67f8eed363d8eaea67fd92798d1bd1b74571ec7 DIST nvidia-modprobe-560.35.03.tar.bz2 41637 BLAKE2B 4a72161e3569af5b53a6372da51d6980ab6a428207db0ef2c20b87a9abe569a136ece0a332954004e24f4381889826e50fce42c0c362c749adcb0152035e8862 SHA512 ed592cfba5512fde34e1d9b3dfcf3463df447202eb99d1d792f87d0a68c73193d141f82835e9272d315f3de9e973e7d9f64b06a9cb1e6485dd7adce3e9c360f0 @@ -58,12 +67,14 @@ DIST nvidia-modprobe-565.77.tar.bz2 41644 BLAKE2B 6eccaf62ba02cd68bb3547266df65c DIST nvidia-modprobe-570.211.01.tar.bz2 41631 BLAKE2B 953113337b742ea246bf24a47cbe679f03d89ecfa48a655f179b0913dd7d9c1742f4b1bd765c4d4263c9d45c352de87bff9f0a5a2c3aa48c86f221177cd5d1fb SHA512 c1bbba303b587f18e824cd2dd9a74341d5a03ee56c6adff67bb33c4f65ed16742f094dca9457a04d68b676c3671756e47d996090523827f42c8780329988e3fb DIST nvidia-modprobe-575.64.05.tar.bz2 41721 BLAKE2B 9b8a6dda556389abe0c2bd81ed3edfa8142f773832b7d955385119b5fd525cbcfd3c01401f471ccf5dc7ce61100ba6a3c4504b8eaf86ea5b378d20a6046ff7ce SHA512 221a0469a974c7db3f3c489f2637b6eef68e614c5ccd3e94c8cbe1b8841a6e9a4f0e2f05642b6c9f7113efe3c211076ac31578e9587df26b76148a198d21cd49 DIST nvidia-modprobe-580.142.tar.bz2 41674 BLAKE2B 7d6d0282bbb1492825216f370fcfe605012f6e65c1c731e0a4bde58f8129b19abc40804c80691c50ede66298894fd0590057f80952c179fa908b82d872d1a5b3 SHA512 f6305dc71dc31219202262f94ec17f747da267aaf1e89a5bf8aa4096e52eb5ea6bee3a1653a525157b188f35763fc4420b78f658b13c530e42ba9a9c67cbf125 +DIST nvidia-modprobe-580.159.03.tar.bz2 41685 BLAKE2B b8df703c509987538e979ed1d65131004dfd2eea3b4d4a9a98c2784a13523f8ea55fda24fb9d3f04a1bcad04d8726ffceb4f5abe9eb19f50fee5c91f8f1db99c SHA512 09d4d1b0474bb35a0e64f6a6b550096b7e5c18bc1746300211d829bc6ef503b301b2ca8909057cbfcd8585a9969ea807ab746bc253ccf2f5f2cc5ec263a989d6 DIST nvidia-modprobe-590.48.01.tar.bz2 41660 BLAKE2B 0780a1aa529d95323b37115efa529dab030cbea589a03ddc70460f4176e7aa88388401ce8508a093a2e9a0ad406589e9e94ff0391021307e879cbcacec8b6759 SHA512 805a70d5012fbc26af3787104e39b3626b2ed7d53a4989365d2fbf6926daf817eec1dc6b7cd50dfbfe29bbd71569ac3095f0a37cad2199994dbdaa76720d8fb0 -DIST nvidia-modprobe-595.45.04.tar.bz2 41723 BLAKE2B 1dfd5c71de90f7522d7a33e90597706f407fc68c60d2c9e2f2827803b4b41b6431a7e00ef64382c2e0760b3f09c2d0b4227e75bdde64080d736d9c5b380b214a SHA512 9c3d77077cc53ab41047ca8ebc838d1345fd14a039a118fca04a88de832ebfde241d3714eb7720431021f3ea521202f2a88b0d66a9c1273429515a0c919c3463 DIST nvidia-modprobe-595.58.03.tar.bz2 41715 BLAKE2B 3f152512e4801f4bf396bcf1a2beeba88b9964ec2d1951506bd4f101827353d356ec63bfad69d0367b37e0343b5d30cf3d659adf869be397dac3b0d1e40c63c2 SHA512 075dc36054f1a9222f96527af4094712e3e74dc6c058558b97f1d3e57d7a0e5540c002323bf7fd5723cb137cfac2c65aac257b6c6b9cfb380c34ba5919ca7602 +DIST nvidia-modprobe-595.71.05.tar.bz2 41724 BLAKE2B 23a0fd55e50106341a4196af7bca568c96555c6b0583ae41b860ac73ed4cd6d5222709a88768662fd18a2e4f7686ff092e5603497af71ea7dcbebaf50235c54e SHA512 97fa81a96884f4c2fa6ecdb86d513121b00e8bc955b9bea0947c8ab34271a016458e405df451fb6340e4b8243572980b5e7a4f24af2775310d3cae35a1bcee0b DIST nvidia-persistenced-495.46.tar.bz2 46272 BLAKE2B d6f6147bdef59b1c56df6a313cf6bc00fd36b722b2c50d692a11d997e369daf3c84e20c3bca6bf4d11a4db8b1e3a37876837da85592b6d339253cc1091d6e194 SHA512 ed2b37803985d02df20ce0f2d5310393613c94310db934d4990ecde6eb84345104c42564937bdace5686c8eebd3154d84c0c7b28bf09016799b98621ca52f89b DIST nvidia-persistenced-525.147.05.tar.bz2 48089 BLAKE2B a9cbf291fae9d7af50a9633fa5e197939674825e72150883b4e89e72165a512c164b4d79522f5b6c329e980e1145d958ba592202e5b73edfd32b149457714982 SHA512 e9685d330d32a5e9864b45a7e099e78ef873188972700747c158c3ab1fc95ea036726c793207fba33d4a50f17b92802366ce1ad38dd110b86ee923f48e622cfe DIST nvidia-persistenced-535.288.01.tar.bz2 48600 BLAKE2B 025d2d28a078354898a501eef857d496e504279e45ab2b167a4abd5345d50e8effa1432a46da7ffc0276faed5698fb02afec21eee810335daac638e4656d7ce8 SHA512 b92c96b12346d8e26321679ae51532e8d28eff6c2998b6e781ea840eecf022823e47b48ac0c918c1069eb04a601833c4e70c88f66eb4891bdea2a85666597d90 +DIST nvidia-persistenced-535.309.01.tar.bz2 48569 BLAKE2B 5756b1335d6a1932529babcc401de4f544ea18dd6da271fde258ba046c98584fc736f211e4c5ac485eab70a6d1717b5aac3cb15f818cbf9eda29a64151fbcdf1 SHA512 e49631fbbc1466820c87fe9a7538b7dfaed512690d1b14e4482bfb471c4e144c62d0f2df5bc8dd3aae443475278b0aa1ab9cbe27059a38fce9b82212477b87b1 DIST nvidia-persistenced-550.163.01.tar.bz2 61450 BLAKE2B 1a11cb89981b88f8d14558227d9493f1f8a81ccb5502002c436e9311a38c9c8fe0402c65eac1517a2893985eec07699b2e7bc7a81aa14dc0d52198ac85a2cd1b SHA512 f17dbcafa917b5b450f7665f98fd24f06ad99e6bcd1fcf42ef95aa9337b55561b7b16eaad8fa408110d08ee7e6d812444792cccbb9c92865099891832da779ce DIST nvidia-persistenced-555.58.02.tar.bz2 49877 BLAKE2B 8423f34ba517ecfbb782a648ca07f99f161cd153400bfa32e04ab98e8f72cea2afa60d11d2e05e1f31ce21ed33899cc6945fa56d6e313ed8af67aebf93467879 SHA512 16f7884a53007226206761e4d9fed8d672c6ca31ca59c70e8931bcd0d772d77f0b0078071505ab1bc198f713a94a12f132b7e3fee054f859db9ca6fe25404117 DIST nvidia-persistenced-560.35.03.tar.bz2 49873 BLAKE2B 5b19e8bef623d3950948fcf2a57c097e451c846e1d3013344ce8f10b91e57d3f031c460a9a9e4d94940ed3035d4d5836e5ff672d25f0f132ea915eeac62b94de SHA512 65c12503f8b457de704c58e7f066c1938645d88cc8b986a2fa993dcc5c60f45b72b22950df9419577c37e815e65b6e3749d4ce551457ac1bd868e24093074fbe @@ -71,12 +82,14 @@ DIST nvidia-persistenced-565.77.tar.bz2 49679 BLAKE2B 42cb002e207274b4e3100879d3 DIST nvidia-persistenced-570.211.01.tar.bz2 61779 BLAKE2B 02ac6f53eb4c053ca894f79b49d2a4b1b1f8e9f1a349053794542e72112bf0fab87aa2ee317d486758aaf77811c929d0aa8fbbcef9de8cc59836445ef845cb7d SHA512 5cb8feb56bf245e8e51e65d3d6d31f2b588e7b84ca29330e564d3c27ab37ceb67df0f80f8b37dfafb49a9fe8d7fef6b26d6334c6403902737298e8f3b23d1cb3 DIST nvidia-persistenced-575.64.05.tar.bz2 61961 BLAKE2B fa40aea873a30e7c500c2abe85a0ed7e278e4e1cceb2be9fe370752b3e44bccfd94e15e42df2f10237bc02015545b5b31ecdfbfd84b4f0400d56484a69ed96b8 SHA512 77a6fe5665bee6225433e383fe3016a667241e0772223d978ad42df40c8bc77207185c47961859ca9d334bebc7422d1a825ddf58e77d4caa630fcee1ecc5fa54 DIST nvidia-persistenced-580.142.tar.bz2 62217 BLAKE2B aacca7d951bba2a47c5e8daf816b304c122e89a8adb4a80c693883d619a263e99acd4013874cb843f1b9b5b02affd91dad32334c766f66cef51ad654e23e9fe2 SHA512 92266c22ff1e37c4a1f92b1ae27eff41a3db56a3568646e6e4662572b2aa61b8338df34b7864343a7557e5dab1380fc9b37ed1038730b35123d88e7bc7ce4117 +DIST nvidia-persistenced-580.159.03.tar.bz2 62211 BLAKE2B be8d6afa3cc3439ce1ff84b4f9100c81247e75572e15f12882f65763497628427b0ccc7b460b95b5c287d9b5170f1917989450277b5d33b1f221745806d4d3e4 SHA512 e81b6eeea182fea9b041d6e7e205332801926c810efd0c32cacbdb23a1d949ac127cb6646e9ac6119fde0a270a882ad3937b79fe0cf5e1cecb342d02e3ffd016 DIST nvidia-persistenced-590.48.01.tar.bz2 62193 BLAKE2B e6f03ce2f24f1ddc6b1dc9b7a8dd22de4541d5ec82f85c58943cf48f295e7f77555765b01edcce1c7f5ba67580c51273de8b8200d522c49e2321cffcfc8aeb6b SHA512 960f37355e58da20af92f0f0df091709623e32d9ef4eaba34d1f6b52f71227ac7c3a7f84aec64460952fa32986672f9373774ab1e65149ed426c59be47d7f2d8 -DIST nvidia-persistenced-595.45.04.tar.bz2 62427 BLAKE2B 9e637fd80a7ee75a7ec8f28d62aef2b3c544b00f53b37ddd218a2cbe74715e6880f7edf4662e5662a859ebad2690e901bee369c372c6aa761ef1c4b0704d45a8 SHA512 53816fceeaa47753ca4ae733dab276b9c808283a4fb91c9377c101e9a7b1ea87e8e48a9226f3f05dc6b8343325ea0f6581404f1919c752bf7f7c484a1ca8d820 DIST nvidia-persistenced-595.58.03.tar.bz2 62509 BLAKE2B 63dfc29600320bbad64ce5fc8318b2ecdb104c285188197c6d6bc57cf4d98ed786680cf9609697901f95fa5a7c9980d7fce4ce059b3f277ef04d345eb0d2c1a9 SHA512 82c57e578147a64dbc0a82e12c23103de8251d32703470522df6cba3f5f1ebbd4f465bf7ef7159ffb9f84f423b3b0e04052e3f7d48c67d4557e4c814c8e638e9 +DIST nvidia-persistenced-595.71.05.tar.bz2 62538 BLAKE2B ebf86357c81689d553d0f1f8a602932ec466781f81402a9bcfd1d4155de6ceaa795dec0ae0b9937b3e02ba2605cc11849bad36847df30aae673fbccb52bc2e3a SHA512 a3fa79468d7b3e8eccfab4f52a6e9240e3d65dec9454a10d350f45e5c27781922bc7ceffcbe6d40d9cf63694d84b4a7678c1f1268b72b821f08d22bbd05f7a78 DIST nvidia-settings-495.46.tar.bz2 1062670 BLAKE2B 0be63256dca858d3ecdf2f0e821299498db815af37abe2eec325453fcd24416e28db4f485f4255bce1d1667fdd91bfd9fcf39517312892be3496ebe25e098b8f SHA512 9ec633d571974dd3899a6cd32b40a0d6dd5987653c561554c58d125f9301a6e2ba4035002d782db7313ec043953a3782e97704c3b463940d5a1ae48618b98904 DIST nvidia-settings-525.147.05.tar.bz2 1088088 BLAKE2B cea74a20ed8208f99cb586bd40fe2cafeec55ca2db19b2c0691d3bcabadc09941ff8288e940582e63f10d8f6cd7e8813e1c5776bf65cdc7b6ee291a8b3a7e28f SHA512 9c29a477b32db3f4324d7c6d28b8da9f3de5286e39f8c67bae88a93c3d3ee0c3f0a0f3e0c29c1fa8ba01b7311623569df27e349d6148ed70b3fd42ebd36f0dcd DIST nvidia-settings-535.288.01.tar.bz2 1094513 BLAKE2B 8b7112b44bbe3445b63ddc245edbdb717436432482e9f87398863ffd08c520b6ac3527d3d47a75cc7e0ddec3931302e3029ccd7050db1abcc317ebf697284e01 SHA512 f1a817d9463a928fe47fed14da5d1bc0b9cbe0a910cbf01fca0d4edbee0effa989ec1cbf34e0aba6cc8516cf7bdadbc60ee6f0e4178e3c6cfb78301a1ef5aa8b +DIST nvidia-settings-535.309.01.tar.bz2 1094768 BLAKE2B 6a951e7e8e1ccd968a0727d2c8aa5008044d789dac5002f148930ba7ceb07cd3caa59f265c818392a7fd996bf0418729be349bbc1ea0b8870b1a38f5fa9470f1 SHA512 d0d62c3abffe52ad65585f6e88b894efa07cfb9918d2cb628b771d4d8a40149d9097ad7cb66b01a9bc0b4067e63540f2bd67412fe52105348bcca60955f228c8 DIST nvidia-settings-550.163.01.tar.bz2 1099317 BLAKE2B 25419c1796deeea238b3e44fd8d648a8627272565be40cb0745132cef1c16e0c422242a1e6369745d577e674a68bf9dfc3c009e281a84ba58db5429d97ac9cff SHA512 5306ab05f284ba06852d7c96ff62ded7b8b615d3a002009cd5d781fdad716db37f53d1c8a43337ada60d524b4f7d183d98ad2673f40a5ca1ca4c5112bb913e74 DIST nvidia-settings-555.58.02.tar.bz2 1100319 BLAKE2B eca06045a50d7d5963fa4f1fe9c9e4e1e693be392b42ccc069893443734a1725046803c8bd0ea06ff9b256f26b99184196a805c602710ead599e9cdb8ab1a223 SHA512 b86c4192f2b6cc5fae57bfe627b6ada0a9c936e90cd898baa448140627c7e9cdf3368021da2a94ec699ac1f5a08bb462766a573a028f81194361b9c642a1253c DIST nvidia-settings-560.35.03.tar.bz2 1115724 BLAKE2B 937a3ea634e9bbc4b76f6c50fd20108c783a941e021a3fe1a9fd3288248fe14069f4e7b147cb3666e1d6bab91be2c0305daaeee57d338b9af546cefc79725be1 SHA512 7ed656ebe35ce55a0064dae57fdcc5c3eecc3c6db71bfc66f001dd60c4db764c6a2565af29f84ca1246280fbd573d8da4d09e21444b71210cedea5d1462b85f0 @@ -84,12 +97,14 @@ DIST nvidia-settings-565.77.tar.bz2 1119070 BLAKE2B 74f3a0a68a9bf10d7a8cd96a5db9 DIST nvidia-settings-570.211.01.tar.bz2 1123957 BLAKE2B 7355319d29f96aeeada3cd1ffd08b053fa76a5f2f0dd35fac383ff5c1ffd4abba95d0a7f0f421fc4b74a11f2c94352c9e2db363034e5361a0d18017a321261f2 SHA512 8f29c02597eedd934531e703c617aaa7504effe836257de07c664145e07690b0b34b8c893c01e9e561bf90cb3c15b1b6c116e2a7a88ea1a733f2872490c10441 DIST nvidia-settings-575.64.05.tar.bz2 1127714 BLAKE2B 935649b61361ff9b05f34ba9770704eb945134199edbb17d2581f74188f8b122009b6d4309b225c375fcb80f26fb6a82c9528bf22e5658c5856d1752bee309bb SHA512 3e3df016f1f6b34a802d872c67a9f1c0db6d38c8265343eb607c71c59bf5597c7378800641b1152af404ebc0515f8f79eff1ee0e81b87b84ff7a237c176526f6 DIST nvidia-settings-580.142.tar.bz2 1132719 BLAKE2B 1ec635ad85070570c544a8fa8df6e28625132bbeb09864e6ec30871b38f99f26dc35068aef33f2a2d9a2ed4584c9e54ab54aa2843a77474a21ceba127f54386e SHA512 23b9a3b67f4fe1c697b6093facf26ad25cca38022620725e3f0104ec184ee2cdae9fe7b2b258564335328937dc97b635055345a095c263ff090431f58f4e9ce7 +DIST nvidia-settings-580.159.03.tar.bz2 1133196 BLAKE2B c36b3e8333eb325b74152a6fbb3f5e5d001b306ea1c6cf9ed9b8c61479f4d0d72b8fca4b7372cef1b66f06b94e7d20e5b69da61a2e0b16f918df504607a3e7dd SHA512 e50ff8850e4405ea7ad8f5725b4787b3c6166b90585b098270e277c45625f4540ae7ef00a460f1eb6da694fbfdd29fb9ec9ad82c797931106db5dfee40a3edd0 DIST nvidia-settings-590.48.01.tar.bz2 1134292 BLAKE2B 901a3bad03d4eaca3f78afc154539f72aa882ae19052b43b6bfb267a3be1ded4af607fbc05d1a379a8038a22fa5a9c19dd6c393f3436cda97cc7049820f1ec57 SHA512 c82737dc8894a35b7e87afd99fb98c0a4093ec8fd48590cc8e09154d55f948ceaf48fff31c7d015adcceab31a00c5ec4334fe1e90aec94c4bb076118b789dd4c -DIST nvidia-settings-595.45.04.tar.bz2 1135962 BLAKE2B 4df308484ffc82b81acc7f19af778f8b2fb98efec7750a1293f57cf894589589a2bbd5791bb042fe9618674c4e112033ddf199b7915d3a229f222f56078c0a5d SHA512 aaab0cfa803e635adb855fdf7874d8b0da90fe8e5d192a99d24e0f810dba3afd13b476427c1ef171daf03feb82a35c0d215f0c2d205d90ab4716cd66461eaec2 DIST nvidia-settings-595.58.03.tar.bz2 1136072 BLAKE2B 6472b9ec09dedc5c31d06f532af184406fd2e8219d97a00a10759ecd5ccbb8771968ad7af95b04f1dd56d0c61d7c88c718d5e794386068db7a60f59d4cced61a SHA512 4a882d44644de4df15f798a90f5779348d251aebecceb46ecff567186e2057e9032eab8f5a9311aa80e75af44cfbd81c5d1edbfbc5207d2564480bbd27e92506 +DIST nvidia-settings-595.71.05.tar.bz2 1136100 BLAKE2B 8b0af1e7a81b63042c762794c2f8f3094b40c4a9fc845dae9c39b63c02c613ce6893cb2451806ba775df8128b498259435ad49dd4ea27dafccf0c6c7bfcfda6c SHA512 8f7286863e1306cb50860f83aca046bf4743d3c8c72ddb9e6461e240bb741aa7c03e795081d821808832923ba0e736a4676cf137c84adc8ea770c6d0a28d8dc5 DIST nvidia-xconfig-495.46.tar.bz2 108955 BLAKE2B 1edd231bc06b66030e56a78b233b72c49ff5f3dc355e13964427b61e95a33a70a16ee1535ae91fbb806079a595eb763d0b3cdfaee7a3498fe617a9596db8da0f SHA512 d467b3f699f9f8794d0d136653620c56ba7b5273f532b7398ee1b5d85edd2ecd6b0cf666b2fc4f375b2ecf08ed19d53097574aa691c967a22cb2c9d1f665fde6 DIST nvidia-xconfig-525.147.05.tar.bz2 110987 BLAKE2B 49116c8922b5c14eaa88b6230a824447609a885f7d97df28ed4f3b9a2e146a213f31f9f184aadd38c4c9f692f0a1476d0db0704b55947ce95cbbeebcb9a683da SHA512 4b7c02de6080924eee5ee9fe770e632404b380529e5ee40a8d0f259a5c96d6915e83c26113b3c65434ce461c959347b3651abc15de7c40def16c46bb3f6faeae DIST nvidia-xconfig-535.288.01.tar.bz2 110671 BLAKE2B 94f8f5c651df7d43de308938312b2c97e8a0292a2575914250e22dc62e139cba36be038453d6f1688e8ebb90883ce0806424eee7ca6fd3a5cee5e9884cfc8d60 SHA512 4368625df5eec5ec8296b9f561a8dc32fda958fd4ea37a4bc9da42303529d6366b41a028d2d9614ba0dcd029a3a5740c15e4fa1febec31da7df51b0b276a831c +DIST nvidia-xconfig-535.309.01.tar.bz2 111085 BLAKE2B 7a2f55989f93bbfecef0ae0c76113b42cc79c3fefce12f3becb2c3722978115b2408efefa63845ef2f9ef7563f9ce79c5a9cafcc3de4f70605f34aae44d485f5 SHA512 710f279b6e4ac143c39344c44cda5950777c613f193170a76fa948def5a13b5b9177b44651e3b46a2630e7f420a9189671042f76b88c14a31ba6f6dcd78fdb7d DIST nvidia-xconfig-550.163.01.tar.bz2 111149 BLAKE2B d19ef0427e3432798e674dc66447090e8fb8fcb549ebe27aaee19aa38294cf178e175a067b2da5313342c93ea2aebef35861d05cc4cc0ee2c3eae955b3ddbbb3 SHA512 35f95d85928c82bc5de8e462ca5e90a6d8fe03e5b5367b9cdaadddc1e956f0d26b6dc42e716ae7c88512afdfb98cc841fe9b22846f6d6acc578c5dba4d0a16e1 DIST nvidia-xconfig-555.58.02.tar.bz2 111182 BLAKE2B f51275158f02687e54e856f3f7e9f92b01c6c7aba423e5384cf3d4e692dc6d3fdc73ed0b25f26fb1206dc1219b6e0bffd54767e0f0f3b4b3a63875113d55236f SHA512 673bea01fe39687ba34e19b743c61898d2ed8f34710c3a1afc8f2e71e0903950f253408b0fcf0b6306a98ddc2438cacd92fafd1d1662136b18058017dfb783c4 DIST nvidia-xconfig-560.35.03.tar.bz2 111203 BLAKE2B 347d4f80b9a16da54fbd7116d0ceafbb15b3b6e78aa1640b8505674b9ffc32056197925b67506d2cbb5d130054944c13246a592d9021f0bb2410ee6e8216df4e SHA512 1a68729b8aa1d3518b43392d4f9af163e2a084c635c08343b25ce761f835801aad203778fd03564ba050ad949a9d2df84fba4c8a48bb1a7afea5e72eb364eb58 @@ -97,6 +112,7 @@ DIST nvidia-xconfig-565.77.tar.bz2 111235 BLAKE2B 75cc8a5ed9248f044159482940e6d4 DIST nvidia-xconfig-570.211.01.tar.bz2 111263 BLAKE2B 9d6e7e973156d91ce1a213a95aa31269d811024ebf358dfad42c0771cafc6c4f2d4257994d67e67ac637a1107527511d8f8219446e9a57560bab8ba7d4d2684c SHA512 8e8be1e95998fde590bdb5c0246764a426d623c8bf9e705e7bff649f1daebb86726cead4add570622e34aea9a38b697d31d11d7a2fc741dd91af2ccaaa024cd1 DIST nvidia-xconfig-575.64.05.tar.bz2 111165 BLAKE2B 87b272e12b63e6d4a393b76e4ec4c47d1433caee1e73ab50c3da8b1b3cb4ece0d0adad3e6496df4a81c0efd8aff67f8afa5de192df24cbe4ae7f8a4b86d674ac SHA512 00dfe0cbf0fb1131391a38b2d1bd95e52ac90b77cf19b76cb6cd6d0a3ef83c5020ff5dd8e08f8d424a7b32338e7752675e1f700392df7efd2d9b96bbc8072541 DIST nvidia-xconfig-580.142.tar.bz2 111478 BLAKE2B cb972f8bcc4c24998671fc50a6946825ee7e25b4175e9fdc6646e0b49946a0172607d8525cf7e5e4f9211aee93014867a9fcfa06e0dba81caab2aac24ff19f5c SHA512 1431131b9c74be5a46c56bdac2d92dcc9f12d7003fd9667565828a6e92f636e251d6d4b98c4e82d67754ba2be61b56f44c881dc3ce10eff00a6bc83930345ad7 +DIST nvidia-xconfig-580.159.03.tar.bz2 111535 BLAKE2B 5ae167c6aae8596e89f1b254ed8cc4c21d20ca4d1ac4d238c79d64458324d5910e9d66b29d8079d9eaa771b2cdc15af3685ac224cf9d1f69dd471838edff783c SHA512 2d34928a5b5f419090742a6592e8c07bbcfc05b037af125c0f20d1267b8685e5a0d4bd8a039192c158579c39c08ac2c49e362d170009db02ba11835f1d8268d1 DIST nvidia-xconfig-590.48.01.tar.bz2 110986 BLAKE2B 6ec7f5eee2ca4c4a96f0607ac94ec3d491137a0e8750a6ae4c46feddced61f7a8b1eb77aa333008a69ceab7ad071671b7449bb2ed9ba285359fd1cb991a9c9b2 SHA512 e85dbd9ba5e056fb6f8a4618df35fa1692d0037e50122a5659ebda043a9b380fdf72aaa56f82b64e5525c36f429ed9bbd7f0e319c608f7c50355d47ab3b24077 -DIST nvidia-xconfig-595.45.04.tar.bz2 111057 BLAKE2B 89cab70e2ed1aaf6af883966eed8597010497485ab6b019e8f237ab03c4a4a1bc37aab8ea24f67e96118f7315c21bf4b5056f97b188ce622b390919761e8b3d0 SHA512 85a64cf414f6a2ebf07466c7ecb9ca838810031f59c9fecfff3325fa4db0b37edeae7f6cf94a1127be074fe34af44e9ade06ea36d5c3764a0907d1706b49e8e4 DIST nvidia-xconfig-595.58.03.tar.bz2 111094 BLAKE2B 6d0e0d46f350740d0110502a80d6d1d92d241c50658316a7b3cd8ca9fdcff22597dae85ec4ad2a8a34d12c068fd04f215c48a5df7007b0a274d7407f733d4f39 SHA512 0d5fb644cb1aeb2c9a47d6aaa53915880a3254b79c7054fa18bf58d6041fe9ef1d9afab8f22374bf87217ee3bf5ab2805a7a864446b82332d948523984752346 +DIST nvidia-xconfig-595.71.05.tar.bz2 111096 BLAKE2B 8b6f7e043319577f0b21780cc88ce189b99123ee079a4e5188e7c12d7d2859776f5d47efc1625ba70542df300ba88bf555e8d4638816322966d04c9a316b5a56 SHA512 bf705b1916633d8dfd4742d94358607901bc843f1280954391d9ee7be98da36f0f895811057b8666f59ab3b850bc6e5bb2bf80a88923827497cf0b5a852db6fa diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-535.309.01.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-535.309.01.ebuild new file mode 100644 index 000000000000..317818e83ee4 --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-535.309.01.ebuild @@ -0,0 +1,616 @@ +# Copyright 2023-2025 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +MODULES_OPTIONAL_IUSE=+modules +inherit desktop eapi9-pipestatus flag-o-matic linux-mod-r1 multilib +inherit readme.gentoo-r1 systemd toolchain-funcs unpacker user-info + +MODULES_KERNEL_MAX=6.13 +NV_URI="https://download.nvidia.com/XFree86/" + +DESCRIPTION="NVIDIA Accelerated Graphics Driver" +HOMEPAGE="https://www.nvidia.com/" +SRC_URI=" + amd64? ( ${NV_URI}Linux-x86_64/${PV}/NVIDIA-Linux-x86_64-${PV}.run ) + arm64? ( ${NV_URI}Linux-aarch64/${PV}/NVIDIA-Linux-aarch64-${PV}.run ) + $(printf "${NV_URI}%s/%s-${PV}.tar.bz2 " \ + nvidia-{installer,modprobe,persistenced,settings,xconfig}{,}) + ${NV_URI}NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-${PV}.tar.xz +" +# nvidia-installer is unused but here for GPL-2's "distribute sources" +S=${WORKDIR} + +LICENSE="NVIDIA-r2 Apache-2.0 BSD BSD-2 GPL-2 MIT ZLIB curl openssl" +SLOT="0/${PV%%.*}" +KEYWORDS="-* ~amd64 ~arm64" +IUSE="+X abi_x86_32 abi_x86_64 kernel-open libressl persistenced powerd +static-libs +tools wayland" +REQUIRED_USE="kernel-open? ( modules )" + +COMMON_DEPEND=" + acct-group/video + X? ( x11-libs/libpciaccess ) + persistenced? ( + acct-user/nvpd + net-libs/libtirpc:= + ) + tools? ( + >=app-accessibility/at-spi2-core-2.46:2 + dev-libs/glib:2 + dev-libs/jansson:= + media-libs/harfbuzz:= + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3[X] + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXxf86vm + x11-libs/pango + ) +" +RDEPEND=" + ${COMMON_DEPEND} + !libressl? ( dev-libs/openssl:0/3 ) + libressl? ( dev-libs/libressl ) + sys-libs/glibc + X? ( + media-libs/libglvnd[X,abi_x86_32(-)?] + x11-libs/libX11[abi_x86_32(-)?] + x11-libs/libXext[abi_x86_32(-)?] + ) + powerd? ( sys-apps/dbus[abi_x86_32(-)?] ) + wayland? ( + gui-libs/egl-gbm + >=gui-libs/egl-wayland-1.1.10 + media-libs/libglvnd + ) +" +DEPEND=" + ${COMMON_DEPEND} + static-libs? ( + x11-base/xorg-proto + x11-libs/libX11 + x11-libs/libXext + ) + tools? ( + media-libs/libglvnd + sys-apps/dbus + x11-base/xorg-proto + x11-libs/libXrandr + x11-libs/libXv + x11-libs/libvdpau + ) +" +BDEPEND=" + sys-devel/m4 + virtual/pkgconfig +" + +QA_PREBUILT="lib/firmware/* opt/bin/* usr/lib*" + +PATCHES=( + "${FILESDIR}"/nvidia-kernel-module-source-515.86.01-raw-ldflags.patch + "${FILESDIR}"/nvidia-modprobe-390.141-uvm-perms.patch + "${FILESDIR}"/nvidia-settings-390.144-raw-ldflags.patch + "${FILESDIR}"/nvidia-settings-530.30.02-desktop.patch +) + +pkg_setup() { + use modules && [[ ${MERGE_TYPE} != binary ]] || return + + local CONFIG_CHECK=" + PROC_FS + ~DRM_KMS_HELPER + ~SYSVIPC + ~!LOCKDEP + ~!PREEMPT_RT + ~!SLUB_DEBUG_ON + !DEBUG_MUTEXES + $(usev powerd '~CPU_FREQ') + " + + local ERROR_DRM_KMS_HELPER="CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection + of drivers (no custom config), and for wayland / nvidia-drm.modeset=1. + Cannot be directly selected in the kernel's menuconfig, and may need + selection of a DRM device even if unused, e.g. CONFIG_DRM_AMDGPU=m or + DRM_I915=y, DRM_NOUVEAU=m also acceptable if a module and not built-in." + + local ERROR_X86_KERNEL_IBT="CONFIG_X86_KERNEL_IBT: is set and, if the CPU supports the feature, + this *could* lead to modules load failure with ENDBR errors, or to + broken CUDA/NVENC. Please ignore if not having issues, but otherwise + try to unset or pass ibt=off to the kernel's command line." #911142 + use kernel-open || CONFIG_CHECK+=" ~!X86_KERNEL_IBT" + + use amd64 && kernel_is -ge 5 8 && CONFIG_CHECK+=" X86_PAT" #817764 + + use kernel-open && CONFIG_CHECK+=" MMU_NOTIFIER" #843827 + local ERROR_MMU_NOTIFIER="CONFIG_MMU_NOTIFIER: is not set but needed to build with USE=kernel-open. + Cannot be directly selected in the kernel's menuconfig, and may need + selection of another option that requires it such as CONFIG_KVM." + + local ERROR_PREEMPT_RT="CONFIG_PREEMPT_RT: is set but is unsupported by NVIDIA upstream and + will fail to build unless the env var IGNORE_PREEMPT_RT_PRESENCE=1 is + set. Please do not report issues if run into e.g. kernel panics while + ignoring this." + + linux-mod-r1_pkg_setup +} + +src_prepare() { + # make patches usable across versions + rm nvidia-modprobe && mv nvidia-modprobe{-${PV},} || die + rm nvidia-persistenced && mv nvidia-persistenced{-${PV},} || die + rm nvidia-settings && mv nvidia-settings{-${PV},} || die + rm nvidia-xconfig && mv nvidia-xconfig{-${PV},} || die + mv NVIDIA-kernel-module-source-${PV} kernel-module-source || die + + default + + # prevent detection of incomplete kernel DRM support (bug #603818) + sed 's/defined(CONFIG_DRM/defined(CONFIG_DRM_KMS_HELPER/g' \ + -i kernel{,-module-source/kernel-open}/conftest.sh || die + + # adjust service files + sed 's/__USER__/nvpd/' \ + nvidia-persistenced/init/systemd/nvidia-persistenced.service.template \ + > "${T}"/nvidia-persistenced.service || die + use !powerd || # file is missing on arm64 (masked) + sed -i "s|/usr|${EPREFIX}/opt|" systemd/system/nvidia-powerd.service || die + + # use alternative vulkan icd option if USE=-X (bug #909181) + use X || sed -i 's/"libGLX/"libEGL/' nvidia_{layers,icd}.json || die + + # enable nvidia-drm.modeset=1 by default with USE=wayland + cp "${FILESDIR}"/nvidia-470.conf "${T}"/nvidia.conf || die + use !wayland || sed -i '/^#.*modeset=1$/s/^#//' "${T}"/nvidia.conf || die + + # makefile attempts to install wayland library even if not built + use wayland || sed -i 's/ WAYLAND_LIB_install$//' \ + nvidia-settings/src/Makefile || die + + # temporary option, nvidia will remove in the future + use !kernel-open || + sed -i '/blacklist/a\ +\ +# Enable using kernel-open with workstation GPUs (experimental)\ +options nvidia NVreg_OpenRmEnableUnsupportedGpus=1' "${T}"/nvidia.conf || die +} + +src_compile() { + tc-export AR CC CXX LD OBJCOPY OBJDUMP PKG_CONFIG + local -x RAW_LDFLAGS="$(get_abi_LDFLAGS) $(raw-ldflags)" # raw-ldflags.patch + + local xnvflags=-fPIC #840389 + # lto static libraries tend to cause problems without fat objects + tc-is-lto && xnvflags+=" $(test-flags-CC -ffat-lto-objects)" + + NV_ARGS=( + PREFIX="${EPREFIX}"/usr + HOST_CC="$(tc-getBUILD_CC)" + HOST_LD="$(tc-getBUILD_LD)" + BUILD_GTK2LIB= + NV_USE_BUNDLED_LIBJANSSON=0 + NV_VERBOSE=1 DO_STRIP= MANPAGE_GZIP= OUTPUTDIR=out + WAYLAND_AVAILABLE=$(usex wayland 1 0) + XNVCTRL_CFLAGS="${xnvflags}" + ) + + if use modules; then + local o_cflags=${CFLAGS} o_cxxflags=${CXXFLAGS} o_ldflags=${LDFLAGS} + + # conftest.sh is broken with c23 due to func() changing meaning, + # and then fails later due to ealier misdetections + # TODO: try without now and then + drop modargs' CC= (bug #944092) + KERNEL_CC+=" -std=gnu17" + + local modlistargs=video:kernel + if use kernel-open; then + modlistargs+=-module-source:kernel-module-source/kernel-open + + # environment flags are normally unused for modules, but nvidia + # uses it for building the "blob" and it is a bit fragile + filter-flags -fno-plt #912949 + filter-lto + CC=${KERNEL_CC} CXX=${KERNEL_CXX} strip-unsupported-flags + fi + + local modlist=( nvidia{,-drm,-modeset,-peermem,-uvm}=${modlistargs} ) + local modargs=( + CC="${KERNEL_CC}" # needed for above gnu17 workaround + IGNORE_CC_MISMATCH=yes NV_VERBOSE=1 + SYSOUT="${KV_OUT_DIR}" SYSSRC="${KV_DIR}" + + # kernel takes "x86" and "x86_64" as meaning the same, but nvidia + # makes the distinction (since 550.135) and is not happy with "x86" + # TODO?: it should be ok/better for tc-arch-kernel to do x86_64 + $(usev amd64 ARCH=x86_64) + ) + + # temporary workaround for bug #914468 + CPP="${KERNEL_CC} -E" tc-is-clang && addpredict "${KV_OUT_DIR}" + + linux-mod-r1_src_compile + CFLAGS=${o_cflags} CXXFLAGS=${o_cxxflags} LDFLAGS=${o_ldflags} + fi + + emake "${NV_ARGS[@]}" -C nvidia-modprobe + use persistenced && emake "${NV_ARGS[@]}" -C nvidia-persistenced + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig + + if use tools; then + # avoid noisy *very* noisy logs with deprecation warnings + CFLAGS="-Wno-deprecated-declarations ${CFLAGS}" \ + emake "${NV_ARGS[@]}" -C nvidia-settings + elif use static-libs; then + # pretend GTK+3 is available, not actually used (bug #880879) + emake "${NV_ARGS[@]}" BUILD_GTK3LIB=1 \ + -C nvidia-settings/src out/libXNVCtrl.a + fi +} + +src_install() { + local libdir=$(get_libdir) libdir32=$(ABI=x86 get_libdir) + + NV_ARGS+=( DESTDIR="${D}" LIBDIR="${ED}"/usr/${libdir} ) + + local -A paths=( + [APPLICATION_PROFILE]=/usr/share/nvidia + [CUDA_ICD]=/etc/OpenCL/vendors + [EGL_EXTERNAL_PLATFORM_JSON]=/usr/share/egl/egl_external_platform.d + [FIRMWARE]=/lib/firmware/nvidia/${PV} + [GBM_BACKEND_LIB_SYMLINK]=/usr/${libdir}/gbm + [GLVND_EGL_ICD_JSON]=/usr/share/glvnd/egl_vendor.d + [OPENGL_DATA]=/usr/share/nvidia + [VULKAN_ICD_JSON]=/usr/share/vulkan + [WINE_LIB]=/usr/${libdir}/nvidia/wine + [XORG_OUTPUTCLASS_CONFIG]=/usr/share/X11/xorg.conf.d + + [GLX_MODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules/extensions + [GLX_MODULE_SYMLINK]=/usr/${libdir}/xorg/modules + [XMODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules + ) + + local skip_files=( + $(usev !X "libGLX_nvidia libglxserver_nvidia") + $(usev !wayland libnvidia-vulkan-producer) + libGLX_indirect # non-glvnd unused fallback + libnvidia-{gtk,wayland-client} nvidia-{settings,xconfig} # from source + libnvidia-egl-gbm 15_nvidia_gbm # gui-libs/egl-gbm + libnvidia-egl-wayland 10_nvidia_wayland # gui-libs/egl-wayland + libnvidia-pkcs11.so # using the openssl3 version instead + ) + local skip_modules=( + $(usev !X "nvfbc vdpau xdriver") + $(usev !modules gsp) + $(usev !powerd powerd) + installer nvpd # handled separately / built from source + ) + local skip_types=( + GLVND_LIB GLVND_SYMLINK EGL_CLIENT.\* GLX_CLIENT.\* # media-libs/libglvnd + OPENCL_WRAPPER.\* # virtual/opencl + DOCUMENTATION DOT_DESKTOP .\*_SRC DKMS_CONF SYSTEMD_UNIT # handled separately / unused + ) + + local DOCS=( + README.txt NVIDIA_Changelog supported-gpus/supported-gpus.json + nvidia-settings/doc/{FRAMELOCK,NV-CONTROL-API}.txt + ) + local HTML_DOCS=( html/. ) + einstalldocs + + local DISABLE_AUTOFORMATTING=yes + local DOC_CONTENTS="\ +Trusted users should be in the 'video' group to use NVIDIA devices. +You can add yourself by using: gpasswd -a my-user video\ +$(usev modules " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.")\ +$(use amd64 && usev !abi_x86_32 " + +Note that without USE=abi_x86_32 on ${PN}, 32bit applications +(typically using wine / steam) will not be able to use GPU acceleration.") + +For additional information or for troubleshooting issues, please see +https://wiki.gentoo.org/wiki/NVIDIA/nvidia-drivers and NVIDIA's own +documentation that is installed alongside this README." + readme.gentoo_create_doc + + if use modules; then + linux-mod-r1_src_install + + insinto /etc/modprobe.d + doins "${T}"/nvidia.conf + + # used for gpu verification with binpkgs (not kept, see pkg_preinst) + insinto /usr/share/nvidia + doins supported-gpus/supported-gpus.json + fi + + emake "${NV_ARGS[@]}" -C nvidia-modprobe install + fowners :video /usr/bin/nvidia-modprobe #505092 + fperms 4710 /usr/bin/nvidia-modprobe + + if use persistenced; then + emake "${NV_ARGS[@]}" -C nvidia-persistenced install + newconfd "${FILESDIR}"/nvidia-persistenced.confd nvidia-persistenced + newinitd "${FILESDIR}"/nvidia-persistenced.initd nvidia-persistenced + systemd_dounit "${T}"/nvidia-persistenced.service + fi + + if use tools; then + emake "${NV_ARGS[@]}" -C nvidia-settings install + + doicon nvidia-settings/doc/nvidia-settings.png + domenu nvidia-settings/doc/nvidia-settings.desktop + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + if use static-libs; then + dolib.a nvidia-settings/src/out/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins nvidia-settings/src/libXNVCtrl/NVCtrl{Lib,}.h + fi + + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig install + + # mimic nvidia-installer by reading .manifest to install files + # 0:file 1:perms 2:type 3+:subtype/arguments -:module + local m into + while IFS=' ' read -ra m; do + ! [[ ${#m[@]} -ge 2 && ${m[-1]} =~ MODULE: ]] || + [[ " ${m[0]##*/}" =~ ^(\ ${skip_files[*]/%/.*|\\} )$ ]] || + [[ " ${m[2]}" =~ ^(\ ${skip_types[*]/%/|\\} )$ ]] || + has ${m[-1]#MODULE:} "${skip_modules[@]}" && continue + + case ${m[2]} in + MANPAGE) + gzip -dc ${m[0]} | newman - ${m[0]%.gz} + pipestatus || die + continue + ;; + GBM_BACKEND_LIB_SYMLINK) m[4]=../${m[4]};; # missing ../ + VDPAU_SYMLINK) m[4]=vdpau/; m[5]=${m[5]#vdpau/};; # .so to vdpau/ + esac + + if [[ -v 'paths[${m[2]}]' ]]; then + into=${paths[${m[2]}]} + elif [[ ${m[2]} == EXPLICIT_PATH ]]; then + into=${m[3]} + elif [[ ${m[2]} == *_BINARY ]]; then + into=/opt/bin + elif [[ ${m[3]} == COMPAT32 ]]; then + use abi_x86_32 || continue + into=/usr/${libdir32} + elif [[ ${m[2]} == *_@(LIB|SYMLINK) ]]; then + into=/usr/${libdir} + else + die "No known installation path for ${m[0]}" + fi + [[ ${m[3]: -2} == ?/ ]] && into+=/${m[3]%/} + [[ ${m[4]: -2} == ?/ ]] && into+=/${m[4]%/} + + if [[ ${m[2]} =~ _SYMLINK$ ]]; then + [[ ${m[4]: -1} == / ]] && m[4]=${m[5]} + dosym ${m[4]} ${into}/${m[0]} + continue + fi + [[ ${m[0]} =~ ^libnvidia-ngx.so|^libnvidia-egl-gbm.so ]] && + dosym ${m[0]} ${into}/${m[0]%.so*}.so.1 # soname not in .manifest + + printf -v m[1] %o $((m[1] | 0200)) # 444->644 + insopts -m${m[1]} + insinto ${into} + doins ${m[0]} + done < .manifest || die + insopts -m0644 # reset + + # MODULE:installer non-skipped extras + : "$(systemd_get_sleepdir)" + exeinto "${_#"${EPREFIX}"}" + doexe systemd/system-sleep/nvidia + dobin systemd/nvidia-sleep.sh + systemd_dounit systemd/system/nvidia-{hibernate,resume,suspend}.service + + dobin nvidia-bug-report.sh + + # MODULE:powerd extras + if use powerd; then + newinitd "${FILESDIR}"/nvidia-powerd.initd nvidia-powerd #923117 + systemd_dounit systemd/system/nvidia-powerd.service + + insinto /usr/share/dbus-1/system.d + doins nvidia-dbus.conf + fi + + # enabling is needed for sleep to work properly and little reason not to do + # it unconditionally for a better user experience + : "$(systemd_get_systemunitdir)" + local unitdir=${_#"${EPREFIX}"} + # not using relative symlinks to match systemd's own links + dosym {"${unitdir}",/etc/systemd/system/systemd-hibernate.service.wants}/nvidia-hibernate.service + dosym {"${unitdir}",/etc/systemd/system/systemd-hibernate.service.wants}/nvidia-resume.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend.service.wants}/nvidia-suspend.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend.service.wants}/nvidia-resume.service + # also add a custom elogind hook to do the equivalent of the above + exeinto /usr/lib/elogind/system-sleep + newexe "${FILESDIR}"/system-sleep.elogind nvidia + # <elogind-255.5 used a different path (bug #939216), keep a compat symlink + # TODO: cleanup after 255.5 been stable for a few months + dosym {/usr/lib,/"${libdir}"}/elogind/system-sleep/nvidia + + # needed with >=systemd-256 or may fail to resume with some setups + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1072722 + insinto "${unitdir}"/systemd-homed.service.d + newins - 10-nvidia.conf <<-EOF + [Service] + Environment=SYSTEMD_HOME_LOCK_FREEZE_SESSION=false + EOF + insinto "${unitdir}"/systemd-suspend.service.d + newins - 10-nvidia.conf <<-EOF + [Service] + Environment=SYSTEMD_SLEEP_FREEZE_USER_SESSIONS=false + EOF + dosym -r "${unitdir}"/systemd-{suspend,hibernate}.service.d/10-nvidia.conf + dosym -r "${unitdir}"/systemd-{suspend,hybrid-sleep}.service.d/10-nvidia.conf + dosym -r "${unitdir}"/systemd-{suspend,suspend-then-hibernate}.service.d/10-nvidia.conf + + # symlink non-versioned so nvidia-settings can use it even if misdetected + dosym nvidia-application-profiles-${PV}-key-documentation \ + ${paths[APPLICATION_PROFILE]}/nvidia-application-profiles-key-documentation + + # don't attempt to strip firmware files (silences errors) + dostrip -x ${paths[FIRMWARE]} + + # sandbox issues with /dev/nvidiactl (and /dev/char wrt bug #904292) + # are widespread and sometime affect revdeps of packages built with + # USE=opencl/cuda making it hard to manage in ebuilds (minimal set, + # ebuilds should handle manually if need others or addwrite) + insinto /etc/sandbox.d + newins - 20nvidia <<<'SANDBOX_PREDICT="/dev/nvidiactl:/dev/char"' + + # dracut does not use /etc/modprobe.d if hostonly=no, but want to make sure + # our settings are used for bug 932781#c8 and nouveau blacklist if either + # modules are included (however, just best-effort without initramfs regen) + if use modules; then + echo "install_items+=\" ${EPREFIX}/etc/modprobe.d/nvidia.conf \"" >> \ + "${ED}"/usr/lib/dracut/dracut.conf.d/10-${PN}.conf || die + fi +} + +pkg_preinst() { + has_version "${CATEGORY}/${PN}[wayland]" && NV_HAD_WAYLAND= + + use modules || return + + # set video group id based on live system (bug #491414) + local g=$(egetent group video | cut -d: -f3) + [[ ${g} =~ ^[0-9]+$ ]] || die "Failed to determine video group id (got '${g}')" + sed -i "s/@VIDEOGID@/${g}/" "${ED}"/etc/modprobe.d/nvidia.conf || die + + # try to find driver mismatches using temporary supported-gpus.json + for g in $(grep -l 0x10de /sys/bus/pci/devices/*/vendor 2>/dev/null); do + g=$(grep -io "\"devid\":\"$(<${g%vendor}device)\"[^}]*branch\":\"[0-9]*" \ + "${ED}"/usr/share/nvidia/supported-gpus.json 2>/dev/null) + if [[ ${g} ]]; then + g=$((${g##*\"}+1)) + if ver_test -ge ${g}; then + NV_LEGACY_MASK=">=${CATEGORY}/${PN}-${g}" + break + fi + fi + done + rm "${ED}"/usr/share/nvidia/supported-gpus.json || die +} + +pkg_postinst() { + linux-mod-r1_pkg_postinst + + readme.gentoo_print_elog + + if [[ -r /proc/driver/nvidia/version && + $(</proc/driver/nvidia/version) != *" ${PV} "* ]]; then + ewarn "Currently loaded NVIDIA modules do not match the newly installed" + ewarn "libraries and may prevent launching GPU-accelerated applications." + if use modules; then + ewarn "Easiest way to fix this is normally to reboot. If still run into issues" + ewarn "(e.g. API mismatch messages in the \`dmesg\` output), please verify" + ewarn "that the running kernel is ${KV_FULL} and that (if used) the" + ewarn "initramfs does not include NVIDIA modules (or at least, not old ones)." + fi + fi + + if [[ $(</proc/cmdline) == *slub_debug=[!-]* ]]; then + ewarn "Detected that the current kernel command line is using 'slub_debug='," + ewarn "this may lead to system instability/freezes with this version of" + ewarn "${PN}. Bug: https://bugs.gentoo.org/796329" + fi + + if [[ -v NV_LEGACY_MASK ]]; then + ewarn + ewarn "***WARNING***" + ewarn + ewarn "You are installing a version of ${PN} known not to work" + ewarn "with a GPU of the current system. If unwanted, add the mask:" + if [[ -d ${EROOT}/etc/portage/package.mask ]]; then + ewarn " echo '${NV_LEGACY_MASK}' > ${EROOT}/etc/portage/package.mask/${PN}" + else + ewarn " echo '${NV_LEGACY_MASK}' >> ${EROOT}/etc/portage/package.mask" + fi + ewarn "...then downgrade to a legacy[1] branch if possible (not all old versions" + ewarn "are available or fully functional, may need to consider nouveau[2])." + ewarn "[1] https://www.nvidia.com/object/IO_32667.html" + ewarn "[2] https://wiki.gentoo.org/wiki/Nouveau" + fi + + if use kernel-open; then + ewarn + ewarn "Open source variant of ${PN} was selected, be warned it is experimental" + ewarn "and only for modern GPUs (e.g. GTX 1650+). Try to disable if run into issues." + ewarn "Please also see: ${EROOT}/usr/share/doc/${PF}/html/kernel_open.html" + fi + + if use wayland && use modules && [[ ! -v NV_HAD_WAYLAND ]]; then + elog + elog "With USE=wayland, this version of ${PN} sets nvidia-drm.modeset=1" + elog "in '${EROOT}/etc/modprobe.d/nvidia.conf'. This feature is considered" + elog "experimental but is required for wayland." + elog + elog "If you experience issues, either disable wayland or edit nvidia.conf." + elog "Of note, may possibly cause issues with SLI and Reverse PRIME." + fi + + # these can be removed after some time, only to help the transition + # given users are unlikely to do further custom solutions if it works + # (see also https://github.com/elogind/elogind/issues/272) + if grep -riq "^[^#]*HandleNvidiaSleep=yes" "${EROOT}"/etc/elogind/sleep.conf.d/ 2>/dev/null + then + ewarn + ewarn "!!! WARNING !!!" + ewarn "Detected HandleNvidiaSleep=yes in ${EROOT}/etc/elogind/sleep.conf.d/." + ewarn "This 'could' cause issues if used in combination with the new hook" + ewarn "installed by the ebuild to handle sleep using the official upstream" + ewarn "script. It is recommended to disable the option." + fi + if [[ $(realpath "${EROOT}"{/etc,{/usr,}/lib*}/elogind/system-sleep 2>/dev/null | \ + sort | uniq | xargs -d'\n' grep -Ril nvidia 2>/dev/null | wc -l) -gt 2 ]] + then + ewarn + ewarn "!!! WARNING !!!" + ewarn "Detected a custom script at ${EROOT}{/etc,{/usr,}/lib*}/elogind/system-sleep" + ewarn "referencing NVIDIA. This version of ${PN} has installed its own" + ewarn "hook at ${EROOT}/usr/lib/elogind/system-sleep/nvidia and it is recommended" + ewarn "to remove the custom one to avoid potential issues." + ewarn + ewarn "Feel free to ignore this warning if you know the other NVIDIA-related" + ewarn "scripts can be used together. The warning will be removed in the future." + fi + if [[ ${REPLACING_VERSIONS##* } ]] && + ver_test ${REPLACING_VERSIONS##* } -lt 535.183.01-r1 # may get repeated + then + elog + elog "For suspend/sleep, 'NVreg_PreserveVideoMemoryAllocations=1' is now default" + elog "with this version of ${PN}. This is recommended (or required) by" + elog "major DEs especially with wayland but, *if* experience regressions with" + elog "suspend, try reverting to =0 in '${EROOT}/etc/modprobe.d/nvidia.conf'." + elog + elog "May notably be an issue when using neither systemd nor elogind to suspend." + elog + elog "Also, the systemd suspend/hibernate/resume services are now enabled by" + elog "default, and for openrc+elogind a similar hook has been installed." + fi +} diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-595.45.04.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-580.159.03.ebuild index 668fdfaf5e2a..3d0be28a5b04 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-595.45.04.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-580.159.03.ebuild @@ -1,11 +1,11 @@ -# Copyright 2024-2025 Liguros Authors +# Copyright 2024-2026 Liguros Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 MODULES_OPTIONAL_IUSE=+modules inherit desktop eapi9-pipestatus eapi9-ver flag-o-matic linux-mod-r1 readme.gentoo-r1 systemd toolchain-funcs unpacker user-info -MODULES_KERNEL_MAX=6.17 +MODULES_KERNEL_MAX=6.18 NV_URI="https://download.nvidia.com/XFree86/" DESCRIPTION="NVIDIA Accelerated Graphics Driver" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-595.71.05.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-595.71.05.ebuild new file mode 100644 index 000000000000..2744efe555c9 --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-595.71.05.ebuild @@ -0,0 +1,605 @@ +# Copyright 2024-2026 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +MODULES_OPTIONAL_IUSE=+modules +inherit desktop eapi9-pipestatus eapi9-ver flag-o-matic linux-mod-r1 readme.gentoo-r1 systemd toolchain-funcs unpacker user-info + +MODULES_KERNEL_MAX=6.19 +NV_URI="https://download.nvidia.com/XFree86/" + +DESCRIPTION="NVIDIA Accelerated Graphics Driver" +HOMEPAGE="https://www.nvidia.com/" +SRC_URI=" + amd64? ( ${NV_URI}Linux-x86_64/${PV}/NVIDIA-Linux-x86_64-${PV}.run ) + arm64? ( ${NV_URI}Linux-aarch64/${PV}/NVIDIA-Linux-aarch64-${PV}.run ) + $(printf "${NV_URI}%s/%s-${PV}.tar.bz2 " \ + nvidia-{installer,modprobe,persistenced,settings,xconfig}{,}) + ${NV_URI}NVIDIA-kernel-module-source/NVIDIA-kernel-module-source-${PV}.tar.xz +" +# nvidia-installer is unused but here for GPL-2's "distribute sources" +S=${WORKDIR} + +LICENSE=" + NVIDIA-r2 Apache-2.0 Boost-1.0 BSD BSD-2 GPL-2 MIT ZLIB + curl openssl public-domain +" +SLOT="0/${PV%%.*}" +# unkeyworded due to being a beta, feel free to opt-in +#KEYWORDS="-* ~amd64 ~arm64" +# note: kernel-open is an upstream default in >=560 if all GPUs on the system +# support it but, since no automagic here, keeping it off for the wider support +IUSE="+X abi_x86_32 abi_x86_64 kernel-open libressl persistenced powerd +static-libs +tools wayland" +REQUIRED_USE="kernel-open? ( modules )" + +COMMON_DEPEND=" + acct-group/video + X? ( x11-libs/libpciaccess ) + persistenced? ( + acct-user/nvpd + net-libs/libtirpc:= + ) + tools? ( + >=app-accessibility/at-spi2-core-2.46:2 + dev-libs/glib:2 + dev-libs/jansson:= + media-libs/harfbuzz:= + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3[X] + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXxf86vm + x11-libs/pango + ) +" +RDEPEND=" + ${COMMON_DEPEND} + !libressl? ( dev-libs/openssl:0/3 ) + libressl? ( dev-libs/libressl ) + sys-libs/glibc + X? ( + media-libs/libglvnd[X,abi_x86_32(-)?] + x11-libs/libX11[abi_x86_32(-)?] + x11-libs/libXext[abi_x86_32(-)?] + ) + powerd? ( sys-apps/dbus[abi_x86_32(-)?] ) + wayland? ( + >=gui-libs/egl-gbm-1.1.1-r2[abi_x86_32(-)?] + >=gui-libs/egl-wayland-1.1.13.1[abi_x86_32(-)?] + X? ( gui-libs/egl-x11[abi_x86_32(-)?] ) + ) +" +DEPEND=" + ${COMMON_DEPEND} + static-libs? ( + x11-base/xorg-proto + x11-libs/libX11 + x11-libs/libXext + ) + tools? ( + dev-util/vulkan-headers + media-libs/libglvnd + sys-apps/dbus + x11-base/xorg-proto + x11-libs/libXrandr + x11-libs/libXv + x11-libs/libvdpau + ) +" +BDEPEND=" + app-alternatives/awk + sys-devel/m4 + virtual/pkgconfig +" + +# there is some non-prebuilt exceptions but rather not maintain a list +QA_PREBUILT="lib/firmware/* usr/bin/* usr/lib*" + +PATCHES=( + "${FILESDIR}"/nvidia-modprobe-390.141-uvm-perms.patch + "${FILESDIR}"/nvidia-settings-530.30.02-desktop.patch +) + +pkg_setup() { + use modules && [[ ${MERGE_TYPE} != binary ]] || return + + # do early before linux-mod-r1 so can use chkconfig to setup CONFIG_CHECK + get_version + require_configured_kernel + + local CONFIG_CHECK=" + PROC_FS + ~DRM_KMS_HELPER + ~DRM_FBDEV_EMULATION + ~SYSVIPC + ~!LOCKDEP + ~!PREEMPT_RT + ~!SLUB_DEBUG_ON + !DEBUG_MUTEXES + $(usev powerd '~CPU_FREQ') + " + + kernel_is -ge 6 11 && linux_chkconfig_present DRM_FBDEV_EMULATION && + CONFIG_CHECK+=" DRM_TTM_HELPER" + + use amd64 && kernel_is -ge 5 8 && CONFIG_CHECK+=" X86_PAT" #817764 + + use kernel-open && CONFIG_CHECK+=" MMU_NOTIFIER" #843827 + + local drm_helper_msg="Cannot be directly selected in the kernel's config menus, and may need + selection of a DRM device even if unused, e.g. CONFIG_DRM_QXL=m or + DRM_AMDGPU=m (among others, consult the kernel config's help), can + also use DRM_NOUVEAU=m as long as built as module *not* built-in." + local ERROR_DRM_KMS_HELPER="CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection + of drivers (no custom config), and for wayland / nvidia-drm.modeset=1. + ${drm_helper_msg}" + local ERROR_DRM_TTM_HELPER="CONFIG_DRM_TTM_HELPER: is not set but is needed to compile when using + kernel version 6.11.x or newer while DRM_FBDEV_EMULATION is set. + ${drm_helper_msg}" + local ERROR_DRM_FBDEV_EMULATION="CONFIG_DRM_FBDEV_EMULATION: is not set but is needed for + nvidia-drm.fbdev=1 support, currently off-by-default and it could + be ignored, but note that is due to change in the future." + local ERROR_MMU_NOTIFIER="CONFIG_MMU_NOTIFIER: is not set but needed to build with USE=kernel-open. + Cannot be directly selected in the kernel's menuconfig, and may need + selection of another option that requires it such as CONFIG_KVM." + local ERROR_PREEMPT_RT="CONFIG_PREEMPT_RT: is set but is unsupported by NVIDIA upstream and + will fail to build unless the env var IGNORE_PREEMPT_RT_PRESENCE=1 is + set. Please do not report issues if run into e.g. kernel panics while + ignoring this." + + linux-mod-r1_pkg_setup +} + +src_prepare() { + # make patches usable across versions + rm nvidia-modprobe && mv nvidia-modprobe{-${PV},} || die + rm nvidia-persistenced && mv nvidia-persistenced{-${PV},} || die + rm nvidia-settings && mv nvidia-settings{-${PV},} || die + rm nvidia-xconfig && mv nvidia-xconfig{-${PV},} || die + mv NVIDIA-kernel-module-source-${PV} kernel-module-source || die + + default + + # prevent detection of incomplete kernel DRM support (bug #603818) + sed 's/defined(CONFIG_DRM/defined(CONFIG_DRM_KMS_HELPER/g' \ + -i kernel{,-module-source/kernel-open}/conftest.sh || die + + sed 's/__USER__/nvpd/' \ + nvidia-persistenced/init/systemd/nvidia-persistenced.service.template \ + > "${T}"/nvidia-persistenced.service || die + + # use alternative vulkan icd option if USE=-X (bug #909181) + use X || sed -i 's/"libGLX/"libEGL/' nvidia_{layers,icd}.json || die + + # enable nvidia-drm.modeset=1 by default with USE=wayland + cp "${FILESDIR}"/nvidia-570.conf "${T}"/nvidia.conf || die + use !wayland || sed -i '/^#.*modeset=1$/s/^#//' "${T}"/nvidia.conf || die + + # makefile attempts to install wayland library even if not built + use wayland || sed -i 's/ WAYLAND_LIB_install$//' \ + nvidia-settings/src/Makefile || die +} + +src_compile() { + tc-export AR CC CXX LD OBJCOPY OBJDUMP PKG_CONFIG + + local xnvflags=-fPIC #840389 + # lto static libraries tend to cause problems without fat objects + tc-is-lto && xnvflags+=" $(test-flags-CC -ffat-lto-objects)" + + NV_ARGS=( + PREFIX="${EPREFIX}"/usr + HOST_CC="$(tc-getBUILD_CC)" + HOST_LD="$(tc-getBUILD_LD)" + BUILD_GTK2LIB= + NV_USE_BUNDLED_LIBJANSSON=0 + NV_VERBOSE=1 DO_STRIP= MANPAGE_GZIP= OUTPUTDIR=out + WAYLAND_AVAILABLE=$(usex wayland 1 0) + XNVCTRL_CFLAGS="${xnvflags}" + ) + + if use modules; then + local o_cflags=${CFLAGS} o_cxxflags=${CXXFLAGS} o_ldflags=${LDFLAGS} + + # conftest.sh is broken with c23 due to func() changing meaning, + # and then fails later due to ealier misdetections + # TODO: try without now and then + drop modargs' CC= (bug #944092) + KERNEL_CC+=" -std=gnu17" + + local modlistargs=video:kernel + if use kernel-open; then + modlistargs+=-module-source:kernel-module-source/kernel-open + + # environment flags are normally unused for modules, but nvidia + # uses it for building the "blob" and it is a bit fragile + filter-flags -fno-plt #912949 + filter-lto + CC=${KERNEL_CC} CXX=${KERNEL_CXX} strip-unsupported-flags + + LDFLAGS=$(raw-ldflags) + fi + + local modlist=( nvidia{,-drm,-modeset,-peermem,-uvm}=${modlistargs} ) + local modargs=( + CC="${KERNEL_CC}" # needed for above gnu17 workaround + IGNORE_CC_MISMATCH=yes NV_VERBOSE=1 + SYSOUT="${KV_OUT_DIR}" SYSSRC="${KV_DIR}" + + # kernel takes "x86" and "x86_64" as meaning the same, but nvidia + # makes the distinction (since 550.135) and is not happy with "x86" + # TODO?: it should be ok/better for tc-arch-kernel to do x86_64 + $(usev amd64 ARCH=x86_64) + ) + + # temporary workaround for bug #914468 + addpredict "${KV_OUT_DIR}" + + linux-mod-r1_src_compile + CFLAGS=${o_cflags} CXXFLAGS=${o_cxxflags} LDFLAGS=${o_ldflags} + fi + + emake "${NV_ARGS[@]}" -C nvidia-modprobe + use persistenced && emake "${NV_ARGS[@]}" -C nvidia-persistenced + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig + + if use tools; then + # avoid noisy *very* noisy logs with deprecation warnings + CFLAGS="-Wno-deprecated-declarations ${CFLAGS}" \ + emake "${NV_ARGS[@]}" -C nvidia-settings + elif use static-libs; then + # pretend GTK+3 is available, not actually used (bug #880879) + emake "${NV_ARGS[@]}" BUILD_GTK3LIB=1 \ + -C nvidia-settings/src out/libXNVCtrl.a + fi +} + +src_install() { + local libdir=$(get_libdir) libdir32=$(ABI=x86 get_libdir) + + NV_ARGS+=( DESTDIR="${D}" LIBDIR="${ED}"/usr/${libdir} ) + + local -A paths=( + [APPLICATION_PROFILE]=/usr/share/nvidia + [CUDA_ICD]=/etc/OpenCL/vendors + [EGL_EXTERNAL_PLATFORM_JSON]=/usr/share/egl/egl_external_platform.d + [FIRMWARE]=/lib/firmware/nvidia/${PV} + [GBM_BACKEND_LIB_SYMLINK]=/usr/${libdir}/gbm + [GLVND_EGL_ICD_JSON]=/usr/share/glvnd/egl_vendor.d + [OPENGL_DATA]=/usr/share/nvidia + [VULKANSC_ICD_JSON]=/usr/share/vulkansc + [VULKAN_ICD_JSON]=/usr/share/vulkan + [WINE_LIB]=/usr/${libdir}/nvidia/wine + [XORG_OUTPUTCLASS_CONFIG]=/usr/share/X11/xorg.conf.d + + [GLX_MODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules/extensions + [GLX_MODULE_SYMLINK]=/usr/${libdir}/xorg/modules + [XMODULE_SHARED_LIB]=/usr/${libdir}/xorg/modules + ) + + local skip_files=( + $(usev !X "libGLX_nvidia libglxserver_nvidia") + libGLX_indirect # non-glvnd unused fallback + libnvidia-{gtk,wayland-client} nvidia-{settings,xconfig} # from source + libnvidia-egl-gbm 15_nvidia_gbm # gui-libs/egl-gbm + libnvidia-egl-wayland 10_nvidia_wayland # gui-libs/egl-wayland + libnvidia-egl-xcb 20_nvidia_xcb.json # gui-libs/egl-x11 + libnvidia-egl-xlib 20_nvidia_xlib.json # gui-libs/egl-x11 + libnvidia-pkcs11.so # using the openssl3 version instead + ) + local skip_modules=( + $(usev !X "nvfbc vdpau xdriver") + $(usev !modules gsp) + $(usev !powerd nvtopps) + installer nvpd # handled separately / built from source + ) + local skip_types=( + GLVND_LIB GLVND_SYMLINK EGL_CLIENT.\* GLX_CLIENT.\* # media-libs/libglvnd + OPENCL_WRAPPER.\* # virtual/opencl + DOCUMENTATION DOT_DESKTOP .\*_SRC DKMS_CONF SYSTEMD_UNIT # handled separately / unused + ) + + local DOCS=( + README.txt NVIDIA_Changelog supported-gpus/supported-gpus.json + nvidia-settings/doc/{FRAMELOCK,NV-CONTROL-API}.txt + ) + local HTML_DOCS=( html/. ) + einstalldocs + + local DISABLE_AUTOFORMATTING=yes + local DOC_CONTENTS="\ +Trusted users should be in the 'video' group to use NVIDIA devices. +You can add yourself by using: gpasswd -a my-user video\ +$(usev modules " + +Like all out-of-tree kernel modules, it is necessary to rebuild +${PN} after upgrading or rebuilding the Linux kernel +by for example running \`emerge @module-rebuild\`. Alternatively, +if using a distribution kernel (sys-kernel/gentoo-kernel{,-bin}), +this can be automated by setting USE=dist-kernel globally. + +Loaded kernel modules also must not mismatch with the installed +${PN} version (excluding -r revision), meaning should +ensure \`eselect kernel list\` points to the kernel that will be +booted before building and preferably reboot after upgrading +${PN} (the ebuild will emit a warning if mismatching). + +See '${EPREFIX}/etc/modprobe.d/nvidia.conf' for modules options.")\ +$(use amd64 && usev !abi_x86_32 " + +Note that without USE=abi_x86_32 on ${PN}, 32bit applications +(typically using wine / steam) will not be able to use GPU acceleration.") + +Be warned that USE=kernel-open may need to be either enabled or +disabled for certain cards to function: +- GTX 50xx (blackwell) and higher are known to require it to be enabled +- GTX 1650 and higher (pre-blackwell) should work either way +- Older cards require it to be disabled + +For additional information or for troubleshooting issues, please see +https://wiki.gentoo.org/wiki/NVIDIA/nvidia-drivers and NVIDIA's own +documentation that is installed alongside this README." + readme.gentoo_create_doc + + if use modules; then + linux-mod-r1_src_install + + insinto /etc/modprobe.d + doins "${T}"/nvidia.conf + + # used for gpu verification with binpkgs (not kept, see pkg_preinst) + insinto /usr/share/nvidia + doins supported-gpus/supported-gpus.json + fi + + emake "${NV_ARGS[@]}" -C nvidia-modprobe install + fowners :video /usr/bin/nvidia-modprobe #505092 + fperms 4710 /usr/bin/nvidia-modprobe + + if use persistenced; then + emake "${NV_ARGS[@]}" -C nvidia-persistenced install + newconfd "${FILESDIR}"/nvidia-persistenced.confd nvidia-persistenced + newinitd "${FILESDIR}"/nvidia-persistenced.initd nvidia-persistenced + systemd_dounit "${T}"/nvidia-persistenced.service + fi + + if use tools; then + emake "${NV_ARGS[@]}" -C nvidia-settings install + + doicon nvidia-settings/doc/nvidia-settings.png + domenu nvidia-settings/doc/nvidia-settings.desktop + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + if use static-libs; then + dolib.a nvidia-settings/src/out/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins nvidia-settings/src/libXNVCtrl/NVCtrl{Lib,}.h + fi + + use X && emake "${NV_ARGS[@]}" -C nvidia-xconfig install + + # mimic nvidia-installer by reading .manifest to install files + # 0:file 1:perms 2:type 3+:subtype/arguments -:module + local m into + while IFS=' ' read -ra m; do + ! [[ ${#m[@]} -ge 2 && ${m[-1]} =~ MODULE: ]] || + [[ " ${m[0]##*/}" =~ ^(\ ${skip_files[*]/%/.*|\\} )$ ]] || + [[ " ${m[2]}" =~ ^(\ ${skip_types[*]/%/|\\} )$ ]] || + has ${m[-1]#MODULE:} "${skip_modules[@]}" && continue + + case ${m[2]} in + MANPAGE) + gzip -dc ${m[0]} | newman - ${m[0]%.gz} + pipestatus || die + continue + ;; + GBM_BACKEND_LIB_SYMLINK) m[4]=../${m[4]};; # missing ../ + VDPAU_SYMLINK) m[4]=vdpau/; m[5]=${m[5]#vdpau/};; # .so to vdpau/ + esac + + if [[ -v 'paths[${m[2]}]' ]]; then + into=${paths[${m[2]}]} + elif [[ ${m[2]} == EXPLICIT_PATH ]]; then + into=${m[3]} + elif [[ ${m[2]} == *_BINARY ]]; then + into=/usr/bin + elif [[ ${m[3]} == COMPAT32 ]]; then + use abi_x86_32 || continue + into=/usr/${libdir32} + elif [[ ${m[2]} == *_@(LIB|SYMLINK) ]]; then + into=/usr/${libdir} + else + die "No known installation path for ${m[0]}" + fi + [[ ${m[3]: -2} == ?/ ]] && into+=/${m[3]%/} + [[ ${m[4]: -2} == ?/ ]] && into+=/${m[4]%/} + + if [[ ${m[2]} =~ _SYMLINK$ ]]; then + [[ ${m[4]: -1} == / ]] && m[4]=${m[5]} + dosym ${m[4]} ${into}/${m[0]} + continue + fi + # avoid portage warning due to missing soname links in manifest + [[ ${m[0]} =~ ^libnvidia-ngx.so ]] && + dosym ${m[0]} ${into}/${m[0]%.so*}.so.1 + + printf -v m[1] %o $((m[1] | 0200)) # 444->644 + insopts -m${m[1]} + insinto ${into} + doins ${m[0]} + done < .manifest || die + insopts -m0644 # reset + + # MODULE:installer non-skipped extras + : "$(systemd_get_sleepdir)" + exeinto "${_#"${EPREFIX}"}" + doexe systemd/system-sleep/nvidia + dobin systemd/nvidia-sleep.sh + systemd_dounit systemd/system/nvidia-{hibernate,resume,suspend,suspend-then-hibernate}.service + + dobin nvidia-bug-report.sh + + insinto /usr/share/nvidia/files.d + doins sandboxutils-filelist.json + + # MODULE:powerd extras + if use powerd; then + newinitd "${FILESDIR}"/nvidia-powerd.initd nvidia-powerd #923117 + systemd_dounit systemd/system/nvidia-powerd.service + + insinto /usr/share/dbus-1/system.d + doins nvidia-dbus.conf + fi + + # enabling is needed for sleep to work properly and little reason not to do + # it unconditionally for a better user experience + : "$(systemd_get_systemunitdir)" + local unitdir=${_#"${EPREFIX}"} + # not using relative symlinks to match systemd's own links + dosym {"${unitdir}",/etc/systemd/system/systemd-hibernate.service.wants}/nvidia-hibernate.service + dosym {"${unitdir}",/etc/systemd/system/systemd-hibernate.service.wants}/nvidia-resume.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend.service.wants}/nvidia-suspend.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend.service.wants}/nvidia-resume.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend-then-hibernate.service.wants}/nvidia-suspend-then-hibernate.service + dosym {"${unitdir}",/etc/systemd/system/systemd-suspend-then-hibernate.service.wants}/nvidia-resume.service + # also add a custom elogind hook to do the equivalent of the above + exeinto /usr/lib/elogind/system-sleep + newexe "${FILESDIR}"/system-sleep.elogind nvidia + # <elogind-255.5 used a different path (bug #939216), keep a compat symlink + # TODO: cleanup after 255.5 been stable for a few months + dosym {/usr/lib,/"${libdir}"}/elogind/system-sleep/nvidia + + # needed with >=systemd-256 or may fail to resume with some setups + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1072722 + insinto "${unitdir}"/systemd-homed.service.d + newins - 10-nvidia.conf <<-EOF + [Service] + Environment=SYSTEMD_HOME_LOCK_FREEZE_SESSION=false + EOF + insinto "${unitdir}"/systemd-suspend.service.d + newins - 10-nvidia.conf <<-EOF + [Service] + Environment=SYSTEMD_SLEEP_FREEZE_USER_SESSIONS=false + EOF + dosym -r "${unitdir}"/systemd-{suspend,hibernate}.service.d/10-nvidia.conf + dosym -r "${unitdir}"/systemd-{suspend,hybrid-sleep}.service.d/10-nvidia.conf + dosym -r "${unitdir}"/systemd-{suspend,suspend-then-hibernate}.service.d/10-nvidia.conf + + # symlink non-versioned so nvidia-settings can use it even if misdetected + dosym nvidia-application-profiles-${PV}-key-documentation \ + ${paths[APPLICATION_PROFILE]}/nvidia-application-profiles-key-documentation + + # don't attempt to strip firmware files (silences errors) + dostrip -x ${paths[FIRMWARE]} + + # sandbox issues with /dev/nvidiactl and others (bug #904292,#921578) + # are widespread and sometime affect revdeps of packages built with + # USE=opencl/cuda making it hard to manage in ebuilds (minimal set, + # ebuilds should handle manually if need others or addwrite) + insinto /etc/sandbox.d + newins - 20nvidia <<<'SANDBOX_PREDICT="/dev/nvidiactl:/dev/nvidia-caps:/dev/char"' + + # dracut does not use /etc/modprobe.d if hostonly=no, but want to make sure + # our settings are used for bug 932781#c8 and nouveau blacklist if either + # modules are included (however, just best-effort without initramfs regen) + if use modules; then + echo "install_items+=\" ${EPREFIX}/etc/modprobe.d/nvidia.conf \"" >> \ + "${ED}"/usr/lib/dracut/dracut.conf.d/10-${PN}.conf || die + fi +} + +pkg_preinst() { + has_version "${CATEGORY}/${PN}[kernel-open]" && NV_HAD_KERNEL_OPEN= + has_version "${CATEGORY}/${PN}[wayland]" && NV_HAD_WAYLAND= + + use modules || return + + # set video group id based on live system (bug #491414) + local g=$(egetent group video | cut -d: -f3) + [[ ${g} =~ ^[0-9]+$ ]] || die "Failed to determine video group id (got '${g}')" + sed -i "s/@VIDEOGID@/${g}/" "${ED}"/etc/modprobe.d/nvidia.conf || die + + # try to find driver mismatches using temporary supported-gpus.json + # TODO?: automatically check "kernelopen" bit for USE=kernel-open compat + for g in $(grep -l 0x10de /sys/bus/pci/devices/*/vendor 2>/dev/null); do + g=$(grep -io "\"devid\":\"$(<${g%vendor}device)\"[^}]*branch\":\"[0-9]*" \ + "${ED}"/usr/share/nvidia/supported-gpus.json 2>/dev/null) + if [[ ${g} ]]; then + g=$((${g##*\"}+1)) + if ver_test -ge ${g}; then + NV_LEGACY_MASK=">=${CATEGORY}/${PN}-${g}" + break + fi + fi + done + rm "${ED}"/usr/share/nvidia/supported-gpus.json || die +} + +pkg_postinst() { + linux-mod-r1_pkg_postinst + + readme.gentoo_print_elog + + if [[ -r /proc/driver/nvidia/version && + $(</proc/driver/nvidia/version) != *" ${PV} "* ]]; then + ewarn "Currently loaded NVIDIA modules do not match the newly installed" + ewarn "libraries and may prevent launching GPU-accelerated applications." + if use modules; then + ewarn "Easiest way to fix this is normally to reboot. If still run into issues" + ewarn "(e.g. API mismatch messages in the \`dmesg\` output), please verify" + ewarn "that the running kernel is ${KV_FULL} and that (if used) the" + ewarn "initramfs does not include NVIDIA modules (or at least, not old ones)." + fi + fi + + if [[ $(</proc/cmdline) == *slub_debug=[!-]* ]]; then + ewarn "Detected that the current kernel command line is using 'slub_debug='," + ewarn "this may lead to system instability/freezes with this version of" + ewarn "${PN}. Bug: https://bugs.gentoo.org/796329" + fi + + if [[ -v NV_LEGACY_MASK ]]; then + ewarn + ewarn "***WARNING***" + ewarn + ewarn "You are installing a version of ${PN} known not to work" + ewarn "with a GPU of the current system. If unwanted, add the mask:" + if [[ -d ${EROOT}/etc/portage/package.mask ]]; then + ewarn " echo '${NV_LEGACY_MASK}' > ${EROOT}/etc/portage/package.mask/${PN}" + else + ewarn " echo '${NV_LEGACY_MASK}' >> ${EROOT}/etc/portage/package.mask" + fi + ewarn "...then downgrade to a legacy[1] branch if possible (not all old versions" + ewarn "are available or fully functional, may need to consider nouveau[2])." + ewarn "[1] https://www.nvidia.com/object/IO_32667.html" + ewarn "[2] https://wiki.gentoo.org/wiki/Nouveau" + fi + + if use kernel-open && [[ ! -v NV_HAD_KERNEL_OPEN ]]; then + ewarn + ewarn "Open source variant of ${PN} was selected, note that it requires" + ewarn "Turing/Ampere+ GPUs (aka GTX 1650+). Try disabling if run into issues." + ewarn "Also see: ${EROOT}/usr/share/doc/${PF}/html/kernel_open.html" + fi + + if use wayland && use modules && [[ ! -v NV_HAD_WAYLAND ]]; then + elog + elog "With USE=wayland, this version of ${PN} sets nvidia-drm.modeset=1" + elog "in '${EROOT}/etc/modprobe.d/nvidia.conf'. This feature is considered" + elog "experimental but is required for wayland." + elog + elog "If you experience issues, either disable wayland or edit nvidia.conf." + elog "Of note, may possibly cause issues with SLI and Reverse PRIME." + fi + + if use !kernel-open && ver_replacing -lt 555; then + elog + elog "If using a Turing/Ampere+ GPU (aka GTX 1650+), note that >=nvidia-drivers-555" + elog "enables the use of the GSP firmware by default. *If* experience regressions," + elog "please see '${EROOT}/etc/modprobe.d/nvidia.conf' to optionally disable." + fi +} diff --git a/x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild b/x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild index e7b4919f7251..f4c111221ab0 100644 --- a/x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild +++ b/x11-libs/neXtaw/neXtaw-0.15.1-r5.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 @@ SRC_URI="https://siag.nu/pub/neXtaw/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86" RDEPEND=" x11-libs/libICE diff --git a/x11-misc/arandr/arandr-0.1.11.ebuild b/x11-misc/arandr/arandr-0.1.11.ebuild index 204d102fea75..a880f02a5261 100644 --- a/x11-misc/arandr/arandr-0.1.11.ebuild +++ b/x11-misc/arandr/arandr-0.1.11.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,7 @@ RDEPEND=" " BDEPEND="dev-python/docutils[${PYTHON_USEDEP}]" -PATCHES=( "${FILESDIR}/${PN}-0.1.10-manpages.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-0.1.10-manpages.patch" + "${FILESDIR}/${PN}-0.1.11-setuptools-81.patch" +) diff --git a/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch b/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch new file mode 100644 index 000000000000..2fc4047b8fcc --- /dev/null +++ b/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch @@ -0,0 +1,20 @@ +https://gitlab.com/arandr/arandr/-/work_items/58 +https://bugs.gentoo.org/969799#c10 + +--- a/setup.py ++++ b/setup.py +@@ -53,7 +53,13 @@ class NoOptionCommand(Command): + """Command that doesn't take any options""" + user_options = [] + +- def initialize_options(self): pass ++ def initialize_options(self): ++ try: ++ super().initialize_options() ++ except Exception: ++ pass ++ if not hasattr(self, "dry_run"): ++ self.dry_run = False + def finalize_options(self): pass + + class update_pot(NoOptionCommand): |
